HomeSort by relevance Sort by last modified time
    Searched refs:Variable (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /frameworks/base/tools/aidl/
Type.h 48 virtual void WriteToParcel(StatementBlock* addTo, Variable* v,
49 Variable* parcel, int flags);
50 virtual void CreateFromParcel(StatementBlock* addTo, Variable* v,
51 Variable* parcel, Variable** cl);
52 virtual void ReadFromParcel(StatementBlock* addTo, Variable* v,
53 Variable* parcel, Variable** cl);
57 virtual void WriteArrayToParcel(StatementBlock* addTo, Variable* v,
58 Variable* parcel, int flags)
    [all...]
Type.cpp 228 Type::WriteToParcel(StatementBlock* addTo, Variable* v, Variable* parcel, int flags)
237 Type::CreateFromParcel(StatementBlock* addTo, Variable* v, Variable* parcel, Variable**)
246 Type::ReadFromParcel(StatementBlock* addTo, Variable* v, Variable* parcel, Variable**)
255 Type::WriteArrayToParcel(StatementBlock* addTo, Variable* v, Variable* parcel, int flags
    [all...]
generate_java.h 24 Variable* Get(Type* type);
25 Variable* Get(int index);
27 vector<Variable*> m_vars;
generate_java_rpc.cpp 33 Variable* v, Variable* data, Variable** cl);
34 static void generate_new_array(Type* t, StatementBlock* addTo, Variable* v, Variable* from);
35 static void generate_write_to_data(Type* t, StatementBlock* addTo, Expression* k, Variable* v,
36 Variable* data);
95 Variable* actionParam;
96 Variable* requestParam;
97 Variable* rpcContextParam
    [all...]
generate_java_binder.cpp 15 Variable* transact_code;
16 Variable* transact_data;
17 Variable* transact_reply;
18 Variable* transact_flags;
36 new Variable(STRING_TYPE, "DESCRIPTOR"));
65 this->transact_code = new Variable(INT_TYPE, "code");
66 this->transact_data = new Variable(PARCEL_TYPE, "data");
67 this->transact_reply = new Variable(PARCEL_TYPE, "reply");
68 this->transact_flags = new Variable(INT_TYPE, "flags");
96 Variable* obj = new Variable(IBINDER_TYPE, "obj")
    [all...]
AST.h 67 struct Variable : public Expression
73 Variable();
74 Variable(Type* type, const string& name);
75 Variable(Type* type, const string& name, int dimension);
76 virtual ~Variable();
100 Variable *variable; member in struct:Field
104 Field(int modifiers, Variable* variable);
140 Variable* lvalue
    [all...]
generate_java.cpp 15 Variable*
21 Variable* v = new Variable(type, name);
26 Variable*
AST.cpp 59 variable(NULL)
63 Field::Field(int m, Variable* v)
66 variable(v)
77 types->insert(this->variable->type);
87 fprintf(to, "%s %s", this->variable->type->QualifiedName().c_str(),
88 this->variable->name.c_str());
129 Variable::Variable()
136 Variable::Variable(Type* t, const string& n
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Variable.java 21 * Variable.
23 public class Variable extends Symbol {
26 public Variable(String sym, Declarator d) {
Visitor.java 45 public void atVariable(Variable n) throws CompileError {}
  /external/v8/src/
scopes.h 40 // A hash map to support fast variable declaration and lookup.
47 Variable* Declare(Scope* scope,
51 Variable::Kind kind,
55 Variable* Lookup(Handle<String> name);
77 // to a JavaScript variable (including global properties) is represented by a
78 // VariableProxy node. Immediately after AST construction and before variable
80 // corresponding variable (though some are bound during parse time). Variable
81 // allocation binds each unresolved VariableProxy to one Variable and assigns
83 // Script variable
    [all...]
variables.cc 38 // Implementation Variable.
40 const char* Variable::Mode2String(VariableMode mode) {
57 Variable::Variable(Scope* scope,
84 bool Variable::is_global() const {
91 int Variable::CompareIndex(Variable* const* v, Variable* const* w) {
scopes.cc 46 // When inserting a new variable via Declare(), we rely on the fact that
47 // the handle location remains alive for the duration of that variable
48 // use. Because a Variable holding a handle with the same location exists
64 Variable* VariableMap::Declare(
69 Variable::Kind kind,
74 // The variable has not been declared yet -> insert it.
76 p->value = new Variable(scope,
84 return reinterpret_cast<Variable*>(p->value);
88 Variable* VariableMap::Lookup(Handle<String> name) {
93 return reinterpret_cast<Variable*>(p->value)
160 Variable* variable = variables_.Declare(this, local
    [all...]
variables.h 40 // after binding and variable allocation.
42 class Variable: public ZoneObject {
51 // Before and during variable allocation, a variable whose location is
52 // not yet determined. After allocation, a variable looked up as a
54 // variable name, index() is invalid.
62 // A slot in the local section on the stack. index() is the variable
66 // An indexed slot in a heap context. index() is the variable index in
71 // A named slot in a heap context. name() is the variable name in the
77 Variable(Scope* scope
    [all...]
full-codegen.h 324 // Load the value of a known (PARAMETER, LOCAL, or CONTEXT) variable into
326 // SetVar) so avoid calling both on the same variable.
327 void GetVar(Register destination, Variable* var);
329 // Assign to a known (PARAMETER, LOCAL, or CONTEXT) variable. If it's in
332 // (so does GetVar) so avoid calling both on the same variable.
333 void SetVar(Variable* var,
339 // variable. Writing does not need the write barrier.
340 MemOperand StackOperand(Variable* var);
343 // variable. May emit code to traverse the context chain, loading the
346 MemOperand VarOperand(Variable* var, Register scratch)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
VarNameCollector.java 28 import org.apache.xpath.operations.Variable;
31 * This class visits variable refs in an XPath and collects their QNames.
46 * Get the number of variable references that were collected.
67 * Visit a variable reference.
70 * @param var The variable reference object.
73 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
AbsPathChecker.java 29 import org.apache.xpath.operations.Variable;
69 * Visit a variable reference.
72 * @param var The variable reference object.
75 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp 19 int variable; // expected-note {{declared here}} local
20 (void)[&Overload] () {}; // expected-error {{does not name a variable}}
23 (void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean 'variable'}}
33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 30 import org.apache.xpath.operations.Variable;
129 * Visit a variable reference.
132 * @param var The variable reference object.
135 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
VariableSafeAbsRef.java 31 * This is a "smart" variable reference that is used in situations where
32 * an absolute path is optimized into a variable reference, but may
38 * to make sure the document context of the referenced variable is the same as
39 * the current document context, and, if it is not, execute the referenced variable's
42 public class VariableSafeAbsRef extends Variable
47 * Dereference the variable, and return the reference value. Note that lazy
48 * evaluation will occur. If a variable within scope is not found, a warning
54 * @return The evaluated variable, or an empty nodeset if not found.
  /external/webkit/LayoutTests/storage/
multiple-databases-garbage-collection.js 13 // Variable for the database that will never be forgotten
15 // Variable for the forgotten database
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 36 import org.apache.xpath.operations.Variable;
73 // * Visit a variable reference.
76 // * @param var The variable reference object.
79 // public boolean visitVariableRef(ExpressionOwner owner, Variable var)
101 if((pred instanceof Variable) ||
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string

Completed in 208 milliseconds

1 2 3 4 5