Searched refs:stmt (Results 51 - 75 of 121) sorted by relevance

12345

/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dactivity_database.cc178 void ActivityDatabase::DatabaseErrorCallback(int error, sql::Statement* stmt) { argument
/external/clang/include/clang/AST/
H A DMakefile42 $(Verb) $(ClangTableGen) -gen-clang-stmt-nodes -o $(call SYSPATH, $@) $<
/external/clang/unittests/ASTMatchers/Dynamic/
H A DVariantValueTest.cpp48 VariantValue Value = VariantMatcher::SingleMatcher(stmt());
/external/clang/include/clang/Analysis/
H A DAnalysisContext.h128 void registerForcedBlockExpression(const Stmt *stmt);
129 const CFGBlock *getBlockForRegisteredExpression(const Stmt *stmt);
H A DCFG.h196 CFGAutomaticObjDtor(const VarDecl *var, const Stmt *stmt) argument
197 : CFGImplicitDtor(AutomaticObjectDtor, var, stmt) {}
743 bool alwaysAdd(const Stmt *stmt) const {
744 return alwaysAddMask[stmt->getStmtClass()];
922 if (Optional<CFGStmt> stmt = BI->getAs<CFGStmt>())
923 O(const_cast<Stmt*>(stmt->getStmt()));
/external/chromium_org/content/browser/net/
H A Dsqlite_persistent_cookie_store.cc208 void DatabaseErrorCallback(int error, sql::Statement* stmt);
376 std::string stmt(base::StringPrintf(
392 if (!db->Execute(stmt.c_str()))
850 std::string stmt(base::StringPrintf(
853 if (!db_->Execute(stmt.c_str())) {
1142 sql::Statement* stmt) {
1140 DatabaseErrorCallback( int error, sql::Statement* stmt) argument
/external/valgrind/main/VEX/priv/
H A Dguest_amd64_toIR.c232 static void stmt ( IRStmt* st ) function
240 stmt( IRStmt_WrTmp(dst, e) );
299 stmt( IRStmt_Store(Iend_LE, addr, data) );
989 stmt( IRStmt_Put( OFFB_RAX+1, e ) );
1025 stmt( IRStmt_Put( OFFB_RAX, e ));
1028 stmt( IRStmt_Put( OFFB_RAX, unop(Iop_32Uto64,e) ));
1031 stmt( IRStmt_Put( OFFB_RAX, e ));
1034 stmt( IRStmt_Put( OFFB_RAX, e ));
1072 case 8: stmt( IRStmt_Put( OFFB_RDX, e ));
1074 case 4: stmt( IRStmt_Pu
[all...]
H A Dguest_mips_toIR.c906 static void stmt(IRStmt * st) function
913 stmt(IRStmt_WrTmp(dst, e));
919 stmt(IRStmt_Store(Iend_LE, addr, data));
921 stmt(IRStmt_Store(Iend_BE, addr, data));
1001 stmt( IRStmt_Put( OFFB_PC, mkU32(d32) ) );
1012 stmt(IRStmt_Put(OFFB_PC, mkU64(d64)));
1040 stmt(IRStmt_Put(offsetof(VexGuestMIPS32State, guest_DSPControl), e));
1101 stmt(IRStmt_Put(offsetof(VexGuestMIPS64State, guest_FCSR), e));
1103 stmt(IRStmt_Put(offsetof(VexGuestMIPS32State, guest_FCSR), e));
1188 stmt(IRStmt_Dirt
[all...]
H A Dguest_arm64_toIR.c303 static void stmt ( IRStmt* st ) function
310 stmt( IRStmt_WrTmp(dst, e) );
315 stmt( IRStmt_Store(Iend_LE, addr, data) );
324 //ZZ stmt( IRStmt_StoreG(Iend_LE, addr, data,
356 //ZZ stmt( IRStmt_LoadG(Iend_LE, cvt, dst, addr, alt,
788 stmt( IRStmt_Put(offsetIReg64orSP(iregNo), e) );
798 stmt( IRStmt_Put(offsetIReg64orSP(iregNo), e) );
841 stmt( IRStmt_Put(offsetIReg64orSP(iregNo), unop(Iop_32Uto64, e)) );
851 stmt( IRStmt_Put(offsetIReg64orSP(iregNo), unop(Iop_32Uto64, e)) );
881 stmt( IRStmt_Pu
[all...]
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp722 stmt(hasDescendant(builtinType()))));
725 stmt(hasDescendant(loc(builtinType())))));
727 stmt(hasDescendant(qualType(builtinType())))));
730 stmt(hasDescendant(isInteger()))));
2975 EXPECT_TRUE(notMatches("class X {};", stmt()));
2979 EXPECT_TRUE(matches("void x() {}", stmt()));
3310 ifStmt(stmt().bind("x"), hasAncestor(recordDecl(hasName("::A")))),
3655 stmt().bind("node"), new HasDuplicateParents()));
4178 "if", stmt(hasDescendant(forStmt().bind("for"))), "for")));
4182 "if", stmt(hasDescendan
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp64 const Stmt *stmt) const;
348 bool alwaysAdd(const Stmt *stmt);
846 const Stmt *stmt) const {
847 return builder.alwaysAdd(stmt) || kind == AlwaysAdd;
850 bool CFGBuilder::alwaysAdd(const Stmt *stmt) { argument
851 bool shouldAdd = BuildOpts.alwaysAdd(stmt);
856 if (lastLookup == stmt) {
858 assert(cachedEntry->first == stmt);
864 lastLookup = stmt;
875 CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt);
3824 const Stmt *stmt= SE->getStmt(); local
[all...]
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc383 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt, argument
401 RecordBackEdge(stmt->OsrEntryId());
406 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
410 PrepareForBailoutForId(stmt->OsrEntryId(), NO_REGISTERS);
1009 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { argument
1011 Breakable nested_statement(this, stmt);
1012 SetStatementPosition(stmt);
1015 VisitForStackValue(stmt->tag());
1016 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
1018 ZoneList<CaseClause*>* clauses = stmt
1103 VisitForInStatement(ForInStatement* stmt) argument
1283 VisitForOfStatement(ForOfStatement* stmt) argument
[all...]
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc361 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt, argument
385 RecordBackEdge(stmt->OsrEntryId());
390 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
394 PrepareForBailoutForId(stmt->OsrEntryId(), NO_REGISTERS);
1007 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { argument
1010 Breakable nested_statement(this, stmt);
1011 SetStatementPosition(stmt);
1014 VisitForStackValue(stmt->tag());
1015 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
1017 ZoneList<CaseClause*>* clauses = stmt
1097 VisitForInStatement(ForInStatement* stmt) argument
1269 VisitForOfStatement(ForOfStatement* stmt) argument
[all...]
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc345 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt, argument
361 RecordBackEdge(stmt->OsrEntryId());
366 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
370 PrepareForBailoutForId(stmt->OsrEntryId(), NO_REGISTERS);
942 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { argument
944 Breakable nested_statement(this, stmt);
945 SetStatementPosition(stmt);
948 VisitForStackValue(stmt->tag());
949 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
951 ZoneList<CaseClause*>* clauses = stmt
1036 VisitForInStatement(ForInStatement* stmt) argument
1205 VisitForOfStatement(ForOfStatement* stmt) argument
[all...]
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc367 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt, argument
389 RecordBackEdge(stmt->OsrEntryId());
393 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
397 PrepareForBailoutForId(stmt->OsrEntryId(), NO_REGISTERS);
1001 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { argument
1003 Breakable nested_statement(this, stmt);
1004 SetStatementPosition(stmt);
1007 VisitForStackValue(stmt->tag());
1008 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
1010 ZoneList<CaseClause*>* clauses = stmt
1094 VisitForInStatement(ForInStatement* stmt) argument
1270 VisitForOfStatement(ForOfStatement* stmt) argument
[all...]
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc363 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt, argument
385 RecordBackEdge(stmt->OsrEntryId());
389 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
393 PrepareForBailoutForId(stmt->OsrEntryId(), NO_REGISTERS);
996 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { argument
998 Breakable nested_statement(this, stmt);
999 SetStatementPosition(stmt);
1002 VisitForStackValue(stmt->tag());
1003 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
1005 ZoneList<CaseClause*>* clauses = stmt
1089 VisitForInStatement(ForInStatement* stmt) argument
1265 VisitForOfStatement(ForOfStatement* stmt) argument
[all...]
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc344 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt, argument
364 RecordBackEdge(stmt->OsrEntryId());
370 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
374 PrepareForBailoutForId(stmt->OsrEntryId(), NO_REGISTERS);
965 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { argument
967 Breakable nested_statement(this, stmt);
968 SetStatementPosition(stmt);
971 VisitForStackValue(stmt->tag());
972 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
974 ZoneList<CaseClause*>* clauses = stmt
1059 VisitForInStatement(ForInStatement* stmt) argument
1239 VisitForOfStatement(ForOfStatement* stmt) argument
[all...]
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc342 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt, argument
358 RecordBackEdge(stmt->OsrEntryId());
363 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
367 PrepareForBailoutForId(stmt->OsrEntryId(), NO_REGISTERS);
931 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { argument
933 Breakable nested_statement(this, stmt);
934 SetStatementPosition(stmt);
937 VisitForStackValue(stmt->tag());
938 PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
940 ZoneList<CaseClause*>* clauses = stmt
1025 VisitForInStatement(ForInStatement* stmt) argument
1194 VisitForOfStatement(ForOfStatement* stmt) argument
[all...]
/external/chromium_org/net/extras/sqlite/
H A Dsqlite_channel_id_store.cc138 void DatabaseErrorCallback(int error, sql::Statement* stmt);
395 sql::Statement* stmt) {
393 DatabaseErrorCallback( int error, sql::Statement* stmt) argument
/external/chromium_org/v8/src/compiler/
H A Dast-graph-builder.h146 void VisitIfNotNull(Statement* stmt);
156 void VisitIterationBody(IterationStatement* stmt, LoopBuilder* loop, int);
/external/libpcap/
H A Doptimize.c336 atomuse(struct stmt *s)
375 * a single stmt cannot define more than one register. If no register
381 atomdef(struct stmt *s)
574 vstore(struct stmt *s, int *valp, int newval, int alter)
587 fold_op(struct stmt *s, int v0, int v1)
771 * it is defined by the last stmt of this sequence
918 opt_stmt(struct stmt *s, int val[], int alter)
1103 deadstmt(register struct stmt *s, register struct stmt *last[])
1131 struct stmt *las
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_database.h218 void OnDatabaseError(int err, sql::Statement* stmt);
/external/chromium_org/sql/
H A Dconnection_unittest.cc53 void IgnoreErrorCallback(int error, sql::Statement* stmt) { argument
59 int error, sql::Statement* stmt) {
69 int error, sql::Statement* stmt) {
107 void RazeErrorCallback(int expected_error, int error, sql::Statement* stmt) { argument
56 ErrorCallbackSetHelper(sql::Connection* db, size_t* counter, const RefCounter& r, int error, sql::Statement* stmt) argument
66 ErrorCallbackResetHelper(sql::Connection* db, size_t* counter, const RefCounter& r, int error, sql::Statement* stmt) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
H A Dparse-js.js705 var stmt = $statement();
706 stmt[0] = add_tokens(stmt[0], start, prev());
707 return stmt;
/external/chromium_org/v8/src/
H A Dfull-codegen.h36 void Check(Statement* stmt);
37 void Check(Expression* stmt);
458 void EmitBackEdgeBookkeeping(IterationStatement* stmt,
577 void SetStatementPosition(Statement* stmt);

Completed in 956 milliseconds

12345