Home
last modified time | relevance | path

Searched refs:Statement (Results 1 – 25 of 154) sorted by relevance

1234567

/external/deqp/framework/randomshaders/
DrsgStatement.hpp37 class Statement class
40 Statement (void);
41 virtual ~Statement (void);
43 virtual Statement* createNextChild (GeneratorState& state) = DE_NULL;
55 class ExpressionStatement : public Statement
61 Statement* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; } in createNextChild()
71 class DeclarationStatement : public Statement
77 Statement* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; } in createNextChild()
88 class BlockStatement : public Statement
97 Statement* createNextChild (GeneratorState& state);
[all …]
DrsgStatement.cpp45 template <class T> Statement* create (GeneratorState& state) { return new T(state); } in create()
50 Statement* (*create) (GeneratorState& state);
101 Statement* createStatement (GeneratorState& state) in createStatement()
108 Statement::Statement (void) in Statement() function in rsg::Statement
112 Statement::~Statement (void) in ~Statement()
155 for (vector<Statement*>::iterator i = m_children.begin(); i != m_children.end(); i++) in ~BlockStatement()
160 void BlockStatement::addChild (Statement* statement) in addChild()
173 Statement* BlockStatement::createNextChild (GeneratorState& state) in createNextChild()
178 Statement* child = createStatement(state); in createNextChild()
207 …for (vector<Statement*>::const_reverse_iterator i = m_children.rbegin(); i != m_children.rend(); i… in tokenize()
[all …]
/external/v8/src/parsing/
Dpreparser.cc173 PreParser::Statement PreParser::ParseStatementListItem(bool* ok) { in ParseStatementListItem()
232 Statement statement = ParseStatementListItem(ok); in ParseStatementList()
309 if (!*ok) return Statement::Default(); \
315 PreParser::Statement PreParser::ParseStatement(bool* ok) { in ParseStatement()
322 return Statement::Default(); in ParseStatement()
328 PreParser::Statement PreParser::ParseSubStatement(bool* ok) { in ParseSubStatement()
363 return Statement::Default(); in ParseSubStatement()
366 return Statement::Default(); in ParseSubStatement()
403 Statement statement = ParseFunctionDeclaration(CHECK_OK); in ParseSubStatement()
410 return Statement::Default(); in ParseSubStatement()
[all …]
Dparser.h350 typedef ZoneList<v8::internal::Statement*>* StatementList;
533 ZoneList<v8::internal::Statement*>* NewStatementList(int size, Zone* zone) { in NewStatementList()
534 return new(zone) ZoneList<v8::internal::Statement*>(size, zone); in NewStatementList()
539 ZoneList<v8::internal::Statement*>* body, bool* ok);
575 V8_INLINE ZoneList<Statement*>* ParseEagerFunctionBody(
728 void* ParseStatementList(ZoneList<Statement*>* body, int end_token, bool* ok);
729 Statement* ParseStatementListItem(bool* ok);
730 void* ParseModuleItemList(ZoneList<Statement*>* body, bool* ok);
731 Statement* ParseModuleItem(bool* ok);
733 Statement* ParseImportDeclaration(bool* ok);
[all …]
Drewriter.cc41 void Process(ZoneList<Statement*>* statements);
57 Statement* AssignUndefinedBefore(Statement* s);
70 Statement* replacement_;
93 Statement* Processor::AssignUndefinedBefore(Statement* s) { in AssignUndefinedBefore()
107 void Processor::Process(ZoneList<Statement*>* statements) { in Process()
344 ZoneList<Statement*>* body = function->body(); in DECLARATION_NODE_LIST()
366 Statement* result_statement = in DECLARATION_NODE_LIST()
380 ZoneList<Statement*>* body = block->statements(); in Rewrite()
393 Statement* completion = node_factory->NewExpressionStatement( in Rewrite()
Dpreparser.h966 typedef PreParserStatement Statement; typedef
1029 Statement ParseStatementListItem(bool* ok);
1032 Statement ParseStatement(bool* ok);
1033 Statement ParseSubStatement(bool* ok);
1034 Statement ParseFunctionDeclaration(bool* ok);
1035 Statement ParseClassDeclaration(bool* ok);
1036 Statement ParseBlock(bool* ok);
1037 Statement ParseVariableStatement(VariableDeclarationContext var_context,
1039 Statement ParseVariableDeclarations(VariableDeclarationContext var_context,
1045 Statement ParseExpressionOrLabelledStatement(bool* ok);
[all …]
/external/junit/src/org/junit/runners/
DBlockJUnit4ClassRunner.java27 import org.junit.runners.model.Statement;
230 protected Statement methodBlock(FrameworkMethod method) { in methodBlock()
243 Statement statement= methodInvoker(method, test); in methodBlock()
259 protected Statement methodInvoker(FrameworkMethod method, Object test) { in methodInvoker()
272 protected Statement possiblyExpectingExceptions(FrameworkMethod method, in possiblyExpectingExceptions()
273 Object test, Statement next) { in possiblyExpectingExceptions()
287 protected Statement withPotentialTimeout(FrameworkMethod method, in withPotentialTimeout()
288 Object test, Statement next) { in withPotentialTimeout()
301 protected Statement withBefores(FrameworkMethod method, Object target, in withBefores()
302 Statement statement) { in withBefores()
[all …]
DParentRunner.java36 import org.junit.runners.model.Statement;
155 protected Statement classBlock(final RunNotifier notifier) { in classBlock()
156 Statement statement= childrenInvoker(notifier); in classBlock()
168 protected Statement withBeforeClasses(Statement statement) { in withBeforeClasses()
182 protected Statement withAfterClasses(Statement statement) { in withAfterClasses()
199 private Statement withClassRules(Statement statement) { in withClassRules()
218 protected Statement childrenInvoker(final RunNotifier notifier) { in childrenInvoker()
219 return new Statement() { in childrenInvoker()
258 protected final void runLeaf(Statement statement, Description description,
299 Statement statement= classBlock(notifier);
/external/junit/src/org/junit/rules/
DExternalResource.java4 import org.junit.runners.model.Statement;
36 public Statement apply(Statement base, Description description) { in apply()
40 private Statement statement(final Statement base) { in statement()
41 return new Statement() { in statement()
DRunRules.java4 import org.junit.runners.model.Statement;
9 public class RunRules extends Statement {
10 private final Statement statement;
12 public RunRules(Statement base, Iterable<TestRule> rules, Description description) { in RunRules()
21 private static Statement applyAll(Statement result, Iterable<TestRule> rules, in applyAll()
DExpectedException.java11 import org.junit.runners.model.Statement;
59 public Statement apply(Statement base, in apply()
100 private class ExpectedExceptionStatement extends Statement {
101 private final Statement fNext;
103 public ExpectedExceptionStatement(Statement base) { in ExpectedExceptionStatement()
DVerifier.java4 import org.junit.runners.model.Statement;
29 public Statement apply(final Statement base, Description description) { in apply()
30 return new Statement() { in apply()
DTestWatcher.java5 import org.junit.runners.model.Statement;
41 public Statement apply(final Statement base, final Description description) { in apply()
42 return new Statement() { in apply()
DTestWatchman.java5 import org.junit.runners.model.Statement;
46 public Statement apply(final Statement base, final FrameworkMethod method, in apply()
48 return new Statement() { in apply()
DTestRule.java4 import org.junit.runners.model.Statement;
53 Statement apply(Statement base, Description description); in apply()
DMethodRule.java5 import org.junit.runners.model.Statement;
39 Statement apply(Statement base, FrameworkMethod method, Object target); in apply()
/external/junit/src/org/junit/internal/runners/statements/
DFailOnTimeout.java6 import org.junit.runners.model.Statement;
8 public class FailOnTimeout extends Statement {
9 private final Statement fOriginalStatement;
13 public FailOnTimeout(Statement originalStatement, long timeout) { in FailOnTimeout()
49 private final Statement fStatement;
55 public StatementThread(Statement statement) { in StatementThread()
DRunBefores.java9 import org.junit.runners.model.Statement;
11 public class RunBefores extends Statement {
12 private final Statement fNext;
18 public RunBefores(Statement next, List<FrameworkMethod> befores, Object target) { in RunBefores()
DExpectException.java7 import org.junit.runners.model.Statement;
9 public class ExpectException extends Statement {
10 private Statement fNext;
13 public ExpectException(Statement next, Class<? extends Throwable> expected) { in ExpectException()
DRunAfters.java11 import org.junit.runners.model.Statement;
13 public class RunAfters extends Statement {
14 private final Statement fNext;
20 public RunAfters(Statement next, List<FrameworkMethod> afters, Object target) { in RunAfters()
/external/v8/src/ast/
Dast-expression-rewriter.cc31 void AstExpressionRewriter::VisitStatements(ZoneList<Statement*>* statements) { in VisitStatements()
33 AST_REWRITE_LIST_ELEMENT(Statement, statements, i); in VisitStatements()
97 AST_REWRITE_PROPERTY(Statement, node, statement); in VisitSloppyBlockFunctionStatement()
103 AST_REWRITE_PROPERTY(Statement, node, then_statement); in VisitIfStatement()
104 AST_REWRITE_PROPERTY(Statement, node, else_statement); in VisitIfStatement()
125 AST_REWRITE_PROPERTY(Statement, node, statement); in VisitWithStatement()
140 AST_REWRITE_PROPERTY(Statement, node, body); in VisitDoWhileStatement()
146 AST_REWRITE_PROPERTY(Statement, node, body); in VisitWhileStatement()
152 AST_REWRITE_PROPERTY(Statement, node, init); in VisitForStatement()
158 AST_REWRITE_PROPERTY(Statement, node, next); in VisitForStatement()
[all …]
/external/junit/src/org/junit/experimental/theories/
DTheories.java20 import org.junit.runners.model.Statement;
66 public Statement methodBlock(final FrameworkMethod method) { in methodBlock()
70 public static class TheoryAnchor extends Statement {
127 public Statement methodBlock(FrameworkMethod method) { in runWithCompleteAssignment()
128 final Statement statement= super.methodBlock(method); in runWithCompleteAssignment()
129 return new Statement() { in runWithCompleteAssignment()
147 protected Statement methodInvoker(FrameworkMethod method, Object test) { in runWithCompleteAssignment()
159 private Statement methodCompletesWithParameters(
161 return new Statement() {
/external/vogar/test/vogar/testing/
DInterceptOutputStreamsTest.java26 import org.junit.runners.model.Statement;
61 Statement statement = new Statement() { in testApply()
97 Statement statement = new Statement() { in testApply_NotIntercepting()
119 Statement statement = new Statement() { in testApply_Nesting()
/external/icu/android_icu4j/cts-coverage/src/main/tests/android/icu/cts/coverage/rules/
DULocaleDefaultRule.java21 import org.junit.runners.model.Statement;
35 public Statement apply(final Statement base, FrameworkMethod method, Object target) { in apply()
40 return new Statement() { in apply()
/external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
DIcuTestFmwkRunner.java26 import org.junit.runners.model.Statement;
37 private static final Statement EMPTY_STATEMENT = new Statement() {
119 Statement statement; in runChild()
123 statement = new Statement() { in runChild()

1234567