HomeSort by relevance Sort by last modified time
    Searched refs:Statement (Results 76 - 100 of 398) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skia/src/sksl/
SkSLCFGGenerator.h 30 std::unique_ptr<Statement>* statement)
34 , fStatement(statement) {}
46 std::unique_ptr<Statement>* statement() const { function in struct:SkSL::BasicBlock::Node
51 void setStatement(std::unique_ptr<Statement> stmt) {
79 std::unique_ptr<Statement>* fStatement;
158 void addStatement(CFG& cfg, std::unique_ptr<Statement>* s);
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
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);
  /libcore/luni/src/test/java/libcore/java/sql/
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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
GenDecFile.py 89 Statement = CommentStr
114 Statement += TokenSpaceGuidCName + '.' + CName
115 Statement += '|' + DefaultValue
116 Statement += '|' + DatumType
117 Statement += '|' + Token
122 Statement += GenDecTailComment(Pcd.GetSupModuleList())
129 NewSectionDict[SortedArch] + [Statement]
131 NewSectionDict[SortedArch] = [Statement]
197 Statement = CommentStr
200 Statement += CName.ljust(LeftOffset) + ' = ' + Value
    [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 167 Statement s(new LiteralExpression("foo"));
179 block.AddStatement(unique_ptr<AstNode>(new Statement("foo")));
180 block.AddStatement(unique_ptr<AstNode>(new Statement("bar")));
227 case2->AddStatement(unique_ptr<AstNode>{new Statement{"baz"}});
229 case1->AddStatement(unique_ptr<AstNode>{new Statement{"foo"}});
230 case1->AddStatement(unique_ptr<AstNode>{new Statement{"bar"}});
  /external/junit/src/main/java/org/junit/runners/
ParentRunner.java 39 import org.junit.runners.model.Statement;
165 * Constructs a {@code Statement} to run all of the tests in the test class.
172 * construct a statement that will:
187 * @return {@code Statement}
189 protected Statement classBlock(final RunNotifier notifier) {
190 Statement statement = childrenInvoker(notifier); local
192 statement = withBeforeClasses(statement);
193 statement = withAfterClasses(statement)
    [all...]
  /external/junit/src/main/java/org/junit/rules/
Stopwatch.java 5 import org.junit.runners.model.Statement;
147 public final Statement apply(Statement base, Description description) {
TestWatcher.java 9 import org.junit.runners.model.Statement;
47 public Statement apply(final Statement base, final Description description) {
48 return new Statement() {
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIALineNumber.cpp 74 BOOL Statement = 0;
75 return (S_OK == LineNumber->get_statement(&Statement)) ? Statement : false;
  /external/vogar/test/vogar/target/
TestRunnerRule.java 23 import org.junit.runners.model.Statement;
40 public Statement apply(Statement base, Description description) {
  /external/deqp/framework/randomshaders/
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/junit/src/main/java/org/junit/experimental/theories/
Theories.java 18 import org.junit.runners.model.Statement;
164 public Statement methodBlock(final FrameworkMethod method) {
168 public static class TheoryAnchor extends Statement {
226 public Statement methodBlock(FrameworkMethod method) {
227 final Statement statement = super.methodBlock(method); local
228 return new Statement() {
232 statement.evaluate();
246 protected Statement methodInvoker(FrameworkMethod method, Object test) {
263 private Statement methodCompletesWithParameters
    [all...]
  /external/v8/src/ast/
ast-expression-rewriter.h 33 virtual void VisitStatements(ZoneList<Statement*>* statements);
  /libcore/dalvik/src/test/java/dalvik/system/
CloseGuardTest.java 22 import org.junit.runners.model.Statement;
35 private Statement preserveEnabledState(final Statement base, Description description) {
36 return new Statement() {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
FormDisplay.c 349 FORM_DISPLAY_ENGINE_STATEMENT *Statement;
351 Statement = MenuOption->ThisTag;
368 if (Statement->OpCode->OpCode == EFI_IFR_TEXT_OP) {
369 TestOp = (EFI_IFR_TEXT *) Statement->OpCode;
377 if ((Statement->OpCode->OpCode == EFI_IFR_SUBTITLE_OP) ||
378 (Statement->OpCode->OpCode == EFI_IFR_REF_OP) ||
379 (Statement->OpCode->OpCode == EFI_IFR_PASSWORD_OP) ||
380 (Statement->OpCode->OpCode == EFI_IFR_ACTION_OP) ||
381 (Statement->OpCode->OpCode == EFI_IFR_RESET_BUTTON_OP) ||
385 ((Statement->OpCode->OpCode == EFI_IFR_TEXT_OP) && (Size == 0))
    [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...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
UefiIfrParser.c 97 Initialize Statement header members.
103 @return The Statement.
113 FORM_BROWSER_STATEMENT *Statement;
118 // We are currently not in a Form Scope, so just skip this Statement
123 Statement = &FormSet->StatementBuffer[mStatementIndex];
126 InitializeListHead (&Statement->DefaultListHead);
127 InitializeListHead (&Statement->OptionListHead);
129 Statement->Signature = FORM_BROWSER_STATEMENT_SIGNATURE;
131 Statement->Operand = ((EFI_IFR_OP_HEADER *) OpCodeData)->OpCode;
134 CopyMem (&Statement->Prompt, &StatementHdr->Prompt, sizeof (EFI_STRING_ID));
    [all...]
  /external/v8/src/parsing/
parser.h 191 typedef v8::internal::Statement* Statement;
192 typedef ZoneList<v8::internal::Statement*>* StatementList;
307 void ParseModuleItemList(ZoneList<Statement*>* body, bool* ok);
308 Statement* ParseModuleItem(bool* ok);
311 Statement* ParseExportDeclaration(bool* ok);
312 Statement* ParseExportDefault(bool* ok);
340 Statement* RewriteSwitchStatement(Expression* tag,
345 Statement* RewriteTryStatement(Block* try_block, Block* catch_block,
350 ZoneList<Statement*>* body
1192 BreakableStatement* statement() { return statement_; } function in class:v8::internal::BASE_EMBEDDED
    [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/vogar/src/vogar/target/junit/
ParentRunnerHelper.java 26 import org.junit.runners.model.Statement;
37 * Runs a {@link Statement} that represents a leaf (aka atomic) test, allowing the test or
41 Statement statement, Description description, RunNotifier notifier) {
45 statement.evaluate();

Completed in 1264 milliseconds

1 2 34 5 6 7 8 91011>>