HomeSort by relevance Sort by last modified time
    Searched refs:statement (Results 201 - 225 of 1343) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/darwin-x86/test/chan/
select4.go 7 // Test that a select statement proceeds when a value is ready.
  /prebuilts/go/darwin-x86/test/fixedbugs/
gcc67968.go 10 // type when a return statement requires a conversion to interface
  /prebuilts/go/darwin-x86/test/
goprint.go 7 // Test that println can be the target of a go statement.
  /prebuilts/go/linux-x86/test/chan/
select4.go 7 // Test that a select statement proceeds when a value is ready.
  /prebuilts/go/linux-x86/test/fixedbugs/
gcc67968.go 10 // type when a return statement requires a conversion to interface
  /prebuilts/go/linux-x86/test/
goprint.go 7 // Test that println can be the target of a go statement.
  /external/python/cpython3/Lib/sqlite3/test/
hooks.py 211 def trace(statement):
212 traced_statements.append(statement)
224 def trace(statement):
225 traced_statements.append(statement)
233 Test that the statement can contain unicode literals.
238 def trace(statement):
239 traced_statements.append(statement)
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h     [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
rangeloop.go 8 instances where the defer or go statement is the last statement in the loop
33 // checkLoop walks the body of the provided loop statement, checking whether
37 // Find the variables updated by the loop statement.
67 // Inspect a go or defer statement
httpresponse.go 31 return // the call to the http function is the last statement of the block.
36 return // the first statement is not assignment.
45 return // the following statement is not a defer.
92 // statement containing it and its succeeding statements in the same block.
95 stmt ast.Stmt // innermost statement enclosing argument to Visit
100 // It keeps the last block statement and statement seen for later use.
  /prebuilts/go/linux-x86/src/cmd/vet/
rangeloop.go 8 instances where the defer or go statement is the last statement in the loop
33 // checkLoop walks the body of the provided loop statement, checking whether
37 // Find the variables updated by the loop statement.
67 // Inspect a go or defer statement
httpresponse.go 31 return // the call to the http function is the last statement of the block.
36 return // the first statement is not assignment.
45 return // the following statement is not a defer.
92 // statement containing it and its succeeding statements in the same block.
95 stmt ast.Stmt // innermost statement enclosing argument to Visit
100 // It keeps the last block statement and statement seen for later use.
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
C.g 517 statement
548 : IDENTIFIER ':' statement
549 | 'case' constant_expression ':' statement
550 | 'default' ':' statement
558 : statement+
567 : 'if' '(' e=expression ')' {self.StorePredicateExpression($e.start.line, $e.start.charPositionInLine, $e.stop.line, $e.stop.charPositionInLine, $e.text)} statement (options {k=1; backtrack=false;}:'else' statement)?
568 | 'switch' '(' expression ')' statement
572 : 'while' '(' e=expression ')' statement {self.StorePredicateExpression($e.start.line, $e.start.charPositionInLine, $e.stop.line, $e.stop.charPositionInLine, $e.text)}
573 | 'do' statement 'while' '(' e=expression ')' ';' {self.StorePredicateExpression($e.start.line, $e.start.charPositi (…)
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataNotSupportedTest.java 34 import java.sql.Statement;
50 protected static Statement statement; field in class:DatabaseMetaDataNotSupportedTest
52 protected static Statement statementForward;
62 statement = conn.createStatement();
73 statement = conn.createStatement();
92 statement.execute(DatabaseCreator.DROP_TABLE1);
95 statement.execute(DatabaseCreator.DROP_TABLE3);
97 statement.execute(DROP_VIEW_QUERY);
101 statement.execute(DatabaseCreator.CREATE_TABLE3)
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 124 SQLiteStatement statement = mDatabase.compileStatement(sql); local
125 DatabaseUtils.bindObjectToProgram(statement, 1, name);
126 DatabaseUtils.bindObjectToProgram(statement, 2, age);
127 DatabaseUtils.bindObjectToProgram(statement, 3, address);
128 statement.execute();
129 statement.close();
462 SQLiteStatement statement = mDatabase.compileStatement(query); local
463 assertEquals(2, DatabaseUtils.longForQuery(statement, null));
466 statement = mDatabase.compileStatement(query);
468 assertEquals(35, DatabaseUtils.longForQuery(statement, args))
577 SQLiteStatement statement = mDatabase.compileStatement(query); local
615 SQLiteStatement statement = mDatabase.compileStatement(query); local
    [all...]
  /external/javassist/src/main/javassist/expr/
NewArray.java 156 * @param statement a Java statement except try-catch.
158 public void replace(String statement) throws CannotCompileException {
160 replace2(statement);
169 private void replace2(String statement)
221 checkResultValue(retType, statement);
232 jc.compileStmnt(statement);
MethodCall.java 176 * @param statement a Java statement except try-catch.
178 public void replace(String statement) throws CannotCompileException {
223 checkResultValue(retType, statement);
234 jc.compileStmnt(statement);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslGrammar.cpp     [all...]
  /external/autotest/frontend/migrations/
037_db_constraints.py 1 def execute_safely(manager, statement):
3 manager.execute(statement)
5 print 'Statement %r failed (this is not fatal)' % statement

Completed in 865 milliseconds

1 2 3 4 5 6 7 891011>>