HomeSort by relevance Sort by last modified time
    Searched refs:stmt (Results 76 - 100 of 465) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/vet/
lostcancel.go 65 stmt := stack[len(stack)-3]
66 switch stmt := stmt.(type) {
68 if len(stmt.Names) > 1 {
69 id = stmt.Names[1]
72 if len(stmt.Lhs) > 1 {
73 id, _ = stmt.Lhs[1].(*ast.Ident)
81 cancelvars[v] = stmt
83 cancelvars[v] = stmt
122 for v, stmt := range cancelvars
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
lostcancel.go 65 stmt := stack[len(stack)-3]
66 switch stmt := stmt.(type) {
68 if len(stmt.Names) > 1 {
69 id = stmt.Names[1]
72 if len(stmt.Lhs) > 1 {
73 id, _ = stmt.Lhs[1].(*ast.Ident)
81 cancelvars[v] = stmt
83 cancelvars[v] = stmt
122 for v, stmt := range cancelvars
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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))
test_timeit.py 75 self.assertRaises(ValueError, timeit.Timer, stmt=None)
76 self.assertRaises(SyntaxError, timeit.Timer, stmt='return')
77 self.assertRaises(SyntaxError, timeit.Timer, stmt='yield')
78 self.assertRaises(SyntaxError, timeit.Timer, stmt='break')
79 self.assertRaises(SyntaxError, timeit.Timer, stmt='continue')
97 def timeit(self, stmt, setup, number=None):
99 t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer)
141 def repeat(self, stmt, setup, repeat=None, number=None):
143 t = timeit.Timer(stmt=stmt, setup=setup, timer=self.fake_timer
    [all...]
  /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))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
ipa-ref.h 42 gimple stmt; variable
  /external/v8/src/asmjs/
asm-wasm-builder.cc 220 Statement* stmt = stmts->at(i); local
221 ExpressionStatement* e = stmt->AsExpressionStatement();
225 RECURSE(Visit(stmt));
230 void VisitBlock(Block* stmt) {
231 if (stmt->statements()->length() == 1) {
233 stmt->statements()->at(0)->AsExpressionStatement();
242 BlockVisitor visitor(this, stmt->AsBreakableStatement(), kExprBlock,
244 RECURSE(VisitStatements(stmt->statements()));
246 RECURSE(VisitStatements(stmt->statements()));
255 BlockVisitor(AsmWasmBuilderImpl* builder, BreakableStatement* stmt,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
mls.py 240 stmt = "category {0}".format(self)
243 stmt += " alias {{ {0} }}".format(' '.join(aliases))
245 stmt += " alias {0}".format(aliases[0])
246 stmt += ";"
247 return stmt
272 stmt = "sensitivity {0}".format(self)
275 stmt += " alias {{ {0} }}".format(' '.join(aliases))
277 stmt += " alias {0}".format(aliases[0])
278 stmt += ";"
279 return stmt
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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()]))
fix_except.py 71 for i, stmt in enumerate(suite_stmts):
72 if isinstance(stmt, pytree.Node):
  /external/python/cpython2/Lib/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/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()]))
  /prebuilts/python/linux-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()]))
  /external/v8/tools/gcmole/
gcmole.cc 802 ExprEffect Seq(clang::Stmt* parent,
886 Environment VisitStmt(clang::Stmt* stmt, const Environment& env) {
889 clang::type* concrete_stmt = llvm::dyn_cast_or_null<clang::type>(stmt); \
895 if (clang::Expr* expr = llvm::dyn_cast_or_null<clang::Expr>(stmt)) {
924 Environment Visit##type (clang::type* stmt, const Environment& env)
927 Environment Visit##type (clang::type* stmt, const Environment& env) { \
984 void Seq(clang::Stmt* a, clang::Stmt* b, clang::Stmt* c)
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/
sql_test.go 807 stmt, err := db.Prepare("SELECT|people|age|name=?")
811 err = stmt.Close()
816 err = stmt.QueryRow("foo").Scan(&name)
818 t.Errorf("expected error from QueryRow.Scan after Stmt.Close")
825 stmt, err := db.Prepare("SELECT|people|age|name=?")
829 defer stmt.Close()
839 if err := stmt.QueryRow(tt.name).Scan(&age); err != nil {
869 want := errors.New("STMT ERROR")
872 stmt *Stmt
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
sql_test.go 807 stmt, err := db.Prepare("SELECT|people|age|name=?")
811 err = stmt.Close()
816 err = stmt.QueryRow("foo").Scan(&name)
818 t.Errorf("expected error from QueryRow.Scan after Stmt.Close")
825 stmt, err := db.Prepare("SELECT|people|age|name=?")
829 defer stmt.Close()
839 if err := stmt.QueryRow(tt.name).Scan(&age); err != nil {
869 want := errors.New("STMT ERROR")
872 stmt *Stmt
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/cgo/
ast.go 322 f.walk(n.Body, "stmt", visit)
388 f.walk(n.Stmt, "stmt", visit)
413 f.walk(n.Init, "stmt", visit)
415 f.walk(n.Body, "stmt", visit)
416 f.walk(n.Else, "stmt", visit)
424 f.walk(n.Body, "stmt", visit)
426 f.walk(n.Init, "stmt", visit)
430 f.walk(n.Init, "stmt", visit)
431 f.walk(n.Assign, "stmt", visit
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cgo/
ast.go 322 f.walk(n.Body, "stmt", visit)
388 f.walk(n.Stmt, "stmt", visit)
413 f.walk(n.Init, "stmt", visit)
415 f.walk(n.Body, "stmt", visit)
416 f.walk(n.Else, "stmt", visit)
424 f.walk(n.Body, "stmt", visit)
426 f.walk(n.Init, "stmt", visit)
430 f.walk(n.Init, "stmt", visit)
431 f.walk(n.Assign, "stmt", visit
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 845 void AstGraphBuilder::ControlScope::BreakTo(BreakableStatement* stmt) {
846 PerformCommand(CMD_BREAK, stmt, builder()->jsgraph()->TheHoleConstant());
850 void AstGraphBuilder::ControlScope::ContinueTo(BreakableStatement* stmt) {
851 PerformCommand(CMD_CONTINUE, stmt, builder()->jsgraph()->TheHoleConstant());
    [all...]

Completed in 920 milliseconds

1 2 34 5 6 7 8 91011>>