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

1 2 3 4

  /frameworks/base/tools/aidl/
Type.h 46 virtual void WriteToParcel(StatementBlock* addTo, Variable* v,
47 Variable* parcel, int flags);
48 virtual void CreateFromParcel(StatementBlock* addTo, Variable* v,
49 Variable* parcel, Variable** cl);
50 virtual void ReadFromParcel(StatementBlock* addTo, Variable* v,
51 Variable* parcel, Variable** cl);
55 virtual void WriteArrayToParcel(StatementBlock* addTo, Variable* v,
56 Variable* parcel, int flags)
    [all...]
Type.cpp 192 Type::WriteToParcel(StatementBlock* addTo, Variable* v, Variable* parcel, int flags)
201 Type::CreateFromParcel(StatementBlock* addTo, Variable* v, Variable* parcel, Variable**)
210 Type::ReadFromParcel(StatementBlock* addTo, Variable* v, Variable* parcel, Variable**)
219 Type::WriteArrayToParcel(StatementBlock* addTo, Variable* v, Variable* parcel, int flags
    [all...]
AST.h 57 struct Variable : public Expression
63 Variable();
64 Variable(Type* type, const string& name);
65 Variable(Type* type, const string& name, int dimension);
66 virtual ~Variable();
90 Variable *variable; member in struct:Field
94 Field(int modifiers, Variable* variable);
130 Variable* lvalue
    [all...]
generate_java.cpp 14 Variable* Get(Type* type);
15 Variable* Get(int index);
17 vector<Variable*> m_vars;
28 Variable*
34 Variable* v = new Variable(type, name);
39 Variable*
52 Variable* transact_code;
53 Variable* transact_data;
54 Variable* transact_reply
    [all...]
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());
114 Variable::Variable()
121 Variable::Variable(Type* t, const string& n
    [all...]
  /external/v8/src/
variables.cc 38 // Implementation Variable.
40 const char* Variable::Mode2String(Mode mode) {
55 Property* Variable::AsProperty() const {
60 Slot* Variable::AsSlot() const {
65 bool Variable::IsStackAllocated() const {
71 bool Variable::IsParameter() const {
77 bool Variable::IsStackLocal() const {
83 bool Variable::IsContextSlot() const {
89 Variable::Variable(Scope* scope
    [all...]
scopes.h 40 // A hash map to support fast variable declaration and lookup.
51 Variable* Declare(Scope* scope,
53 Variable::Mode mode,
55 Variable::Kind kind);
57 Variable* Lookup(Handle<String> name);
67 VariableMap* GetMap(Variable::Mode mode) {
68 int index = mode - Variable::DYNAMIC;
79 // to a JavaScript variable (including global properties) is represented by a
80 // VariableProxy node. Immediately after AST construction and before variable
82 // corresponding variable (though some are bound during parse time). Variabl
    [all...]
scopes.cc 64 // When inserting a new variable via Declare(), we rely on the fact that
65 // the handle location remains alive for the duration of that variable
66 // use. Because a Variable holding a handle with the same location exists
85 Variable* VariableMap::Declare(Scope* scope,
87 Variable::Mode mode,
89 Variable::Kind kind) {
92 // The variable has not been declared yet -> insert it.
94 p->value = new Variable(scope, name, mode, is_valid_lhs, kind);
96 return reinterpret_cast<Variable*>(p->value);
100 Variable* VariableMap::Lookup(Handle<String> name)
    [all...]
variables.h 39 // after binding and variable allocation.
41 class Variable: public ZoneObject {
54 // variable is global unless it has been shadowed
55 // by an eval-introduced variable
58 // variable is local and where it is unless it
60 // variable
75 Variable(Scope* scope,
90 // The source code for an eval() call may refer to a variable that is
126 // True if the variable is named eval and not known to be shadowed.
132 Variable* local_if_not_shadowed() const
    [all...]
scopeinfo.h 98 List<Variable::Mode, Allocator > context_modes_;
139 // mode for that variable.
140 int ContextSlotIndex(String* name, Variable::Mode* mode);
178 Variable::Mode* mode);
183 Variable::Mode mode,
204 Variable::Mode mode,
215 Value(Variable::Mode mode, int index) {
227 Variable::Mode mode() { return ModeField::decode(value_); }
233 class ModeField: public BitField<Variable::Mode, 0, 3> {};
contexts.cc 128 Variable::Mode mode;
145 case Variable::INTERNAL: // fall through
146 case Variable::VAR: *attributes = NONE; break;
147 case Variable::CONST: *attributes = READ_ONLY; break;
148 case Variable::DYNAMIC: UNREACHABLE(); break;
149 case Variable::DYNAMIC_GLOBAL: UNREACHABLE(); break;
150 case Variable::DYNAMIC_LOCAL: UNREACHABLE(); break;
151 case Variable::TEMPORARY: UNREACHABLE(); break;
174 // check intermediate context (holding only the function name variable)
225 Variable::Mode mode
    [all...]
scopeinfo.cc 39 static int CompareLocal(Variable* const* v, Variable* const* w) {
73 // not be in increasing order with the variable list anymore.
77 List<Variable*, Allocator> locals(32); // 32 is a wild guess
82 List<Variable*, Allocator> heap_locals(locals.length());
84 Variable* var = locals[i];
131 Variable* var = scope->function();
145 context_modes_.Add(Variable::INTERNAL);
172 // - have a single list with all variable names (parameters, stack locals,
176 // list if the variable name is foun
    [all...]
data-flow.cc 89 Variable* AssignedVariablesAnalyzer::FindSmiLoopVariable(ForStatement* stmt) {
99 Variable* loop_var = init->target()->AsVariableProxy()->AsVariable();
103 if (loop_var->mode() != Variable::VAR) return NULL;
110 // The condition must be a compare of variable with <, <=, >, or >=.
118 // The lhs must be the same variable as in the init expression.
126 // The count operation updates the same variable as in the init expression.
147 // Found a smi loop variable.
151 int AssignedVariablesAnalyzer::BitIndex(Variable* var) {
163 void AssignedVariablesAnalyzer::RecordAssignedVar(Variable* var) {
172 Variable* var = expr->AsVariableProxy()->AsVariable()
    [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/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/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/lib/CodeGen/AsmPrinter/
DwarfDebug.h 70 const MDNode *Variable;
87 : Begin(0), End(0), Variable(0), Merged(false),
91 : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
94 : Begin(B), End(E), Variable(0), Merged(false),
97 : Begin(B), End(E), Variable(0), Merged(false),
100 : Begin(B), End(E), Variable(0), Merged(false),
123 /// DbgVariable - This class is used to track local variable information.
126 DIVariable Var; // Variable Descriptor.
127 DIE *TheDIE; // Variable DIE.
129 DbgVariable *AbsVar; // Corresponding Abstract variable, if any
    [all...]
  /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 447 milliseconds

1 2 3 4