HomeSort by relevance Sort by last modified time
    Searched refs:statement (Results 176 - 200 of 1157) sorted by null

1 2 3 4 5 6 78 91011>>

  /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 // checkRangeLoop walks the body of the provided range statement, checking if
httpresponse.go 47 return // the call to the http function is the last statement of the block.
52 return // the first statement is not assignment.
61 return // the following statement is not a defer.
108 // statement containing it and its succeeding statements in the same block.
111 stmt ast.Stmt // innermost statement enclosing argument to Visit
116 // It keeps the last block statement and statement seen for later use.
  /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/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h     [all...]
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
httpresponse.go 47 return // the call to the http function is the last statement of the block.
52 return // the first statement is not assignment.
61 return // the following statement is not a defer.
108 // statement containing it and its succeeding statements in the same block.
111 stmt ast.Stmt // innermost statement enclosing argument to Visit
116 // It keeps the last block statement and statement seen for later use.
  /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))
574 SQLiteStatement statement = mDatabase.compileStatement(query); local
612 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);
NewExpr.java 159 * @param statement a Java statement except try-catch.
161 public void replace(String statement) throws CannotCompileException {
197 checkResultValue(newType, statement);
206 jc.compileStmnt(statement);
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 64 /** index of statement {@code s} in {@code blockN} */
205 // Live out at last statement in blockN
215 // if s is the first statement in block N
224 // Let s' be the statement preceeding s
234 SsaInsn statement = blockN.getInsns().get(statementIndex); local
235 RegisterSpec rs = statement.getResult();
237 if (!statement.isResultReg(regV)) {
  /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
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
lostcancel.go 18 } // ERROR "this return statement may be reached without using the cancel var defined on line 17"
28 } // ERROR "this return statement may be reached without using the cancel3 var defined on line 27"
46 return // ERROR "this return statement may be reached without using the cancel var"
70 } // ERROR "this return statement may be reached without using the cancel var"
104 } // ERROR "this return statement may be reached without using the cancel var"
118 } // ERROR "this return statement may be reached without using the cancel var"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
lostcancel.go 18 } // ERROR "this return statement may be reached without using the cancel var defined on line 17"
28 } // ERROR "this return statement may be reached without using the cancel3 var defined on line 27"
46 return // ERROR "this return statement may be reached without using the cancel var"
70 } // ERROR "this return statement may be reached without using the cancel var"
104 } // ERROR "this return statement may be reached without using the cancel var"
118 } // ERROR "this return statement may be reached without using the cancel var"
  /toolchain/binutils/binutils-2.25/ld/
ldlang.h 392 /* A group statement collects a set of libraries together. The
587 #define LANG_FOR_EACH_INPUT_STATEMENT(statement) \
588 lang_input_statement_type *statement; \
589 for (statement = (lang_input_statement_type *) file_chain.head; \
590 statement != (lang_input_statement_type *) NULL; \
591 statement = (lang_input_statement_type *) statement->next) \
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
nuances.rb 136 | modifier+ statement
143 statement
  /external/llvm/test/MC/Mips/
cpload-bad.s 27 # ASM: :[[@LINE-1]]:21: error: unexpected token, expected end of statement
mips-abi-bad.s 12 # CHECK: :[[@LINE-1]]:15: error: unexpected token, expected end of statement
  /external/mockito/src/main/java/org/mockito/internal/runners/
DefaultInternalRunner.java 16 import org.junit.runners.model.Statement;
32 protected Statement withBefores(FrameworkMethod method, Object target, Statement statement) {
40 return super.withBefores(method, target, statement);

Completed in 962 milliseconds

1 2 3 4 5 6 78 91011>>