HomeSort by relevance Sort by last modified time
    Searched defs:Statement (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/junit/src/org/junit/runners/model/
Statement.java 11 public abstract class Statement {
  /external/deqp/framework/randomshaders/
rsgStatement.hpp 37 class Statement
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; }
71 class DeclarationStatement : public Statement
77 Statement* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; }
88 class BlockStatement : public Statement
97 Statement* createNextChild (GeneratorState& state)
    [all...]
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...]
  /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...]
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIALineNumber.cpp 73 BOOL Statement = 0;
74 return (S_OK == LineNumber->get_statement(&Statement)) ? Statement : false;
  /system/tools/aidl/
ast_cpp.cpp 197 void StatementBlock::AddStatement(unique_ptr<AstNode> statement) {
198 statements_.push_back(std::move(statement));
201 void StatementBlock::AddStatement(AstNode* statement) {
202 statements_.emplace_back(statement);
208 statements_.push_back(unique_ptr<AstNode>(new Statement(expression_str)));
217 for (const auto& statement : statements_) {
218 statement->Write(to);
348 Statement::Statement(unique_ptr<AstNode> expression)
351 Statement::Statement(AstNode* expression) : expression_(expression) {
    [all...]
ast_cpp.h 181 void AddStatement(std::unique_ptr<AstNode> statement);
182 void AddStatement(AstNode* statement); // Takes ownership
223 // MethodImpl retains ownership of the statement block.
243 // Add a case statement and return a pointer code block corresponding
244 // to the case. The switch statement will add a break statement
306 class Statement : public AstNode {
308 explicit Statement(std::unique_ptr<AstNode> expression);
309 explicit Statement(AstNode* expression); // Takes possession.
310 explicit Statement(const std::string& expression)
    [all...]
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...]
  /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...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 875 /// matches both the compound statement '{ ++a; }' and '++a'.
1067 /// Example matches T(t) in return statement of f
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 57 Statement,
117 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
127 return E.getKind() == Statement;
203 // Get statement end of which triggered the destructor call.
297 /// CFGTerminator - Represents CFGBlock terminator statement.
301 /// statement is the same statement that branches control flow in evaluation
331 /// (2) A "terminator" statement (not in the set of statements).
338 /// within the set of statements in the block (usually the last statement).
408 /// refer to the loop statement for such blocks (and be null otherwise)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp 509 * expression whose GLSL type corresponds to the C++ type T, and a Statement
510 * represents a statement.
514 * is a shared pointer to a Statement.
522 class Statement;
640 * \brief A statement or declaration.
646 * As a bit of a kludge, a Statement object can also represent a declaration:
651 class Statement
654 virtual ~Statement (void) { }
655 //! Execute the statement, modifying the environment of `ctx`
658 //! Add the functions used in this statement to `dst`
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 530 * expression whose GLSL type corresponds to the C++ type T, and a Statement
531 * represents a statement.
535 * is a shared pointer to a Statement.
543 class Statement;
661 * \brief A statement or declaration.
667 * As a bit of a kludge, a Statement object can also represent a declaration:
672 class Statement
675 virtual ~Statement (void) { }
676 //! Execute the statement, modifying the environment of `ctx`
679 //! Add the functions used in this statement to `dst`
    [all...]
  /external/v8/src/parsing/
preparser.h 377 // Creates expression statement from expression.
    [all...]
  /external/v8/src/debug/
debug.js 85 Statement: 0,
255 ? Debug.BreakPositionAlignment.Statement : opt_position_alignment;
477 ? Debug.BreakPositionAlignment.Statement : opt_position_aligment;
638 ? Debug.BreakPositionAlignment.Statement : opt_position_alignment;
    [all...]
  /external/v8/src/ast/
ast.h 110 class Statement;
236 class Statement : public AstNode {
238 explicit Statement(Zone* zone, int position) : AstNode(position) {}
396 class BreakableStatement : public Statement {
403 // The labels associated with this statement. May be NULL;
426 : Statement(zone, position),
453 ZoneList<Statement*>* statements() { return &statements_; }
479 ZoneList<Statement*> statements_;
642 Statement* body() const { return body_; }
643 void set_body(Statement* s) { body_ = s;
1013 Statement* statement() const { return statement_; } function in class:v8::internal::final
1275 Statement* statement() const { return statement_; } function in class:v8::internal::final
    [all...]
  /external/testng/ant/3rdparty/
cobertura.jar 
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
junit.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/javacc/javacc/5.0/
javacc-5.0.jar 
  /external/libgdx/extensions/gdx-jnigen/libs/
javaparser-core-2.3.0.jar 
  /external/libphonenumber/lib/
junit-4.8.1.jar 
  /external/opencv3/modules/java/pure_test/lib/
junit-4.11.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.10/
junit-4.10.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.8.2/
junit-4.8.2.jar 

Completed in 379 milliseconds

1 2 3 4