HomeSort by relevance Sort by last modified time
    Searched full:statement (Results 1 - 25 of 4811) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Parser/
bad-control.c 4 break; /* expected-error {{'break' statement not in loop or switch statement}} */
8 continue; /* expected-error {{'continue' statement not in loop statement}} */
12 switch(({ if (first) { first = 0; break; } 1; })) { // expected-error {{'break' statement not in loop or switch statement}}
19 for (({break;});;); // expected-error {{'break' statement not in loop or switch statement}}
23 for (({continue;});;); // expected-error {{'continue' statement not in loop statement}}
    [all...]
cxx11-stmt-attributes.cpp 30 alignas(8) ; // expected-error {{'alignas' attribute cannot be applied to a statement}}
31 [[noreturn]] { } // expected-error {{'noreturn' attribute cannot be applied to a statement}}
32 [[noreturn]] if (0) { } // expected-error {{'noreturn' attribute cannot be applied to a statement}}
33 [[noreturn]] for (;;); // expected-error {{'noreturn' attribute cannot be applied to a statement}}
34 [[noreturn]] do { // expected-error {{'noreturn' attribute cannot be applied to a statement}}
45 [[carries_dependency]] break; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
57 [[carries_dependency]] ; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
58 [[carries_dependency]] { } // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
59 [[carries_dependency]] if (0) { } // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
60 [[carries_dependency]] for (;;); // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
    [all...]
  /external/junit/src/org/junit/rules/
RunRules.java 4 import org.junit.runners.model.Statement;
7 * Runs a collection of rules on a statement.
9 public class RunRules extends Statement {
10 private final Statement statement; field in class:RunRules
12 public RunRules(Statement base, Iterable<TestRule> rules, Description description) {
13 statement= applyAll(base, rules, description);
18 statement.evaluate();
21 private static Statement applyAll(Statement result, Iterable<TestRule> rules
    [all...]
ExternalResource.java 4 import org.junit.runners.model.Statement;
36 public Statement apply(Statement base, Description description) {
37 return statement(base);
40 private Statement statement(final Statement base) { method in class:ExternalResource
41 return new Statement() {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k/
op68000.d 6 .*statement `tstl %a0' ignored
7 .*statement `tstl %a0@\(8,%d0:w:2\)' ignored
8 .*statement `tstl %a0@\(8,%d0:w:4\)' ignored
9 .*statement `tstl %a0@\(8,%d0:w:8\)' ignored
10 .*statement `tstl %a0@\(8,%d0:l:2\)' ignored
11 .*statement `tstl %a0@\(8,%d0:l:4\)' ignored
12 .*statement `tstl %a0@\(8,%d0:l:8\)' ignored
13 .*statement `tstl %a0@\(%d0:w:2\)' ignored
14 .*statement `tstl \(8,%a0,%d0\*2\)' ignored
15 .*statement `tstl \(8,%a0,%d0\*4\)' ignore
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Trace.java 10 * Callback to trace (ie log) one SQL statement.
12 * @param stmt SQL statement string
Profile.java 10 * Callback to profile (ie log) one SQL statement
13 * @param stmt SQL statement string
  /external/v8/test/message/
strict-with.out 1 *%(basename)s:32: SyntaxError: Strict mode code may not include a with statement
4 SyntaxError: Strict mode code may not include a with statement
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
Statement.java 22 * An immutable value type representing a statement, consisting of a source, target, and relation.
35 * {@link Statement} with {@link #getSource} equal to the input parameter, {@link #getRelation}
47 public final class Statement {
53 private Statement(AbstractAsset source, AbstractAsset target, Relation relation) {
60 * Returns the source asset of the statement.
68 * Returns the target asset of the statement.
76 * Returns the relation of the statement.
84 * Creates a new Statement object for the specified target asset and relation. For example:
89 * Statement statement = Statement.create(asset, relation)
106 Statement statement = (Statement) o; local
131 StringBuilder statement = new StringBuilder(); local
    [all...]
  /prebuilts/go/darwin-x86/test/syntax/
topexpr.go 9 fmt.Printf("hello") // ERROR "non-declaration statement outside function body|expected declaration"
14 x++ // ERROR "non-declaration statement outside function body|expected declaration"
19 x,y := 1, 2 // ERROR "non-declaration statement outside function body|expected declaration"
  /prebuilts/go/linux-x86/test/syntax/
topexpr.go 9 fmt.Printf("hello") // ERROR "non-declaration statement outside function body|expected declaration"
14 x++ // ERROR "non-declaration statement outside function body|expected declaration"
19 x,y := 1, 2 // ERROR "non-declaration statement outside function body|expected declaration"
  /prebuilts/maven_repo/android/com/android/support/test/rules/0.2/
rules-0.2-sources.jar 
  /external/chromium-libpac/test/js-unittest/
ends_with_statement_no_semicolon.js 1 // Ends with a statement, and no terminal newline.
  /external/clang/test/Sema/
default.c 5 default: // expected-error {{not in switch statement}}
  /external/clang/test/SemaCXX/
switch.cpp 73 case 1: // expected-error {{'case' statement not in switch statement}}
74 break; // expected-error {{'break' statement not in loop or switch statement}}
75 default: // expected-error {{'default' statement not in switch statement}}
76 continue; // expected-error {{'continue' statement not in loop statement}}
81 case 2: // expected-error {{'case' statement not in switch statement}}
    [all...]
  /external/junit/src/org/junit/internal/runners/statements/
RunBefores.java 9 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) {
Fail.java 3 import org.junit.runners.model.Statement;
6 public class Fail extends Statement {
FailOnTimeout.java 6 import org.junit.runners.model.Statement;
8 public class FailOnTimeout extends Statement {
9 private final Statement fOriginalStatement;
13 public FailOnTimeout(Statement originalStatement, long timeout) {
49 private final Statement fStatement;
55 public StatementThread(Statement statement) {
56 fStatement= statement;
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteProgramTest.java 59 SQLiteStatement statement; local
61 statement = mDatabase.compileStatement("SELECT num1 FROM test WHERE num2 = ?;");
62 statement.bindLong(1, 30);
63 assertEquals(12, statement.simpleQueryForLong());
66 statement.bindDouble(1, 589.0);
67 assertEquals(213, statement.simpleQueryForLong());
68 statement.close();
70 statement = mDatabase.compileStatement("SELECT text1 FROM test WHERE text2 = ?;");
72 statement.bindDouble(1, 589.0); // Wrong binding
74 statement.simpleQueryForString()
126 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test " + local
156 SQLiteStatement statement = mDatabase.compileStatement("INSERT INTO test " + local
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
InsertFunctionalityTest.java 23 import java.sql.Statement;
37 private static Statement statement = null; field in class:InsertFunctionalityTest
43 statement = conn.createStatement();
50 statement.close();
63 statement
67 statement
71 statement
75 statement
79 statement
    [all...]
UpdateFunctionalityTest2.java 26 import java.sql.Statement;
40 private static Statement statement = null; field in class:UpdateFunctionalityTest2
47 statement = conn.createStatement();
59 statement.close();
72 statement
76 statement
80 statement
84 statement
88 statement
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t045dfabug.g 11 | modifier+ statement
18 statement
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
class_definition.py 27 statement = compound_statement.children[0]
28 if statement.type == symbol.classdef:
29 return cls(statement.type, statement.children)
30 elif (statement.type == symbol.decorated and
31 statement.children[-1].type == symbol.classdef):
32 return cls(statement.type, statement.children)
function_definition.py 27 statement = compound_statement.children[0]
28 if statement.type == symbol.funcdef:
29 return cls(statement.type, statement.children)
30 elif (statement.type == symbol.decorated and
31 statement.children[-1].type == symbol.funcdef):
32 return cls(statement.type, statement.children)
  /libcore/ojluni/src/main/java/java/sql/
Statement.java 29 * <P>The object used for executing a static SQL statement
32 * By default, only one <code>ResultSet</code> object per <code>Statement</code>
36 * different <code>Statement</code> objects. All execution methods in the
37 * <code>Statement</code> interface implicitly close a statment's current
43 public interface Statement extends Wrapper, AutoCloseable {
46 * Executes the given SQL statement, which returns a single
51 * @param sql an SQL statement to be sent to the database, typically a
52 * static SQL <code>SELECT</code> statement
56 * this method is called on a closed <code>Statement</code>, the given
57 * SQL statement produces anything other than a singl
    [all...]

Completed in 897 milliseconds

1 2 3 4 5 6 7 8 91011>>