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

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/vet/
assign.go 30 stmt := node.(*ast.AssignStmt)
31 if stmt.Tok != token.ASSIGN {
34 if len(stmt.Lhs) != len(stmt.Rhs) {
38 for i, lhs := range stmt.Lhs {
39 rhs := stmt.Rhs[i]
46 f.Badf(stmt.Pos(), "self-assignment of %s to %s", re, le)
deadcode.go 23 hasBreak map[ast.Stmt]bool
25 labels map[string]ast.Stmt
26 breakTarget ast.Stmt
48 hasBreak: make(map[ast.Stmt]bool),
50 labels: make(map[string]ast.Stmt),
59 // findLabels gathers information about the labels defined and used by stmt
61 func (d *deadState) findLabels(stmt ast.Stmt) {
62 switch x := stmt.(type) {
79 for _, stmt := range x.List
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
timeit.py 78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
85 %(stmt)s
121 def __init__(self, stmt="pass", setup="pass", timer=default_timer):
125 if isinstance(stmt, basestring):
126 stmt = reindent(stmt, 8)
129 src = template % {'stmt': stmt, 'setup': setup}
131 src = template % {'stmt': stmt, 'setup': '_setup()'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
timeit.py 78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
85 %(stmt)s
121 def __init__(self, stmt="pass", setup="pass", timer=default_timer):
125 if isinstance(stmt, basestring):
126 stmt = reindent(stmt, 8)
129 src = template % {'stmt': stmt, 'setup': setup}
131 src = template % {'stmt': stmt, 'setup': '_setup()'
    [all...]
  /build/kati/
file.cc 27 #include "stmt.h"
60 for (Stmt* stmt : stmts_)
61 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);
159 vector<Stmt*> asts;
169 for (Stmt* stmt : mk->stmts())
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/verifier/
DatabaseVerifier.kt 66 val stmt = connection.createStatement()
67 stmt.executeUpdate(entity.createTableQuery)
73 val stmt = connection.prepareStatement(sql)
74 QueryResultInfo(stmt.columnInfo())
  /external/valgrind/VEX/priv/
ir_defs.c 4658 const IRStmt* stmt; local
    [all...]
  /external/v8/src/full-codegen/
full-codegen.cc 666 Statement* stmt, FullCodeGenerator::InsertBreak insert_break) {
667 if (stmt->position() == kNoSourcePosition) return;
668 RecordStatementPosition(stmt->position());
670 !stmt->IsDebuggerStatement()) {
882 void FullCodeGenerator::VisitBlock(Block* stmt) {
884 NestedBlock nested_block(this, stmt);
888 this, stmt->scope(), stmt->EntryId(), stmt->DeclsId(), stmt->ExitId())
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
noder.go 564 func (p *noder) stmts(stmts []syntax.Stmt) []*Node {
566 for _, stmt := range stmts {
567 s := p.stmt(stmt)
578 func (p *noder) stmt(stmt syntax.Stmt) *Node { func
579 p.lineno(stmt)
580 switch stmt := stmt.(type)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
noder.go 564 func (p *noder) stmts(stmts []syntax.Stmt) []*Node {
566 for _, stmt := range stmts {
567 s := p.stmt(stmt)
578 func (p *noder) stmt(stmt syntax.Stmt) *Node { func
579 p.lineno(stmt)
580 switch stmt := stmt.(type)
    [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
  /external/python/cpython2/Lib/plat-irix5/
panel.py 133 stmt = lhs + '=' + repr(value)
134 if debug: print 'exec', stmt
136 exec stmt + '\n'
140 print 'assign failed:', stmt
190 stmt = 'panel.' + name + ' = act'
191 if debug: print 'exec', stmt
192 exec stmt + '\n'
241 stmt = 'panel.' + name + ' = act'
242 exec stmt + '\n'
  /external/python/cpython2/Lib/plat-irix6/
panel.py 133 stmt = lhs + '=' + repr(value)
134 if debug: print 'exec', stmt
136 exec stmt + '\n'
140 print 'assign failed:', stmt
190 stmt = 'panel.' + name + ' = act'
191 if debug: print 'exec', stmt
192 exec stmt + '\n'
241 stmt = 'panel.' + name + ' = act'
242 exec stmt + '\n'
  /frameworks/support/room/compiler/src/test/data/daoWriter/output/
DeletionDao.java 37 public void bind(SupportSQLiteStatement stmt, User value) {
38 stmt.bindLong(1, value.uid);
48 public void bind(SupportSQLiteStatement stmt, MultiPKeyEntity value) {
50 stmt.bindNull(1);
52 stmt.bindString(1, value.name);
55 stmt.bindNull(2);
57 stmt.bindString(2, value.lastName);
68 public void bind(SupportSQLiteStatement stmt, Book value) {
69 stmt.bindLong(1, value.bookId);
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_ssa.cpp 475 for (Instruction *stmt = bb->getFirst(); stmt; stmt = stmt->next) {
478 if (stmt->op != OP_PHI) {
479 for (s = 0; stmt->srcExists(s); ++s) {
480 lval = stmt->getSrc(s)->asLValue();
487 lval = mkUndefined(stmt->getSrc(s));
488 stmt->setSrc(s, lval);
491 for (d = 0; stmt->defExists(d); ++d)
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc 106 void Break(Statement* stmt) { PerformCommand(CMD_BREAK, stmt); }
107 void Continue(Statement* stmt) { PerformCommand(CMD_CONTINUE, stmt); }
795 void BytecodeGenerator::VisitIterationHeader(IterationStatement* stmt,
797 // Recall that stmt->yield_count() is always zero inside ordinary
799 if (stmt->yield_count() == 0) {
806 size_t first_yield = stmt->first_yield_id();
807 DCHECK_LE(first_yield + stmt->yield_count(),
809 for (size_t id = first_yield; id < first_yield + stmt->yield_count()
1033 Statement* stmt = statements->at(i); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
h2py.py 131 stmt = '%s = %s\n' % (name, body.strip())
133 exec stmt in env
135 sys.stderr.write('Skipping: %s' % stmt)
137 outfp.write(stmt)
143 stmt = 'def %s(%s): return %s\n' % (macro, arg, body)
145 exec stmt in env
147 sys.stderr.write('Skipping: %s' % stmt)
149 outfp.write(stmt)
  /external/python/cpython2/Tools/scripts/
h2py.py 137 stmt = '%s = %s\n' % (name, body.strip())
139 exec stmt in env
141 sys.stderr.write('Skipping: %s' % stmt)
143 outfp.write(stmt)
149 stmt = 'def %s(%s): return %s\n' % (macro, arg, body)
151 exec stmt in env
153 sys.stderr.write('Skipping: %s' % stmt)
155 outfp.write(stmt)
  /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;
  /prebuilts/go/darwin-x86/src/database/sql/
fakedb_test.go 407 func (c *fakeConn) prepareSelect(stmt *fakeStmt, parts []string) (*fakeStmt, error) {
409 stmt.Close()
412 stmt.table = parts[0]
414 stmt.colName = strings.Split(parts[1], ",")
421 stmt.Close()
422 return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
425 _, ok := c.db.columnType(stmt.table, column)
427 stmt.Close()
428 return nil, errf("SELECT on table %q references non-existent column %q", stmt.table, column)
431 stmt.Close(
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
fakedb_test.go 407 func (c *fakeConn) prepareSelect(stmt *fakeStmt, parts []string) (*fakeStmt, error) {
409 stmt.Close()
412 stmt.table = parts[0]
414 stmt.colName = strings.Split(parts[1], ",")
421 stmt.Close()
422 return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
425 _, ok := c.db.columnType(stmt.table, column)
427 stmt.Close()
428 return nil, errf("SELECT on table %q references non-existent column %q", stmt.table, column)
431 stmt.Close(
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
nodes.go 103 Body []Stmt // nil means no body (forward declaration)
159 Body []Stmt
304 Stmt interface {
310 Stmt
320 Stmt Stmt
321 stmt
325 Body []Stmt
326 stmt
341 stmt
424 type stmt struct{ node } type
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
nodes.go 103 Body []Stmt // nil means no body (forward declaration)
159 Body []Stmt
304 Stmt interface {
310 Stmt
320 Stmt Stmt
321 stmt
325 Body []Stmt
326 stmt
341 stmt
424 type stmt struct{ node } type
    [all...]

Completed in 723 milliseconds

1 23 4 5 6 7 8 91011>>