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

12 3 4 5 6

  /build/tools/
java-layers.py 202 statements = [s.strip() for s in text.split(";")]
204 # statements. Anything else is either bad syntax that we don't care about
206 m = PACKAGE.match(statements[0])
214 for statement in statements[1:]:
  /frameworks/base/tools/aidl/
Type.cpp 600 elsepart->statements->Add(new MethodCall(parcel, "writeInt", 1,
605 ifpart->statements->Add(new MethodCall(parcel, "writeInt", 1,
607 ifpart->statements->Add(new MethodCall(TEXT_UTILS_TYPE, "writeToParcel",
623 elsepart->statements->Add(new Assignment(v, NULL_VALUE));
629 ifpart->statements->Add(new Assignment(v,
935 elsepart->statements->Add(new MethodCall(parcel, "writeInt", 1,
940 ifpart->statements->Add(new MethodCall(parcel, "writeInt", 1,
942 ifpart->statements->Add(new MethodCall(v, "writeToParcel", 2,
957 elsepart->statements->Add(new Assignment(v, NULL_VALUE));
963 ifpart->statements->Add(new Assignment(v
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
xmlreport.py 112 for line in analysis.statements:
129 class_lines = len(analysis.statements)
html.py 151 if lineno in analysis.statements:
171 elif lineno in analysis.statements:
  /external/chromium_org/v8/test/mjsunit/
delete-in-with.js 29 // objects from within 'with' statements.
  /external/chromium_org/v8/test/webkit/
for-in-avoid-duplicates.js 25 "This tests that for/in statements don't report properties that are in both an object and its prototype more than once."
try-try-return-finally-finally.js 25 "Tests what would happen if you have nested try-finally's with interesting control statements nested within them. The correct outcome is for this test to not crash during bytecompilation."
for-in-var-scope.js 25 "This tests that for/in statements properly scope a variable that's declared in one. "
  /external/ipsec-tools/src/racoon/
prsa_par.y 154 statements: label
155 statements statement
  /external/v8/test/mjsunit/
delete-in-with.js 29 // objects from within 'with' statements.
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_parser_extras.cpp 507 foreach_list_const(n, &this->statements) {
517 ast_node *statements)
521 if (statements != NULL) {
522 this->statements.push_degenerate_list_at_head(&statements->link);
  /external/mesa3d/src/glsl/
glsl_parser_extras.cpp 507 foreach_list_const(n, &this->statements) {
517 ast_node *statements)
521 if (statements != NULL) {
522 this->statements.push_degenerate_list_at_head(&statements->link);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MaterialLoader.java 430 List<Statement> statements = BlockLanguageParser.parse(in); local
432 for (Statement statement : statements){
444 list = new MaterialExtensionLoader().load(assetManager, key, matExts, statements);
  /external/mdnsresponder/mDNSShared/
dnsextd_parser.y 168 statements
360 statements: label
362 statements statement
  /external/chromium_org/v8/test/mjsunit/harmony/
generators-parsing.js 32 // Yield statements.
41 // Generators can have return statements also, which internally parse to a kind
  /external/chromium_org/v8/test/mjsunit/regress/
regress-990205.js 28 // We throw syntax errors early for invalid break and continue statements.
  /external/chromium_org/v8/test/webkit/fast/js/
parser-syntax-check.js 25 "This test checks that the following expressions or statements are valid ECMASCRIPT code or should throw parse error"
68 // some statements requires statement as argument, and
190 debug ("simple statements");
240 debug ("var and const statements");
  /external/junit/src/org/junit/runners/
ParentRunner.java 19 import org.junit.internal.runners.statements.RunAfters;
20 import org.junit.internal.runners.statements.RunBefores;
  /external/v8/test/mjsunit/regress/
regress-990205.js 28 // We throw syntax errors early for invalid break and continue statements.
  /frameworks/base/core/tests/coretests/src/android/database/
DatabasePerformanceTests.java 200 private String[] statements = new String[SIZE]; field in class:DatabasePerformanceTests.Perf1Test
209 statements[i] =
221 mDatabase.execSQL(statements[i]);
233 private String[] statements = new String[SIZE]; field in class:DatabasePerformanceTests.Perf2Test
242 statements[i] =
255 mDatabase.execSQL(statements[i]);
    [all...]
NewDatabasePerformanceTests.java 109 private String[] statements = new String[SIZE]; field in class:NewDatabasePerformanceTests.Insert1000
118 statements[i] =
129 mDatabase.execSQL(statements[i]);
141 private String[] statements = new String[SIZE]; field in class:NewDatabasePerformanceTests.InsertIndexed1000
150 statements[i] =
162 mDatabase.execSQL(statements[i]);
    [all...]
  /external/v8/src/
ast.cc 633 void AstVisitor::VisitStatements(ZoneList<Statement*>* statements) {
634 for (int i = 0; i < statements->length(); i++) {
635 Visit(statements->at(i));
985 ZoneList<Statement*>* statements,
988 statements_(statements),
    [all...]
  /cts/tools/dasm/src/dasm/
parser.cup 102 statement, statements, stmnt, super_spec, line_expr,
530 statements
548 /* ========== Statements in a method ========== */
550 statements ::= statements statement | statement ;
  /external/chromium_org/components/test/data/web_database/
version_45.sql 49 -- following statements are required for testing migration to version 46
version_45_invalid.sql 47 -- following statements are required for testing migration to version 46

Completed in 1463 milliseconds

12 3 4 5 6