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

1 2 3 4 56 7 8 910

  /prebuilts/gradle-plugin/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.2.jar 
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3.jar 
  /prebuilts/misc/common/android-support-test/runner/
runner-0.5-release.jar 
  /prebuilts/misc/common/android-support-test/rules/
rules-0.5-release.jar 
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 101 // Process an ordinary statement.
189 case CFGElement::Statement: {
355 // Translate a clang statement or expression to a TIL expression.
  /external/v8/src/
typing-asm.cc 141 FAIL(fun->body()->last(), "last statement in module is not a return");
179 ZoneList<Statement*>* body = fun->body();
308 void AsmTyper::VisitStatements(ZoneList<Statement*>* stmts) {
310 Statement* stmt = stmts->at(i);
323 "expression statement expected to be any"));
332 Visit(stmt->statement());
341 FAIL(stmt, "if statement inside module body");
352 FAIL(stmt, "continue statement inside module body");
359 FAIL(stmt, "continue statement inside module body");
365 // Handle module return statement in VisitAsmModule
    [all...]
  /prebuilts/misc/common/ub-janktesthelper/
ub-janktesthelper.jar 
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp 509 * expression whose GLSL type corresponds to the C++ type T, and a Statement
510 * represents a statement.
514 * is a shared pointer to a Statement.
522 class Statement;
640 * \brief A statement or declaration.
646 * As a bit of a kludge, a Statement object can also represent a declaration:
651 class Statement
654 virtual ~Statement (void) { }
655 //! Execute the statement, modifying the environment of `ctx`
658 //! Add the functions used in this statement to `dst`
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 530 * expression whose GLSL type corresponds to the C++ type T, and a Statement
531 * represents a statement.
535 * is a shared pointer to a Statement.
543 class Statement;
661 * \brief A statement or declaration.
667 * As a bit of a kludge, a Statement object can also represent a declaration:
672 class Statement
675 virtual ~Statement (void) { }
676 //! Execute the statement, modifying the environment of `ctx`
679 //! Add the functions used in this statement to `dst`
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 160 // Either 'break' or 'continue' to the target statement.
177 void PerformCommand(Command cmd, Statement* target, Node* value);
181 virtual bool Execute(Command cmd, Statement* target, Node* value) {
224 Statement* statement; // The target statement for the command or {nullptr}. member in struct:v8::internal::compiler::AstGraphBuilder::ControlScope::DeferredCommands::Entry
230 Node* RecordCommand(Command cmd, Statement* stmt, Node* value) {
270 deferred_[i].command, deferred_[i].statement, value);
306 bool Execute(Command cmd, Statement* target, Node* value) override {
334 bool Execute(Command cmd, Statement* target, Node* value) override
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 35 import java.sql.Statement;
477 public Statement getStatement() throws SQLException {
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/
lombok-ast-0.2.1.jar 
  /external/v8/src/full-codegen/
full-codegen.cc 446 Visit(declaration->statement());
647 Statement* stmt, FullCodeGenerator::InsertBreak insert_break) {
937 void FullCodeGenerator::EmitContinue(Statement* target) {
977 void FullCodeGenerator::EmitBreak(Statement* target) {
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 423 std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement);
493 /// Thus, while visiting a statement for temporary destructors, we keep a
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 875 /// matches both the compound statement '{ ++a; }' and '++a'.
1067 /// Example matches T(t) in return statement of f
    [all...]
  /external/v8/src/ast/
prettyprinter.cc 121 Find(node->statement());
147 Find(node->statement());
422 void CallPrinter::FindStatements(ZoneList<Statement*>* statements) {
549 Visit(node->statement());
600 Visit(node->statement());
974 ExpressionStatement* statement = local
976 Visit(statement->expression());
1034 void PrettyPrinter::PrintStatements(ZoneList<Statement*>* statements) {
1267 void AstPrinter::PrintStatements(ZoneList<Statement*>* statements) {
1321 IndentedScope indent(this, "EXPRESSION STATEMENT", node->position())
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/session/
JDBCSessionManager.java 32 import java.sql.Statement;
816 PreparedStatement statement = null;
820 statement = _jdbcSessionIdMgr._dbAdaptor.getLoadStatement(connection, id, canonicalContextPath, vhost);
821 ResultSet result = statement.executeQuery();
850 if (statement!=null)
852 try { statement.close(); }
895 PreparedStatement statement = null; local
902 statement = connection.prepareStatement(_jdbcSessionIdMgr._insertSession);
903 statement.setString(1, rowId); //rowId
904 statement.setString(2, session.getId()); //session i
958 PreparedStatement statement = null; local
1009 PreparedStatement statement = null; local
1044 PreparedStatement statement = null; local
1089 PreparedStatement statement = null; local
    [all...]
  /libcore/ojluni/src/main/java/java/sql/
ResultSet.java 36 * is usually generated by executing a statement that queries the database.
58 * Statement stmt = con.createStatement(
136 * <code>Statement</code> object that
144 * @see Statement#executeQuery
145 * @see Statement#getResultSet
196 * <code>Statement</code> object that generated it when
197 * that <code>Statement</code> object is closed,
    [all...]
  /system/tools/aidl/
ast_java.cpp 135 void StatementBlock::Add(Statement* statement) {
136 this->statements.push_back(statement);

Completed in 2982 milliseconds

1 2 3 4 56 7 8 910