HomeSort by: relevance | last modified time | path
    Searched refs:ReturnLoc (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86PadShortFunction.cpp 147 MachineBasicBlock::iterator ReturnLoc = --MBB->end();
149 while (ReturnLoc->isDebugInstr())
150 --ReturnLoc;
151 assert(ReturnLoc->isReturn() && !ReturnLoc->isCall() &&
154 addPadding(MBB, ReturnLoc, Threshold - Cycles);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 3594 Sema::ActOnCapScopeReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
3608 ActOnFinishFullExpr(RetValExp, ReturnLoc, /*DiscardedValue*/ false);
3613 return ReturnStmt::Create(Context, ReturnLoc, RetValExp,
3631 if (DeduceFunctionTypeFromReturnExpr(FD, ReturnLoc, RetValExp, AT)) {
3661 Diag(ReturnLoc, diag::err_lambda_return_init_list)
3677 Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr);
3681 Diag(ReturnLoc, diag::err_return_in_captured_stmt) << CurRegion->getRegionName();
3688 Diag(ReturnLoc, diag::err_noreturn_lambda_has_return_expr);
3707 Diag(ReturnLoc, diag::ext_return_has_void_expr) << "literal" << 2;
3709 Diag(ReturnLoc, diag::err_return_block_has_expr)
    [all...]
SemaChecking.cpp 10567 SourceLocation ReturnLoc,
10575 Diag(ReturnLoc, diag::warn_null_ret)
10590 Diag(ReturnLoc, diag::warn_operator_new_returns_null)
10598 CheckPPCMMAType(RetValExp->getType(), ReturnLoc);
TreeTransform.h 1408 StmtResult RebuildReturnStmt(SourceLocation ReturnLoc, Expr *Result) {
1409 return getSema().BuildReturnStmt(ReturnLoc, Result);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Initialization.h 300 static InitializedEntity InitializeResult(SourceLocation ReturnLoc,
302 return InitializedEntity(EK_Result, ReturnLoc, Type, NRVO);
305 static InitializedEntity InitializeStmtExprResult(SourceLocation ReturnLoc,
307 return InitializedEntity(EK_StmtExprResult, ReturnLoc, Type);
Sema.h 4766 StmtResult ActOnReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp,
4768 StmtResult BuildReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp);
4769 StmtResult ActOnCapScopeReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp);
8492 SourceLocation ReturnLoc,
12588 SourceLocation ReturnLoc,
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 2183 SourceLocation ReturnLoc = ConsumeToken(); // eat the 'return'.
2213 return Actions.ActOnCoreturnStmt(getCurScope(), ReturnLoc, R.get());
2214 return Actions.ActOnReturnStmt(ReturnLoc, R.get(), getCurScope());

Completed in 75 milliseconds