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

12 3 4 5 6 7 8 910

  /external/v8/src/parsing/
preparser.cc 168 PreParser::Statement PreParser::ParseStatementListItem(bool* ok) {
171 // Statement[?Yield, ?Return]
215 // (Statement)* <end_token>
229 Statement statement = ParseStatementListItem(ok); local
233 bool use_strict_found = statement.IsUseStrictLiteral();
238 } else if (!statement.IsStringLiteral()) {
272 if (!*ok) return Statement::Default(); \
277 PreParser::Statement PreParser::ParseStatement(
279 // Statement :
660 Statement statement = local
810 Statement statement = Statement::Jump(); local
    [all...]
parser.h 345 typedef ZoneList<v8::internal::Statement*>* StatementList;
461 Statement* FinalizeForOfStatement(ForOfStatement* loop, int pos);
532 ZoneList<v8::internal::Statement*>* NewStatementList(int size, Zone* zone) {
533 return new(zone) ZoneList<v8::internal::Statement*>(size, zone);
538 ZoneList<v8::internal::Statement*>* body, bool is_async, bool* ok);
541 ZoneList<Statement*>* body, bool accept_IN,
578 V8_INLINE ZoneList<Statement*>* ParseEagerFunctionBody(
685 void BuildIteratorClose(ZoneList<Statement*>* statements, Variable* iterator,
687 void BuildIteratorCloseForCompletion(ZoneList<Statement*>* statements,
690 Statement* CheckCallable(Variable* var, Expression* error, int pos)
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AbstractStatementRetriever.java 33 * asset by making a statement about an intended relationship between the two.
42 * A statement S(r, a, b) is an assertion that the relation r holds for the
49 * A statement S(r, a, b) is considered <b>reliable</b> if we have confidence that
50 * the statement is true; the exact criterion depends on the kind of statement,
81 public List<Statement> getStatements();
92 * <p> For web assets, {@link AbstractStatementRetriever} will try to retrieve the statement
97 * <p> For Android assets, {@link AbstractStatementRetriever} will try to retrieve the statement
101 * array should contain exactly one statement in JSON format. Note that this implementation
StatementParser.java 43 List<Statement> statements = new ArrayList<Statement>();
55 // The element in the array is well formatted Json but not a well-formed Statement.
67 * Parses a single JSON statement.
77 * Parses a single JSON statement. This method guarantees that exactly one JSON object
82 List<Statement> statements = new ArrayList<Statement>();
85 JSONObject statement = JsonParser.parse(reader); local
87 if (statement.optString(Utils.DELEGATE_FIELD_DELEGATE, null) != null) {
88 delegates.add(statement.optString(Utils.DELEGATE_FIELD_DELEGATE))
    [all...]
DirectStatementRetriever.java 53 private final List<Statement> mStatements;
57 public List<Statement> getStatements() {
66 private Result(List<Statement> statements, Long expireMillis) {
71 public static Result create(List<Statement> statements, Long expireMillis) {
144 List<Statement> statements = new ArrayList<Statement>();
186 List<Statement> statements = new ArrayList<Statement>();
210 return Result.create(Collections.<Statement>emptyList(), DO_NOT_CACHE_RESULT);
  /external/deqp/framework/randomshaders/
rsgFunctionGenerator.cpp 44 std::vector<Statement*> statementStack;
51 // Process until statement stack is empty
56 Statement* curStatement = statementStack.back();
57 Statement* childStatement = curStatement->createNextChild(m_state);
rsgStatement.cpp 45 template <class T> Statement* create (GeneratorState& state) { return new T(state); }
50 Statement* (*create) (GeneratorState& state);
101 Statement* createStatement (GeneratorState& state)
108 Statement::Statement (void)
112 Statement::~Statement (void)
155 for (vector<Statement*>::iterator i = m_children.begin(); i != m_children.end(); i++)
160 void BlockStatement::addChild (Statement* statement)
    [all...]
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIALineNumber.cpp 73 BOOL Statement = 0;
74 return (S_OK == LineNumber->get_statement(&Statement)) ? Statement : false;
  /external/mockito/src/org/mockito/internal/runners/
JUnit45AndHigherRunnerImpl.java 14 import org.junit.runners.model.Statement;
24 protected Statement withBefores(FrameworkMethod method, Object target,
25 Statement statement) {
28 return super.withBefores(method, target, statement);
  /libcore/luni/src/test/java/libcore/java/sql/
OldSQLTest.java 24 import java.sql.Statement;
53 Statement st = null;
77 Statement st = null;
OldStatementTest.java 25 import java.sql.Statement;
32 Statement st = null;
78 Statement st = null;
105 Statement st = null;
122 Statement st = null;
164 Statement st = null;
229 Statement st = null;
233 assertEquals("different result for statement no. "+i, results[i], res);
252 Statement st = null;
281 Statement st = null
    [all...]
OldConnectionTest.java 28 import java.sql.Statement;
33 Statement statement = conn.createStatement(); local
34 assertNotNull(statement);
36 assertEquals(ResultSet.FETCH_UNKNOWN, statement.getFetchDirection());
37 assertNull(statement.getWarnings());
38 assertTrue(statement.getQueryTimeout() > 0);
41 statement.executeQuery("select * from zoo");
50 Statement st = null;
183 Statement st = null
    [all...]
  /external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
IcuTestFmwkRunner.java 26 import org.junit.runners.model.Statement;
35 * A {@link Statement} that does nothing, used when skipping execution.
37 private static final Statement EMPTY_STATEMENT = new Statement() {
119 Statement statement; local
121 statement = EMPTY_STATEMENT;
123 statement = new Statement() {
130 runLeaf(statement, description, notifier)
    [all...]
  /external/vogar/test/vogar/testing/
InterceptOutputStreamsTest.java 26 import org.junit.runners.model.Statement;
61 Statement statement = new Statement() { local
82 statement = ios.apply(statement, Description.EMPTY);
83 statement.evaluate();
97 Statement statement = new Statement() { local
119 Statement statement = new Statement() { local
    [all...]
InterceptOutputStreams.java 28 import org.junit.runners.model.Statement;
111 public Statement apply(final Statement base, Description description) {
112 return new Statement() {
  /libcore/luni/src/test/java/tests/support/
DatabaseCreator.java 22 import java.sql.Statement;
257 Statement statement = conn.createStatement(); local
258 statement
260 statement.execute("INSERT INTO " + PARENT_TABLE + " VALUES(2,'test2')");
261 statement
266 Statement statement = conn.createStatement(); local
267 statement.execute("INSERT INTO " + FKSTRICT_TABLE
269 statement.execute("INSERT INTO " + FKSTRICT_TABL
276 Statement statement = conn.createStatement(); local
286 Statement statement = conn.createStatement(); local
293 Statement statement = conn.createStatement(); local
301 Statement statement = conn.createStatement(); local
312 Statement statement = conn.createStatement(); local
324 Statement statement = conn.createStatement(); local
340 Statement statement = conn.createStatement(); local
352 Statement statement = conn.createStatement(); local
370 Statement statement = conn.createStatement(); local
386 Statement statement = conn.createStatement(); local
396 Statement statement = conn.createStatement(); local
    [all...]
  /system/tools/aidl/
ast_java.h 125 struct Statement {
126 virtual ~Statement() = default;
130 struct StatementBlock : public Statement {
131 std::vector<Statement*> statements;
137 void Add(Statement* statement);
141 struct ExpressionStatement : public Statement {
233 struct VariableDeclaration : public Statement {
245 struct IfStatement : public Statement {
255 struct ReturnStatement : public Statement {
    [all...]
ast_cpp_unittest.cpp 166 Statement s(new LiteralExpression("foo"));
178 block.AddStatement(unique_ptr<AstNode>(new Statement("foo")));
179 block.AddStatement(unique_ptr<AstNode>(new Statement("bar")));
226 case2->AddStatement(unique_ptr<AstNode>{new Statement{"baz"}});
228 case1->AddStatement(unique_ptr<AstNode>{new Statement{"foo"}});
229 case1->AddStatement(unique_ptr<AstNode>{new Statement{"bar"}});
  /external/junit/src/org/junit/runners/
ParentRunner.java 36 import org.junit.runners.model.Statement;
139 * Constructs a {@code Statement} to run all of the tests in the test class. Override to add pre-/post-processing.
153 * @return {@code Statement}
155 protected Statement classBlock(final RunNotifier notifier) {
156 Statement statement= childrenInvoker(notifier); local
157 statement= withBeforeClasses(statement);
158 statement= withAfterClasses(statement);
    [all...]
  /external/junit/src/org/junit/experimental/theories/
Theories.java 20 import org.junit.runners.model.Statement;
66 public Statement methodBlock(final FrameworkMethod method) {
70 public static class TheoryAnchor extends Statement {
127 public Statement methodBlock(FrameworkMethod method) {
128 final Statement statement= super.methodBlock(method); local
129 return new Statement() {
133 statement.evaluate();
147 protected Statement methodInvoker(FrameworkMethod method, Object test) {
159 private Statement methodCompletesWithParameters
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
MultiThreadAccessTest.java 23 import java.sql.Statement;
39 private static Statement statement; field in class:MultiThreadAccessTest
52 statement = conn.createStatement();
64 statement.close();
76 statement.execute(DatabaseCreator.DROP_TABLE1);
79 statement.execute(DatabaseCreator.DROP_TABLE2);
82 statement.execute(DatabaseCreator.DROP_TABLE4);
85 statement.execute(DatabaseCreator.DROP_TABLE3);
90 statement.execute(DatabaseCreator.CREATE_TABLE3)
159 Statement statement = conn.createStatement(); local
207 Statement statement = conn.createStatement(); local
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteDatabaseTest.java 11 import java.sql.Statement;
40 Statement statement = shadowOf(database).getConnection().createStatement(); local
41 ResultSet resultSet = statement.executeQuery("SELECT name FROM table_name where id = "+id);
  /external/v8/src/ast/
ast-expression-rewriter.cc 31 void AstExpressionRewriter::VisitStatements(ZoneList<Statement*>* statements) {
33 AST_REWRITE_LIST_ELEMENT(Statement, statements, i);
34 // Not stopping when a jump statement is found.
42 // The variable statement visiting code may pass NULL expressions
97 AST_REWRITE_PROPERTY(Statement, node, statement);
103 AST_REWRITE_PROPERTY(Statement, node, then_statement);
104 AST_REWRITE_PROPERTY(Statement, node, else_statement);
125 AST_REWRITE_PROPERTY(Statement, node, statement);
    [all...]
prettyprinter.h 49 void FindStatements(ZoneList<Statement*>* statements);
87 virtual void PrintStatements(ZoneList<Statement*>* statements);
123 void PrintStatements(ZoneList<Statement*>* statements);
  /external/vogar/test/vogar/target/
TestRunnerRule.java 22 import org.junit.runners.model.Statement;
39 public Statement apply(Statement base, FrameworkMethod method, Object target) {

Completed in 533 milliseconds

12 3 4 5 6 7 8 910