HomeSort by relevance Sort by last modified time
    Searched refs:statement (Results 101 - 125 of 1157) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/test/MC/Mips/
set-at-noat-bad-syntax.s 26 # CHECK: error: unexpected token, expected end of statement
29 # CHECK: error: unexpected token, expected end of statement
mips_directives_bad.s 5 # CHECK: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
37 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
42 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
47 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
52 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
57 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
cloog.h 53 #include <cloog/statement.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
cloog.h 53 #include <cloog/statement.h>
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug128.go 21 bug127.go:5: switch statement must have case labels
22 bug127.go:9: switch statement must have case labels
bug000.go 19 bug0.go:8: case statement out of place
bug086.go 13 // we should not be able to return successfully w/o a return statement
bug136.go 10 L: ; // ';' terminates empty statement => L does not apply to for loop
bug277.go 65 bug277.go:53: non-declaration statement outside function body
66 bug277.go:54: non-declaration statement outside function body
69 bug277.go:57: non-declaration statement outside function body
70 bug277.go:58: non-declaration statement outside function body
  /prebuilts/go/darwin-x86/test/
switch2.go 28 case 0: f() case 0: // ERROR "unexpected case at end of statement"
33 case 0: f() default: // ERROR "unexpected default at end of statement"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug128.go 21 bug127.go:5: switch statement must have case labels
22 bug127.go:9: switch statement must have case labels
  /prebuilts/go/linux-x86/test/
switch2.go 28 case 0: f() case 0: // ERROR "unexpected case at end of statement"
33 case 0: f() default: // ERROR "unexpected default at end of statement"
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 804 // statement if it returns or throws (or doesn't return or throw in some
806 #define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \
807 if (::testing::internal::AlwaysTrue()) { statement; }
809 #define GTEST_TEST_THROW_(statement, expected_exception, fail) \
814 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
820 gtest_msg = "Expected: " #statement " throws an exception of type " \
826 gtest_msg = "Expected: " #statement " throws an exception of type " \
834 #define GTEST_TEST_NO_THROW_(statement, fail) \
838 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
841 gtest_msg = "Expected: " #statement " doesn't throw an exception.\n"
    [all...]
  /external/deqp/external/vulkancts/scripts/
verify_submission.py 42 STATEMENT_PATTERN = "STATEMENT-*"
49 def __init__ (self, basePath, statement, testLogs, gitStatus, gitLog, patches, otherItems):
51 self.statement = statement
79 statement = None
88 assert statement == None
89 statement = item
103 return PackageDescription(packagePath, statement, testLogs, gitStatus, gitLog, patches, otherItems)
165 if package.statement != None:
166 statementPath = os.path.join(package.basePath, package.statement)
    [all...]
  /external/autotest/client/cros/multimedia/
browser_facade_native.py 83 def execute_javascript(self, tab_descriptor, statement, timeout):
84 """Executes a JavaScript statement on the given tab.
86 @param tab_descriptor: Indicate on which tab to execute the statement.
87 @param statement: Indiate what statement to execute.
88 @param timeout: Indicate the timeout of the statement.
91 tab_descriptor, statement, timeout)
  /external/autotest/server/cros/multimedia/
browser_facade_adapter.py 88 def execute_javascript(self, tab_descriptor, statement, timeout):
89 """Executes a JavaScript statement on the given tab.
91 @param tab_descriptor: Indicate on which tab to execute the statement.
92 @param statement: Indiate what statement to execute.
93 @param timeout: Indicate the timeout of the statement.
96 tab_descriptor, statement, timeout)
  /external/junit/src/main/java/org/junit/rules/
Timeout.java 5 import org.junit.runners.model.Statement;
125 * Creates a {@link Statement} that will run the given
126 * {@code statement}, and timeout the operation based
132 protected Statement createFailOnTimeoutStatement(
133 Statement statement) throws Exception {
136 .build(statement);
139 public Statement apply(Statement base, Description description) {
143 return new Statement() {
    [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/skia/src/sksl/ast/
SkSLASTForStatement.h 21 std::unique_ptr<ASTStatement> statement)
26 , fStatement(std::move(statement)) {}
  /external/skia/src/sksl/ir/
SkSLForStatement.h 18 * A 'for' statement.
20 struct ForStatement : public Statement {
21 ForStatement(Position position, std::unique_ptr<Statement> initializer,
23 std::unique_ptr<Statement> statement, std::shared_ptr<SymbolTable> symbols)
29 , fStatement(std::move(statement)) {}
51 const std::unique_ptr<Statement> fInitializer;
54 const std::unique_ptr<Statement> fStatement;
56 typedef Statement INHERITED;
  /external/v8/src/
source-position-table.h 27 PositionTableEntry(int offset, int64_t source, bool statement)
28 : code_offset(offset), source_position(source), is_statement(statement) {}
  /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();
ValidateTestMethodWhenRunBlockJUnit4ClassRunner.java 24 import org.junit.runners.model.Statement;
48 protected Statement methodInvoker(final FrameworkMethod frameworkMethod, Object test) {
50 Statement statement = super.methodInvoker(frameworkMethod, test); local
52 // Wrap the Statement that will invoke the method with one that will validate that the
54 return new ValidateMethodStatement(frameworkMethod, statement);
58 * A {@link Statement} that validates the underlying {@link FrameworkMethod}
60 protected static class ValidateMethodStatement extends Statement {
62 private final Statement methodInvoker;
64 public ValidateMethodStatement(FrameworkMethod frameworkMethod, Statement methodInvoker)
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
StressTest.java 25 import java.sql.Statement;
40 private static Statement statement; field in class:StressTest
46 statement = conn.createStatement();
53 statement.close();
66 statement.execute(DatabaseCreator.DROP_TABLE2);
69 statement.execute(DatabaseCreator.CREATE_TABLE2);
78 statement.execute(DatabaseCreator.DROP_TABLE2);
100 // statement.execute("DELETE FROM " + DatabaseCreator.TEST_TABLE2);
175 ResultSet rs = statement
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
deferNoReturn.go 8 // statement will compile correctly.

Completed in 388 milliseconds

1 2 3 45 6 7 8 91011>>