HomeSort by relevance Sort by last modified time
    Searched full:stmts (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/clang/test/Index/
load-stmts.cpp 121 // CHECK: load-stmts.cpp:1:13: TypedefDecl=T:1:13 (Definition) Extent=[1:1 - 1:14]
122 // CHECK: load-stmts.cpp:2:8: StructDecl=X:2:8 (Definition) Extent=[2:1 - 2:23]
123 // CHECK: load-stmts.cpp:2:16: FieldDecl=a:2:16 (Definition) Extent=[2:12 - 2:17]
124 // CHECK: load-stmts.cpp:2:19: FieldDecl=b:2:19 (Definition) Extent=[2:12 - 2:20]
125 // CHECK: load-stmts.cpp:3:6: FunctionDecl=f:3:6 (Definition) Extent=[3:1 - 11:2]
126 // CHECK: load-stmts.cpp:3:12: ParmDecl=x:3:12 (Definition) Extent=[3:8 - 3:13]
127 // CHECK: load-stmts.cpp:4:10: VarDecl=y:4:10 (Definition) Extent=[4:8 - 4:15]
128 // CHECK: load-stmts.cpp:4:8: TypeRef=T:1:13 Extent=[4:8 - 4:9]
129 // CHECK: load-stmts.cpp:4:14: DeclRefExpr=x:3:12 Extent=[4:14 - 4:15]
130 // CHECK: load-stmts.cpp:4:19: VarDecl=z:4:19 (Definition) Extent=[4:17 - 4:24
    [all...]
  /external/clang/test/PCH/
stmts.c 2 // RUN: %clang_cc1 -include %S/stmts.h -fsyntax-only -emit-llvm -o - %s
5 // RUN: %clang_cc1 -emit-pch -o %t %S/stmts.h
types.h 24 // TYPE_VARIABLE_ARRAY in stmts.[ch]
stmts.h 1 // Header for PCH test stmts.c
types.c 40 // TYPE_VARIABLE_ARRAY in stmts.[ch]
  /external/clang/lib/Analysis/
BodyFarm.cpp 105 CompoundStmt *ASTMaker::makeCompound(ArrayRef<Stmt *> Stmts) {
106 return new (C) CompoundStmt(C, Stmts, SourceLocation(), SourceLocation());
214 Stmt *Stmts[2];
215 Stmts[0] = B;
216 Stmts[1] = CE;
217 CompoundStmt *CS = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2));
315 Stmt *Stmts[2];
316 Stmts[0] =
327 Stmts[1] = M.makeReturn(RetVal);
328 CompoundStmt *Body = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2))
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 75 llvm::errs() << " " << sum << " stmts/exprs total.\n";
255 CompoundStmt::CompoundStmt(ASTContext &C, ArrayRef<Stmt*> Stmts,
258 CompoundStmtBits.NumStmts = Stmts.size();
259 assert(CompoundStmtBits.NumStmts == Stmts.size() &&
262 if (Stmts.size() == 0) {
267 Body = new (C) Stmt*[Stmts.size()];
268 std::copy(Stmts.begin(), Stmts.end(), Body);
271 void CompoundStmt::setStmts(ASTContext &C, Stmt **Stmts, unsigned NumStmts) {
277 memcpy(Body, Stmts, sizeof(Stmt *) * NumStmts)
    [all...]
ParentMap.cpp 1 //===--- ParentMap.cpp - Mappings from Stmts to their Parents ---*- C++ -*-===//
  /external/clang/include/clang/AST/
ParentMap.h 1 //===--- ParentMap.h - Mappings from Stmts to their Parents -----*- C++ -*-===//
ASTTypeTraits.h 87 /// Note that we can store \c Decls and \c Stmts by pointer as they are
  /external/libpcap/
optimize.c 456 for (s = b->stmts; s; s = s->next) {
706 s = b->stmts;
1175 for (s = b->stmts; s != 0; s = s->next)
1197 for (s = b->stmts; s && s->next; s = s->next)
1238 for (s = b->stmts; s; s = s->next)
1268 if (b->stmts != 0) {
1269 b->stmts = 0;
    [all...]
gencode.h 232 struct slist *stmts; /* side effect stmts */ member in struct:block
gencode.c 674 b->stmts = s;
    [all...]
wlan_filtering.patch 368 + b0->stmts = s;
373 + b1->stmts = s;
  /external/valgrind/main/exp-sgcheck/
h_main.c 665 while (i < sbIn->stmts_used && sbIn->stmts[i]->tag != Ist_IMark) {
666 IRStmt* st = sbIn->stmts[i];
669 stmt( 'C', &pce, sbIn->stmts[i] );
673 /* Iterate over the remaining stmts to generate instrumentation. */
678 tl_assert(sbIn->stmts[i]->tag == Ist_IMark);
682 sg_instrument_IRStmt( sgenv, pce.sb, sbIn->stmts[i],
685 stmt( 'C', &pce, sbIn->stmts[i] );
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 155 const std::vector<Record*> Stmts
160 for (unsigned i = 0, e = Stmts.size(); i != e; ++i) {
161 Record *R = Stmts[i];
  /external/clang/include/clang/Analysis/Visitors/
CFGRecStmtDeclVisitor.h 1 //= CFGRecStmtDeclVisitor - Recursive visitor of CFG stmts/decls -*- C++ --*-=//
CFGStmtVisitor.h 1 //===--- CFGStmtVisitor.h - Visitor for Stmts in a CFG ----------*- C++ -*-===//
  /external/valgrind/main/VEX/priv/
ir_opt.c 501 if (in->stmts[i])
502 flatten_Stmt( out, in->stmts[i] );
595 IRStmt* st = bb->stmts[i];
624 bb->stmts[i] = IRStmt_WrTmp(st->Ist.WrTmp.tmp, valE);
854 st = bb->stmts[i];
920 bb->stmts[i] = IRStmt_NoOp();
    [all...]
guest_generic_bb_to_IR.c 259 checking translation (up to 3 extents, and 5 stmts required for
383 imark = irsb->stmts[first_stmt_idx];
393 ppIRStmt(irsb->stmts[i]);
408 { IRStmt* st = irsb->stmts[irsb->stmts_used-1];
678 irsb->stmts[selfcheck_idx + i * 5 + 0]
681 irsb->stmts[selfcheck_idx + i * 5 + 1]
684 irsb->stmts[selfcheck_idx + i * 5 + 2]
687 irsb->stmts[selfcheck_idx + i * 5 + 3]
729 irsb->stmts[selfcheck_idx + i * 5 + 4]
    [all...]
  /external/valgrind/main/drd/
drd_load_store.c 317 if (bb->stmts[i]
318 && bb->stmts[i]->tag == Ist_WrTmp
319 && bb->stmts[i]->Ist.WrTmp.tmp == addr_expr->Iex.RdTmp.tmp)
321 IRExpr* e = bb->stmts[i]->Ist.WrTmp.data;
602 IRStmt* const st = bb_in->stmts[i];
  /external/clang/lib/Parse/
ParseStmt.cpp 81 Parser::ParseStatementOrDeclaration(StmtVector &Stmts, bool OnlyStatement,
89 StmtResult Res = ParseStatementOrDeclarationAfterAttributes(Stmts,
102 Parser::ParseStatementOrDeclarationAfterAttributes(StmtVector &Stmts,
174 DeclGroupPtrTy Decl = ParseDeclaration(Stmts, Declarator::BlockContext,
576 if (TopLevelCase.isInvalid()) // No parsed case stmts.
774 StmtVector Stmts;
805 Stmts.push_back(R.release());
816 ParseMicrosoftIfExistsStatement(Stmts);
822 R = ParseStatementOrDeclaration(Stmts, false);
842 DeclGroupPtrTy Res = ParseDeclaration(Stmts,
    [all...]
Parser.cpp 689 StmtVector Stmts;
690 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
700 StmtVector Stmts;
701 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
712 StmtVector Stmts;
713 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
722 StmtVector Stmts;
723 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
    [all...]
  /external/llvm/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 46 // If there are no return stmts in the Function, a null pointer is returned.
  /external/valgrind/main/exp-bbv/
bbv_main.c 371 while ( (i < sbIn->stmts_used) && (sbIn->stmts[i]->tag!=Ist_IMark)) {
372 addStmtToIRSB( sbOut, sbIn->stmts[i] );
378 st = sbIn->stmts[i];
422 st=sbIn->stmts[i];

Completed in 1255 milliseconds

1 2 3 4 5