/build/kati/ |
file.cc | 26 #include "stmt.h" 59 for (Stmt* stmt : stmts_) 60 delete stmt;
|
main.cc | 39 #include "stmt.h" 64 vector<Stmt*>* stmts) { 148 vector<Stmt*> bootstrap_asts; 151 for (Stmt* stmt : bootstrap_asts) { 152 LOG("%s", stmt->DebugString().c_str()); 153 stmt->Eval(ev); 164 for (Stmt* stmt : mk->stmts()) { 165 LOG("%s", stmt->DebugString().c_str()) [all...] |
/external/v8/src/ast/ |
ast.cc | 805 Statement* stmt = statements->at(i); local 806 Visit(stmt); 807 if (stmt->IsJump()) break; 859 Statement* stmt = stmts->at(i); local 860 RECURSE(Visit(stmt)); 861 if (stmt->IsJump()) break; 875 void AstTraversalVisitor::VisitBlock(Block* stmt) { 876 RECURSE(VisitStatements(stmt->statements())); 879 void AstTraversalVisitor::VisitExpressionStatement(ExpressionStatement* stmt) { 880 RECURSE(Visit(stmt->expression())) [all...] |
/external/valgrind/VEX/priv/ |
ir_defs.c | 4492 const IRStmt* stmt; local [all...] |
/external/v8/src/full-codegen/ |
full-codegen.cc | 647 Statement* stmt, FullCodeGenerator::InsertBreak insert_break) { 648 if (stmt->position() == RelocInfo::kNoPosition) return; 649 RecordStatementPosition(masm_, stmt->position()); 651 !stmt->IsDebuggerStatement()) { 877 void FullCodeGenerator::VisitBlock(Block* stmt) { 879 NestedBlock nested_block(this, stmt); 883 this, stmt->scope(), stmt->EntryId(), stmt->DeclsId(), stmt->ExitId()) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
typeattr.py | 132 stmt = "type {0}".format(self) 135 stmt += " alias {{ {0} }}".format(' '.join(aliases)) 137 stmt += " alias {0}".format(aliases[0]) 139 stmt += ", {0}".format(attr) 140 stmt += ";" 141 return stmt
|
objclass.py | 98 stmt = "class {0}\n".format(self) 101 stmt += "inherits {0}\n".format(self.common) 108 stmt += "{{\n\t{0}\n}}".format('\n\t'.join(perms)) 110 return stmt
|
mls.py | 238 stmt = "category {0}".format(self) 241 stmt += " alias {{ {0} }}".format(' '.join(aliases)) 243 stmt += " alias {0}".format(aliases[0]) 244 stmt += ";" 245 return stmt 270 stmt = "sensitivity {0}".format(self) 273 stmt += " alias {{ {0} }}".format(' '.join(aliases)) 275 stmt += " alias {0}".format(aliases[0]) 276 stmt += ";" 277 return stmt [all...] |
/external/v8/src/ |
typing-asm.cc | 139 ReturnStatement* stmt = fun->body()->last()->AsReturnStatement(); local 140 if (stmt == nullptr) { 143 RECURSE(VisitWithExpectation(stmt->expression(), Type::Object(), 182 ReturnStatement* stmt = body->last()->AsReturnStatement(); local 183 if (stmt != nullptr) { 184 Literal* literal = stmt->expression()->AsLiteral(); 190 RECURSE(VisitExpressionAnnotation(stmt->expression(), nullptr, true)); 204 ExpressionStatement* stmt = body->at(i)->AsExpressionStatement(); local 205 if (stmt == nullptr) break; 206 Assignment* expr = stmt->expression()->AsAssignment() 310 Statement* stmt = stmts->at(i); local [all...] |
/external/opencv3/modules/python/src2/ |
hdr_parser.py | 607 def parse_stmt(self, stmt, end_token): 628 colon_pos = stmt.find(":") 631 w = stmt[:colon_pos].strip() 637 stmt = stmt[colon_pos+1:].strip() 641 if not stack_top[self.PUBLIC_SECTION] or stmt.startswith("template"): 645 if not self.wrap_mode and stmt.startswith("typedef struct"): 648 classname, bases, modlist = self.parse_class_decl(stmt[len("typedef "):]) 659 if stmt.startswith("class") or stmt.startswith("struct") [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 465 for (Instruction *stmt = bb->getFirst(); stmt; stmt = stmt->next) { 466 if (stmt->op != OP_PHI) { 467 for (s = 0; stmt->srcExists(s); ++s) { 468 lval = stmt->getSrc(s)->asLValue(); 473 lval = mkUndefined(stmt->getSrc(s)); 474 stmt->setSrc(s, lval); 477 for (d = 0; stmt->defExists(d); ++d) [all...] |
/external/v8/src/interpreter/ |
bytecode-generator.cc | 101 void Break(Statement* stmt) { PerformCommand(CMD_BREAK, stmt); } 102 void Continue(Statement* stmt) { PerformCommand(CMD_CONTINUE, stmt); } 647 void BytecodeGenerator::VisitIterationHeader(IterationStatement* stmt, 649 // Recall that stmt->yield_count() is always zero inside ordinary 656 size_t first_yield = stmt->first_yield_id(); 657 for (size_t id = first_yield; id < first_yield + stmt->yield_count(); id++) { 666 if (stmt->yield_count() > 0) { 675 stmt->yield_count(), generator_resume_points_) 859 Statement* stmt = statements->at(i); local [all...] |
/ndk/tests/device/test-stlport_shared-exception/jni/ |
cond1.cpp | 6 #define CI(stmt) try { stmt; abort(); } catch (int) { }
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
cond1.cpp | 6 #define CI(stmt) try { stmt; abort(); } catch (int) { }
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
tree-iterator.h | 86 return &i.ptr->stmt; 92 return i.ptr->stmt;
|
ipa-ref.h | 42 gimple stmt; variable
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_profile.py | 52 for stmt in stmts: 55 prof.runctx(stmt, globals(), locals()) 60 "Profiling {0!r} didn't report list.sort:\n{1}".format(stmt, res))
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_profile.py | 52 for stmt in stmts: 55 prof.runctx(stmt, globals(), locals()) 60 "Profiling {0!r} didn't report list.sort:\n{1}".format(stmt, res))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_profile.py | 52 for stmt in stmts: 55 prof.runctx(stmt, globals(), locals()) 60 "Profiling {0!r} didn't report list.sort:\n{1}".format(stmt, res))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_profile.py | 52 for stmt in stmts: 55 prof.runctx(stmt, globals(), locals()) 60 "Profiling {0!r} didn't report list.sort:\n{1}".format(stmt, res))
|
/external/v8/src/wasm/ |
asm-wasm-builder.cc | 144 Statement* stmt = stmts->at(i); variable 145 ExpressionStatement* e = stmt->AsExpressionStatement(); 149 RECURSE(Visit(stmt)); 150 if (stmt->IsJump()) break; 154 void VisitBlock(Block* stmt) override { 155 if (stmt->statements()->length() == 1) { 157 stmt->statements()->at(0)->AsExpressionStatement(); 166 BlockVisitor visitor(this, stmt->AsBreakableStatement(), kExprBlock, 168 RECURSE(VisitStatements(stmt->statements())); 170 RECURSE(VisitStatements(stmt->statements())) [all...] |
/external/v8/src/compiler/ |
ast-graph-builder.cc | 230 Node* RecordCommand(Command cmd, Statement* stmt, Node* value) { 249 deferred_.push_back({cmd, stmt, token}); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_tuple_params.py | 27 def is_docstring(stmt): 28 return isinstance(stmt, pytree.Node) and \ 29 stmt.children[0].type == token.STRING 71 stmt = Assign(arg, n.clone()) 76 [stmt, end.clone()]))
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_tuple_params.py | 27 def is_docstring(stmt): 28 return isinstance(stmt, pytree.Node) and \ 29 stmt.children[0].type == token.STRING 71 stmt = Assign(arg, n.clone()) 76 [stmt, end.clone()]))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_tuple_params.py | 27 def is_docstring(stmt): 28 return isinstance(stmt, pytree.Node) and \ 29 stmt.children[0].type == token.STRING 71 stmt = Assign(arg, n.clone()) 76 [stmt, end.clone()]))
|