Home
last modified time | relevance | path

Searched refs:Variable (Results 1 – 25 of 143) sorted by relevance

123456

/external/v8/src/
Dscopes.h47 Variable* Declare(Scope* scope,
51 Variable::Kind kind,
55 Variable* Lookup(Handle<String> name);
113 Variable* LocalLookup(Handle<String> name);
119 Variable* LookupFunctionVar(Handle<String> name,
124 Variable* Lookup(Handle<String> name);
130 Variable* DeclareFunctionVar(Handle<String> name, in DeclareFunctionVar()
134 Variable* function_var = new Variable( in DeclareFunctionVar()
135 this, name, mode, true, Variable::NORMAL, kCreatedInitialized); in DeclareFunctionVar()
147 Variable* DeclareLocal(Handle<String> name,
[all …]
Dscopes.cc64 Variable* VariableMap::Declare( in Declare()
69 Variable::Kind kind, in Declare()
76 p->value = new Variable(scope, in Declare()
84 return reinterpret_cast<Variable*>(p->value); in Declare()
88 Variable* VariableMap::Lookup(Handle<String> name) { in Lookup()
93 return reinterpret_cast<Variable*>(p->value); in Lookup()
160 Variable* variable = variables_.Declare(this, in Scope()
164 Variable::NORMAL, in Scope()
323 Variable* var = in Initialize()
328 Variable::THIS, in Initialize()
[all …]
Dvariables.cc40 const char* Variable::Mode2String(VariableMode mode) { in Mode2String()
57 Variable::Variable(Scope* scope, in Variable() function in v8::internal::Variable
84 bool Variable::is_global() const { in is_global()
91 int Variable::CompareIndex(Variable* const* v, Variable* const* w) { in CompareIndex()
Dvariables.h42 class Variable: public ZoneObject {
77 Variable(Scope* scope,
144 Variable* local_if_not_shadowed() const { in local_if_not_shadowed()
149 void set_local_if_not_shadowed(Variable* local) { in set_local_if_not_shadowed()
165 static int CompareIndex(Variable* const* v, Variable* const* w);
180 Variable* local_if_not_shadowed_;
Dfull-codegen.h327 void GetVar(Register destination, Variable* var);
333 void SetVar(Variable* var,
340 MemOperand StackOperand(Variable* var);
346 MemOperand VarOperand(Variable* var, Register scratch);
463 void EmitLoadGlobalCheckExtensions(Variable* var,
466 MemOperand ContextSlotOperandCheckExtensions(Variable* var, Label* slow);
467 void EmitDynamicLookupFastCase(Variable* var,
512 void EmitVariableAssignment(Variable* var,
632 virtual void Plug(Variable* var) const = 0;
687 virtual void Plug(Variable* var) const;
[all …]
Drewriter.cc41 explicit Processor(Variable* result) in Processor()
58 Variable* result_;
244 Variable* result = scope->NewTemporary( in EXPRESSION_NODE_LIST()
Dscopeinfo.cc43 ZoneList<Variable*> stack_locals(scope->StackLocalCount()); in Create()
44 ZoneList<Variable*> context_locals(scope->ContextLocalCount()); in Create()
56 Variable* var = scope->function()->var(); in Create()
112 context_locals.Sort(&Variable::CompareIndex); in Create()
123 Variable* var = context_locals[i]; in Create()
Dprettyprinter.cc667 Variable* var, in PrintLiteralWithModeIndented()
674 Variable::Mode2String(var->mode())); in PrintLiteralWithModeIndented()
768 PrintLiteralWithModeIndented(Variable::Mode2String(node->mode()), in VisitVariableDeclaration()
1016 Variable* var = node->var(); in VisitVariableProxy()
1020 case Variable::UNALLOCATED: in VisitVariableProxy()
1022 case Variable::PARAMETER: in VisitVariableProxy()
1025 case Variable::LOCAL: in VisitVariableProxy()
1028 case Variable::CONTEXT: in VisitVariableProxy()
1031 case Variable::LOOKUP: in VisitVariableProxy()
/external/javassist/src/main/javassist/compiler/ast/
DVariable.java23 public class Variable extends Symbol { class
26 public Variable(String sym, Declarator d) { in Variable() method in Variable
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DVarNameCollector.java28 import org.apache.xpath.operations.Variable;
73 public boolean visitVariableRef(ExpressionOwner owner, Variable var) in visitVariableRef()
DAbsPathChecker.java29 import org.apache.xpath.operations.Variable;
75 public boolean visitVariableRef(ExpressionOwner owner, Variable var) in visitVariableRef()
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.h70 const MDNode *Variable; member
87 : Begin(0), End(0), Variable(0), Merged(false), in DotDebugLocEntry()
91 : Begin(B), End(E), Loc(L), Variable(V), Merged(false), in DotDebugLocEntry()
94 : Begin(B), End(E), Variable(0), Merged(false), in DotDebugLocEntry()
97 : Begin(B), End(E), Variable(0), Merged(false), in DotDebugLocEntry()
100 : Begin(B), End(E), Variable(0), Merged(false), in DotDebugLocEntry()
/external/webkit/Source/WebCore/inspector/front-end/
DDrawer.js131 …his.state = (this.fullPanel ? WebInspector.Drawer.State.Full : WebInspector.Drawer.State.Variable);
207 if (this.state === WebInspector.Drawer.State.Variable) {
237 this.state = WebInspector.Drawer.State.Variable;
239 this._animateDrawerHeight(height, WebInspector.Drawer.State.Variable);
360 Variable: 1, property
/external/clang/test/Analysis/
Dsecurity-syntax-checks.m21 …for (float x = 0.1f; x <= 1.0f; x += 0.1f) {} // expected-warning{{Variable 'x' with floating poin…
22 …for (float x = 100000001.0f; x <= 100000010.0f; x += 1.0f) {} // expected-warning{{Variable 'x' wi…
23 …for (float x = 100000001.0f; x <= 100000010.0f; x++ ) {} // expected-warning{{Variable 'x' with fl…
24 …for (double x = 100000001.0; x <= 100000010.0; x++ ) {} // expected-warning{{Variable 'x' with flo…
25 …for (double x = 100000001.0; ((x)) <= 100000010.0; ((x))++ ) {} // expected-warning{{Variable 'x' …
27 …for (double x = 100000001.0; 100000010.0 >= x; x = x + 1.0 ) {} // expected-warning{{Variable 'x' …
30 …0000001.0; ((x)) <= 100000010.0; ((x))++, ++i ) {} // expected-warning{{Variable 'x' with floating…
33 …for (FooType x = 100000001.0f; x <= 100000010.0f; x++ ) {} // expected-warning{{Variable 'x' with …
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
Dv8-deltablue.js531 function Variable(name, initialValue) { class
545 Variable.prototype.addConstraint = function (c) {
552 Variable.prototype.removeConstraint = function (c) {
798 var v = new Variable(name);
827 var scale = new Variable("scale", 10);
828 var offset = new Variable("offset", 1000);
833 src = new Variable("src" + i, i);
834 dst = new Variable("dst" + i, i);
/external/v8/benchmarks/
Ddeltablue.js537 function Variable(name, initialValue) { class
551 Variable.prototype.addConstraint = function (c) {
558 Variable.prototype.removeConstraint = function (c) {
804 var v = new Variable(name);
833 var scale = new Variable("scale", 10);
834 var offset = new Variable("offset", 1000);
839 src = new Variable("src" + i, i);
840 dst = new Variable("dst" + i, i);
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
Dv8-deltablue.js531 function Variable(name, initialValue) { class
545 Variable.prototype.addConstraint = function (c) {
552 Variable.prototype.removeConstraint = function (c) {
798 var v = new Variable(name);
827 var scale = new Variable("scale", 10);
828 var offset = new Variable("offset", 1000);
833 src = new Variable("src" + i, i);
834 dst = new Variable("dst" + i, i);
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
Dv8-deltablue.js531 function Variable(name, initialValue) { class
545 Variable.prototype.addConstraint = function (c) {
552 Variable.prototype.removeConstraint = function (c) {
798 var v = new Variable(name);
827 var scale = new Variable("scale", 10);
828 var offset = new Variable("offset", 1000);
833 src = new Variable("src" + i, i);
834 dst = new Variable("dst" + i, i);
/external/apache-xml/src/main/java/org/apache/xpath/
DXPathVisitor.java30 import org.apache.xpath.operations.Variable;
135 public boolean visitVariableRef(ExpressionOwner owner, Variable var) in visitVariableRef()
/external/valgrind/main/memcheck/
Dmc_errors.c120 } Variable; member
366 if (ai->Addr.Variable.descr1) in mc_pp_AddrInfo()
369 (HChar*)VG_(indexXA)(ai->Addr.Variable.descr1, 0) ); in mc_pp_AddrInfo()
370 if (ai->Addr.Variable.descr2) in mc_pp_AddrInfo()
373 (HChar*)VG_(indexXA)(ai->Addr.Variable.descr2, 0) ); in mc_pp_AddrInfo()
1156 ai->Addr.Variable.descr1 in describe_addr()
1159 ai->Addr.Variable.descr2 in describe_addr()
1163 (void) VG_(get_data_description)( ai->Addr.Variable.descr1, in describe_addr()
1164 ai->Addr.Variable.descr2, a ); in describe_addr()
1171 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr1, 0 ))) { in describe_addr()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DHasPositionalPredChecker.java36 import org.apache.xpath.operations.Variable;
101 if((pred instanceof Variable) || in visitPredicate()
/external/llvm/docs/CommandGuide/
Dllvm-bcanalyzer.pod98 Ths size, in bytes, of the Global Variable Definitions and their initializers.
208 The total number of 32-bit integers encoded using the Variable Bit Rate
213 The total number of 64-bit integers encoded using the Variable Bit Rate encoding
219 the Variable Bit Rate encoding scheme.
224 integers had they not been compressed with the Variable Bit Rage encoding
229 The total number of bytes saved by using the Variable Bit Rate encoding scheme.
292 integers that use the Variable Bit Rate encoding scheme.
297 the 32-bit and 64-bit integers had they not been compressed with the Variable
302 The total number of bytes saved in this function by using the Variable Bit
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DVariable.java42 public class Variable extends Expression implements PathComponent class
358 if(!m_qname.equals(((Variable)expr).m_qname)) in deepEquals()
363 if(getElemVariable() != ((Variable)expr).getElemVariable()) in deepEquals()
/external/valgrind/main/coregrind/m_debuginfo/
DUNUSED_STABS.txt638 static Int free_varlist(Variable *list)
640 Variable *next;
711 Variable *var, Int *numvars, Int *created,
712 Variable **newlist, Variable **newlistend) {
713 Variable *v;
758 static void genstring(Variable *v, Variable *inner, Int *len, Char **ep,
760 Variable *c = v->container;
799 Variable *list; /* worklist */
800 Variable *keeplist; /* container variables */
801 Variable *found; /* the chain we found */
[all …]
/external/clang/lib/CodeGen/
DCGObjCRuntime.cpp140 const VarDecl *Variable; member
189 Handler.Variable = CatchDecl; in EmitTryCatchStmt()
236 bool EndCatchMightThrow = (Handler.Variable == 0); in EmitTryCatchStmt()
244 if (const VarDecl *CatchParam = Handler.Variable) { in EmitTryCatchStmt()

123456