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

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symbol.py 24 stmt = 267 variable
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
graminit.h 14 #define stmt 267 macro
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symbol.py 24 stmt = 267 variable
  /prebuilts/go/darwin-x86/src/cmd/vet/internal/cfg/
builder.go 23 func (b *builder) stmt(_s ast.Stmt) { func
27 // It is effectively an additional default-nil parameter of stmt().
63 _s = s.Stmt
64 goto start // effectively: tailcall stmt(g, s.Stmt, label)
116 b.stmt(s.Init)
127 b.stmt(s.Body)
132 b.stmt(s.Else)
158 func (b *builder) stmtList(list []ast.Stmt) {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/internal/cfg/
builder.go 23 func (b *builder) stmt(_s ast.Stmt) { func
27 // It is effectively an additional default-nil parameter of stmt().
63 _s = s.Stmt
64 goto start // effectively: tailcall stmt(g, s.Stmt, label)
116 b.stmt(s.Init)
127 b.stmt(s.Body)
132 b.stmt(s.Else)
158 func (b *builder) stmtList(list []ast.Stmt) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
gimple.h 115 /* Currently, there are only two types of gimple debug stmt. Others are
752 #define gimple_build_debug_bind(var,val,stmt) \
753 gimple_build_debug_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
755 #define gimple_build_debug_source_bind(var,val,stmt) \
756 gimple_build_debug_source_bind_stat ((var), (val), (stmt) MEM_STAT_INFO)
881 /* Return TRUE iff stmt is a call to a built-in function. */
882 extern bool is_gimple_builtin_call (gimple stmt);
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 247 SQLiteStatement stmt = compileStatement(sql);
252 stmt.bindString(i + 1, selectionArgs[i]);
255 resultSet = Robolectric.shadowOf(stmt).getStatement().executeQuery();
350 SQLiteStatement stmt = Robolectric.newInstanceOf(SQLiteStatement.class);
351 Robolectric.shadowOf(stmt).init(realSQLiteDatabase, scrubbedSql);
352 return stmt;
  /external/valgrind/VEX/priv/
host_s390_isel.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
example.py 159 symbol.stmt,
164 # This pattern will match a 'stmt' node which *might* represent a docstring;
169 symbol.stmt,
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 93 Stmt *AnalysisDeclContext::getBody(bool &IsAutosynthesized) const {
96 Stmt *Body = FD->getBody();
98 Stmt *SynthesizedBody =
108 Stmt *Body = MD->getBody();
110 Stmt *SynthesizedBody =
127 Stmt *AnalysisDeclContext::getBody() const {
140 Stmt *Body = getBody(Tmp);
181 void AnalysisDeclContext::registerForcedBlockExpression(const Stmt *stmt) {
184 // Default construct an entry for 'stmt'
    [all...]
  /external/clang/unittests/AST/
StmtPrinterTest.cpp 10 // This file contains tests for Stmt::printPretty() and related methods.
34 void PrintStmt(raw_ostream &Out, const ASTContext *Context, const Stmt *S) {
35 assert(S != nullptr && "Expected non-null Stmt");
48 const Stmt *S = Result.Nodes.getStmtAs<Stmt>("id");
119 has(compoundStmt(has(stmt().bind("id"))))),
145 has(compoundStmt(has(stmt().bind("id"))))),
ASTTypeTraitsTest.cpp 48 EXPECT_TRUE(DNT<Stmt>().isBaseOf(DNT<IfStmt>(), &Distance));
120 VERIFY_NAME(Stmt);
136 EXPECT_TRUE(Verifier.match("void f() {}", stmt()));
161 EXPECT_TRUE(Verifier.match("void f() {}", stmt()));
173 EXPECT_TRUE(Verifier.match("void f() {}", stmt()));
  /external/libpcap/
grammar.h 301 struct stmt *stmt; member in union:YYSTYPE
gencode.h 207 struct stmt { struct
215 struct stmt s;
250 struct stmt s; /* branch stmt */
273 struct slist *s; /* stmt list */
  /external/python/cpython2/Demo/parser/
example.py 159 symbol.stmt,
164 # This pattern will match a 'stmt' node which *might* represent a docstring;
169 symbol.stmt,
  /external/python/cpython2/Lib/test/
test_compile.py 349 for stmt in stmts:
350 stmt += "\n"
351 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'single')
352 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'exec')
400 for stmt in succeed:
401 compile(stmt, 'tmp', 'exec')
402 for stmt in fail:
403 self.assertRaises(SyntaxError, compile, stmt, 'tmp', 'exec')
  /external/strace/tests/
seccomp-filter-v.c 137 const struct sock_filter stmt = local
139 big_filter[i] = stmt;
  /external/strace/tests-m32/
seccomp-filter-v.c 137 const struct sock_filter stmt = local
139 big_filter[i] = stmt;
  /external/strace/tests-mx32/
seccomp-filter-v.c 137 const struct sock_filter stmt = local
139 big_filter[i] = stmt;
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/verifier/
DatabaseVerifierTest.kt 57 val stmt = verifier.connection.createStatement()
58 val rs = stmt.executeQuery("select * from sqlite_master WHERE type='table'")
230 val stmt = connection.createStatement()
231 val resultSet = stmt.executeQuery("PRAGMA table_info($tableName)")
  /external/selinux/checkpolicy/
policy_define.h 16 avrule_t *define_cond_pol_list(avrule_t *avlist, avrule_t *stmt);
  /external/v8/src/crankshaft/
typing.h 35 void ObserveTypesAtOsrEntry(IterationStatement* stmt);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_metaclass.py 160 for suite, i, stmt in find_metas(node):
161 last_metaclass = stmt
162 stmt.remove()
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_metaclass.py 160 for suite, i, stmt in find_metas(node):
161 last_metaclass = stmt
162 stmt.remove()
  /frameworks/support/persistence/db-framework/src/main/java/android/arch/persistence/db/framework/
FrameworkSQLiteDatabase.java 233 SupportSQLiteStatement stmt = compileStatement(sql.toString());
234 SimpleSQLiteQuery.bind(stmt, bindArgs);
235 return stmt.executeUpdateDelete();

Completed in 893 milliseconds

1 2 3 4 56 7 8 91011>>