HomeSort by relevance Sort by last modified time
    Searched refs:statement (Results 101 - 125 of 278) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-internal.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h     [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 122 SQLiteStatement statement = mDatabase.compileStatement(sql); local
123 DatabaseUtils.bindObjectToProgram(statement, 1, name);
124 DatabaseUtils.bindObjectToProgram(statement, 2, age);
125 DatabaseUtils.bindObjectToProgram(statement, 3, address);
126 statement.execute();
127 statement.close();
444 SQLiteStatement statement = mDatabase.compileStatement(query); local
445 assertEquals(2, DatabaseUtils.longForQuery(statement, null));
448 statement = mDatabase.compileStatement(query);
450 assertEquals(35, DatabaseUtils.longForQuery(statement, args))
556 SQLiteStatement statement = mDatabase.compileStatement(query); local
594 SQLiteStatement statement = mDatabase.compileStatement(query); local
    [all...]
  /external/chromium/chrome/browser/history/
url_database_unittest.cc 238 sql::Statement statement(GetDB().GetCachedStatement(
242 ASSERT_TRUE(statement);
244 statement.BindInt64(0, icon_id);
245 statement.BindInt64(1, url_id1);
246 ASSERT_TRUE(statement.Run());
  /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);
  /external/open-vcdiff/gtest/src/
gtest-death-test.cc 168 // to executing the given statement. It is the responsibility of the
190 // code; and RETURNED means that the test statement attempted a "return,"
292 bool DeathTest::Create(const char* statement, const RE* regex,
295 statement, regex, file, line, test);
311 DeathTestImpl(const char* statement, const RE* regex)
312 : statement_(statement),
326 const char* statement() const { return statement_; } function in class:testing::internal::DeathTestImpl
456 buffer << "Death test: " << statement() << "\n";
463 buffer << " Result: illegal return in test statement.\n"
522 WindowsDeathTest(const char* statement,
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 168 // to executing the given statement. It is the responsibility of the
190 // code; and RETURNED means that the test statement attempted a "return,"
292 bool DeathTest::Create(const char* statement, const RE* regex,
295 statement, regex, file, line, test);
311 DeathTestImpl(const char* statement, const RE* regex)
312 : statement_(statement),
326 const char* statement() const { return statement_; } function in class:testing::internal::DeathTestImpl
456 buffer << "Death test: " << statement() << "\n";
463 buffer << " Result: illegal return in test statement.\n"
522 WindowsDeathTest(const char* statement,
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 65 /** index of statement {@code s} in {@code blockN} */
206 // Live out at last statement in blockN
216 // if s is the first statement in block N
225 // Let s' be the statement preceeding s
235 SsaInsn statement = blockN.getInsns().get(statementIndex); local
236 RegisterSpec rs = statement.getResult();
238 if (!statement.isResultReg(regV)) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
LivenessAnalyzer.java 65 /** index of statement {@code s} in {@code blockN} */
206 // Live out at last statement in blockN
216 // if s is the first statement in block N
225 // Let s' be the statement preceeding s
235 SsaInsn statement = blockN.getInsns().get(statementIndex); local
236 RegisterSpec rs = statement.getResult();
238 if (!statement.isResultReg(regV)) {
  /external/v8/test/mjsunit/harmony/
block-let-declaration.js 66 // Test let declarations in statement positions.
76 // Test const declarations with initialisers in statement positions.
91 // Test const declarations without initialisers in statement positions.
101 // Test var declarations in statement positions.
112 // non-strict statement positions.
129 // Test function declarations in statement position in strict mode.
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
nuances.rb 136 | modifier+ statement
143 statement
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8SQLTransactionCustom.cpp 58 STRING_TO_V8PARAMETER_EXCEPTION_BLOCK(V8Parameter<>, statement, args[0]);
112 transaction->executeSQL(statement, sqlValues, callback, errorCallback, ec);
  /external/chromium/testing/gtest/include/gtest/
gtest.h 235 // Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print
    [all...]
  /external/gtest/include/gtest/
gtest.h 235 // Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h 235 // Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h 235 // Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print
    [all...]
  /external/open-vcdiff/gtest/include/gtest/
gtest.h 227 // Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h     [all...]
  /external/v8/src/
full-codegen.h 45 // AST node visitor which can tell whether a given statement will be breakable
53 void Check(Statement* stmt);
138 virtual bool IsContinueTarget(Statement* target) { return false; }
139 virtual bool IsBreakTarget(Statement* target) { return false; }
141 // Notify the statement that we are exiting it via break, continue, or
143 // next outer statement in the nesting stack. We accumulate in
161 // A breakable statement such as a block.
164 Breakable(FullCodeGenerator* codegen, BreakableStatement* statement)
165 : NestedStatement(codegen), statement_(statement) {
170 virtual bool IsBreakTarget(Statement* target)
174 BreakableStatement* statement() { return statement_; } function in class:v8::internal::FullCodeGenerator::Breakable
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
NodeConstructors.h 717 inline DoWhileNode::DoWhileNode(JSGlobalData* globalData, StatementNode* statement, ExpressionNode* expr)
719 , m_statement(statement)
724 inline WhileNode::WhileNode(JSGlobalData* globalData, ExpressionNode* expr, StatementNode* statement)
727 , m_statement(statement)
731 inline ForNode::ForNode(JSGlobalData* globalData, ExpressionNode* expr1, ExpressionNode* expr2, ExpressionNode* expr3, StatementNode* statement, bool expr1WasVarDecl)
736 , m_statement(statement)
739 ASSERT(statement);
772 inline WithNode::WithNode(JSGlobalData* globalData, ExpressionNode* expr, StatementNode* statement, uint32_t divot, uint32_t expressionLength)
775 , m_statement(statement)
781 inline LabelNode::LabelNode(JSGlobalData* globalData, const Identifier& name, StatementNode* statement)
    [all...]

Completed in 1750 milliseconds

1 2 3 45 6 7 8 91011>>