HomeSort by: relevance | last modified time | path
    Searched defs:Body (Results 1 - 25 of 69) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAsmMacro.cpp 46 OS << " (BEGIN BODY)" << Body << "(END BODY)\n";
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp 34 Stmt *Body;
41 : Body(nullptr), Pass(pass) { }
43 void transformBody(Stmt *body, Decl *ParentD) {
44 Body = body;
45 collectRemovables(body, Removables);
46 TraverseStmt(body);
TransRetainReleaseDealloc.cpp 36 Stmt *Body;
46 : Body(nullptr), Pass(pass) {
53 void transformBody(Stmt *body, Decl *ParentD) {
54 Body = body;
55 collectRemovables(body, Removables);
56 StmtMap.reset(new ParentMap(body));
57 TraverseStmt(body);
TransAutoreleasePool.cpp 72 : Body(nullptr), Pass(pass) {
78 void transformBody(Stmt *body, Decl *ParentD) {
79 Body = body;
80 TraverseStmt(body);
412 Stmt *Body;
TransUnbridgedCasts.cpp 64 Stmt *Body;
69 : Pass(pass), ParentD(nullptr), Body(nullptr) {
73 void transformBody(Stmt *body, Decl *ParentD) {
75 Body = body;
76 StmtMap.reset(new ParentMap(body));
77 TraverseStmt(body);
324 collectRemovables(Body, *Removables);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
MatrixUtils.cpp 30 BasicBlock *Body = BasicBlock::Create(Header->getContext(), Name + ".body",
36 BranchInst::Create(Body, Header);
37 BranchInst::Create(Latch, Body);
53 {DominatorTree::Insert, Header, Body},
54 {DominatorTree::Insert, Body, Latch},
61 L->addBasicBlockToLoop(Body, LI);
63 return Body;
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtOpenMP.cpp 92 for (Stmt *S : CS->body()) {
136 // Move on to the next nested for loop, or to the loop body.
160 Stmt *Body = nullptr;
162 Body = For->getBody();
166 Body = cast<CXXForRangeStmt>(Loop)->getBody();
168 if (auto *CanonLoop = dyn_cast<OMPCanonicalLoop>(Body))
169 Body = CanonLoop->getLoopStmt();
170 Callback(Cnt, Loop, Body);
179 Stmt *Body = nullptr;
183 [&Body](unsigned, Stmt *, Stmt *BodyStmt) { Body = BodyStmt; })
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DirectIvarAssignment.cpp 146 const Stmt *Body = M->getBody();
149 assert(Body);
153 MC.VisitStmt(Body);
  /src/sys/external/bsd/acpica/dist/compiler/
prmacros.c 282 char *Body;
335 /* This is the case for a NULL macro body */
365 /* Get the macro body. Token now points to start of body */
369 /* Match each method arg in the macro body for later use */
378 * Save argument offset within macro body. This is the mechanism
428 if (strcmp (DefineInfo->Body, BodyInSource) ||
439 "Macro body: %s\n",
447 Body = UtLocalCalloc (strlen (BodyInSource) + 1);
448 strcpy (Body, BodyInSource)
    [all...]
preprocess.h 98 char *Body; /* Macro body */
  /src/external/apache2/llvm/dist/clang/lib/Format/
MacroExpander.cpp 38 SmallVector<FormatToken *, 8> Body;
103 Def.Body.push_back(Current);
106 Def.Body.push_back(Current);
203 for (FormatToken *Tok : Def.Body) {
206 // Create a copy of the tokens from the macro body, i.e. were not provided
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
RefactoringCallbacks.cpp 129 const Stmt *Body = PickTrueBranch ? Node->getThen() : Node->getElse();
130 if (Body) {
132 Replace.add(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body));
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
KaleidoscopeJIT.h 43 std::unique_ptr<ExprAST> Body;
47 std::unique_ptr<ExprAST> Body)
48 : Proto(std::move(Proto)), Body(std::move(Body)) {}
144 errs() << "LazyCallThrough error: Could not find function body";
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtObjC.h 24 enum { ELEM, COLLECTION, BODY, END_EXPR };
29 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
38 Stmt *getBody() { return SubExprs[BODY]; }
44 const Stmt *getBody() const { return SubExprs[BODY]; }
50 void setBody(Stmt *S) { SubExprs[BODY] = S; }
59 return SubExprs[BODY]->getEndLoc();
80 Stmt *Body;
88 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
93 const Stmt *getCatchBody() const { return Body; }
94 Stmt *getCatchBody() { return Body; }
    [all...]
ExprConcepts.h 483 RequiresExprBodyDecl *Body;
495 RequiresExprBodyDecl *Body,
505 RequiresExprBodyDecl *Body, ArrayRef<ParmVarDecl *> LocalParameters,
516 RequiresExprBodyDecl *getBody() const { return Body; }
StmtCXX.h 136 enum { INIT, RANGE, BEGINSTMT, ENDSTMT, COND, INC, LOOPVAR, BODY, END };
148 Stmt *Body, SourceLocation FL, SourceLocation CAL,
169 Stmt *getBody() { return SubExprs[BODY]; }
189 const Stmt *getBody() const { return SubExprs[BODY]; }
199 void setBody(Stmt *S) { SubExprs[BODY] = S; }
208 return SubExprs[BODY]->getEndLoc();
314 /// Represents the body of a coroutine. This wraps the normal function
315 /// body and holds the additional semantic context required to set up and tear
321 Body, ///< The body of the coroutine
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCRuntime.cpp 121 const Stmt *Body;
173 Handler.Body = CatchStmt->getCatchBody();
216 // Emit the try body.
245 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
268 CGF.EmitStmt(Handler.Body);
349 // Emit the body of the statement.
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 149 std::unique_ptr<ExprAST> Body;
153 std::unique_ptr<ExprAST> Body)
154 : Proto(std::move(Proto)), Body(std::move(Body)) {}
  /src/external/apache2/llvm/dist/llvm/include/llvm/Passes/
StandardInstrumentations.h 290 return Body == That.Body;
293 return Body != That.Body;
299 StringRef getBody() const { return Body; }
303 std::string Body;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
AnalysisDeclContext.cpp 96 Stmt *Body = FD->getBody();
97 if (auto *CoroBody = dyn_cast_or_null<CoroutineBodyStmt>(Body))
98 Body = CoroBody->getBody();
102 Body = SynthesizedBody;
106 return Body;
109 Stmt *Body = MD->getBody();
113 Body = SynthesizedBody;
117 return Body;
139 Stmt *Body = getBody(Tmp);
140 return Tmp && Body->getBeginLoc().isValid()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexDecl.cpp 184 const Stmt *Body = D->getBody();
185 if (Body) {
186 IndexCtx.indexBody(Body, D, D);
291 const Stmt *Body = D->getBody();
292 if (Body) {
293 IndexCtx.indexBody(Body, D, D);
608 // NNS for the local 'using namespace' directives is visited by the body
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 391 // constructors don't even have a body written down in the code, so even if
636 const Stmt *Body = D->getBody();
637 SourceLocation SL = Body ? Body->getBeginLoc() : D->getLocation();
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 173 std::unique_ptr<ExprAST> Body;
177 std::unique_ptr<ExprAST> Body)
178 : Proto(std::move(Proto)), Body(std::move(Body)) {}
502 if (Value *RetVal = Body->codegen()) {
512 // Error reading body, remove function.
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 183 std::unique_ptr<ExprAST> Body;
187 std::unique_ptr<ExprAST> Body)
188 : Proto(std::move(Proto)), Body(std::move(Body)) {}
530 if (Value *RetVal = Body->codegen()) {
543 // Error reading body, remove function.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 90 /// Callback type for body (=inner region) code generation
98 /// \param CodeGenIP is the insertion point at which the body code should be
100 /// \param ContinuationBB is the basic block target to leave the body.
115 /// Callback type for loop body code generation.
117 /// \param CodeGenIP is the insertion point where the loop's body code must be
216 /// loop body.
221 /// \param BodyGenCB Callback that will generate the loop body code.
222 /// \param TripCount Number of iterations the loop body is executed.
237 /// bounds we use \p Start for the loop counter value in the first body
264 /// \param BodyGenCB Callback that will generate the loop body code
    [all...]

Completed in 129 milliseconds

1 2 3