HomeSort by relevance Sort by last modified time
    Searched refs:Variable (Results 76 - 100 of 158) sorted by null

1 2 34 5 6 7

  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-deltablue.js 143 * a strength instance variable; concrete subclasses provide a means
204 * variable.
244 * Returns the current output variable.
302 * A unary input constraint used to mark a variable that the client
312 * Edits indicate that a variable is to be changed by imperative code.
389 * Mark the input variable with the given mark.
396 * Returns the current input variable
403 * Returns the current output variable
526 * A constrained variable. In addition to its value, it maintain the
531 function Variable(name, initialValue)
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-deltablue.js 143 * a strength instance variable; concrete subclasses provide a means
204 * variable.
244 * Returns the current output variable.
302 * A unary input constraint used to mark a variable that the client
312 * Edits indicate that a variable is to be changed by imperative code.
389 * Mark the input variable with the given mark.
396 * Returns the current input variable
403 * Returns the current output variable
526 * A constrained variable. In addition to its value, it maintain the
531 function Variable(name, initialValue)
    [all...]
  /external/chromium_org/v8/benchmarks/
deltablue.js 149 * a strength instance variable; concrete subclasses provide a means
210 * variable.
250 * Returns the current output variable.
308 * A unary input constraint used to mark a variable that the client
318 * Edits indicate that a variable is to be changed by imperative code.
395 * Mark the input variable with the given mark.
402 * Returns the current input variable
409 * Returns the current output variable
532 * A constrained variable. In addition to its value, it maintain the
537 function Variable(name, initialValue)
    [all...]
  /external/chromium_org/v8/src/
v8globals.h 160 class Variable;
515 // variable is global unless it has been shadowed
516 // by an eval-introduced variable
519 // variable is local and where it is unless it
521 // variable
553 // 2. A local variable introduced by a function declaration.
hydrogen.h 572 void Bind(Variable* variable, HValue* value) {
573 Bind(IndexFor(variable), value);
582 HValue* Lookup(Variable* variable) const {
583 return Lookup(IndexFor(variable));
669 // Map a variable to an environment index. Parameter indices are shifted
672 int IndexFor(Variable* variable) const {
673 ASSERT(variable->IsStackAllocated())
    [all...]
ast.cc 77 Variable* var = var_proxy->var();
80 return var != NULL && var->location() == Variable::UNALLOCATED &&
85 VariableProxy::VariableProxy(Isolate* isolate, Variable* var)
116 void VariableProxy::BindTo(Variable* var) {
123 // non-const) multiple variable declarations, const vars introduced via
124 // eval() etc. Const-ness and variable declarations are a complete mess
720 // The variable statement visiting code may pass NULL expressions
    [all...]
parser.cc 429 Target(Target** variable, AstNode* node)
430 : variable_(variable), node_(node), previous_(*variable) {
431 *variable = this;
450 explicit TargetScope(Target** variable)
451 : variable_(variable), previous_(*variable) {
452 *variable = NULL;
    [all...]
parser.h 488 // If a list of variable declarations includes any initializers.
516 void set_generator_object_variable(Variable *variable) {
517 ASSERT(variable != NULL);
519 generator_object_variable_ = variable;
521 Variable* generator_object_variable() const {
542 // For generators, the variable that holds the generator object. This
543 // variable is used by yield expressions and return statements. NULL
545 Variable* generator_object_variable_;
781 // Determine if the expression is a variable proxy and mark it as being use
    [all...]
  /external/v8/benchmarks/
deltablue.js 149 * a strength instance variable; concrete subclasses provide a means
210 * variable.
250 * Returns the current output variable.
308 * A unary input constraint used to mark a variable that the client
318 * Edits indicate that a variable is to be changed by imperative code.
395 * Mark the input variable with the given mark.
402 * Returns the current input variable
409 * Returns the current output variable
532 * A constrained variable. In addition to its value, it maintain the
537 function Variable(name, initialValue)
    [all...]
  /external/v8/src/
v8globals.h 159 class Variable;
497 // variable is global unless it has been shadowed
498 // by an eval-introduced variable
501 // variable is local and where it is unless it
503 // variable
521 // 2. A local variable introduced by a function declaration.
hydrogen.cc 3576 Variable* variable = expr->var(); local
    [all...]
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 116 * Returns a local variable that single or double words can be
131 v = getMaxLocals(); // delayed variable allocation.
745 if (left instanceof Variable)
746 atVariableAssign(expr, op, (Variable)left,
747 ((Variable)left).getDeclarator(),
776 private void atVariableAssign(Expr expr, int op, Variable var,
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
block-scoping.js 140 // Variable shadowing and lookup.
170 // catch variable shadowing argument
174 // let variable shadowing catch variable
181 // catch variable shadowing let variable
192 // catch variable shadowing var variable
195 // const variable shadowing catch variable
    [all...]
  /external/chromium_org/v8/tools/testrunner/local/
old_statusfile.py 69 class Variable(Expression):
267 return Variable(name.lower())
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 44 (* Simple variable ref. *)
45 | [< >] -> Ast.Variable id
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 44 (* Simple variable ref. *)
45 | [< >] -> Ast.Variable id
  /external/v8/test/mjsunit/harmony/
block-scoping.js 140 // Variable shadowing and lookup.
170 // catch variable shadowing argument
174 // let variable shadowing catch variable
181 // catch variable shadowing let variable
192 // catch variable shadowing var variable
195 // const variable shadowing catch variable
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 123 /// VariableExprAST - Expression class for referencing a variable, like "a".
274 if (CurTok != '(') // Simple variable ref.
394 // At least one variable name is required.
628 // Look this variable up in the function.
630 if (V == 0) return ErrorV("Unknown variable name");
653 return ErrorV("destination of '=' must be a variable");
659 Value *Variable = NamedValues[LHSE->getName()];
660 if (Variable == 0) return ErrorV("Unknown variable name");
662 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 141 /// VariableExprAST - Expression class for referencing a variable, like "a".
292 if (CurTok != '(') // Simple variable ref.
412 // At least one variable name is required.
646 // Look this variable up in the function.
648 if (V == 0) return ErrorV("Unknown variable name");
677 return ErrorV("destination of '=' must be a variable");
683 Value *Variable = NamedValues[LHSE->getName()];
684 if (Variable == 0) return ErrorV("Unknown variable name");
686 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 124 /// VariableExprAST - Expression class for referencing a variable, like "a".
275 if (CurTok != '(') // Simple variable ref.
395 // At least one variable name is required.
875 // Look this variable up in the function.
878 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
902 return ErrorV("destination of '=' must be a variable");
908 Value *Variable = NamedValues[LHSE->getName()];
909 if (Variable == 0) return ErrorV("Unknown variable name");
911 Builder.CreateStore(Val, Variable);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 126 /// VariableExprAST - Expression class for referencing a variable, like "a".
277 if (CurTok != '(') // Simple variable ref.
397 // At least one variable name is required.
631 // Look this variable up in the function.
633 if (V == 0) return ErrorV("Unknown variable name");
659 return ErrorV("destination of '=' must be a variable");
665 Value *Variable = NamedValues[LHSE->getName()];
666 if (Variable == 0) return ErrorV("Unknown variable name");
668 Builder.CreateStore(Val, Variable);
    [all...]
toy.cpp 126 /// VariableExprAST - Expression class for referencing a variable, like "a".
277 if (CurTok != '(') // Simple variable ref.
397 // At least one variable name is required.
915 // Look this variable up in the function.
918 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
942 return ErrorV("destination of '=' must be a variable");
948 Value *Variable = NamedValues[LHSE->getName()];
949 if (Variable == 0) return ErrorV("Unknown variable name");
951 Builder.CreateStore(Val, Variable);
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 123 /// EmitVarDecl - This method handles emission of any variable declaration
130 // If the variable is externally visible, it must have weak linkage so it
135 // FIXME: We need to force the emission/use of a guard variable for
192 // Use the label if the variable is renamed with the asm-label extension.
218 /// non-trivial. If so, and the variable uses static initialization, we must
226 /// global variable that has already been created for it. If the initializer
240 // Since we have a static initializer, this global variable can't
294 // Check to see if we already have a global variable for this
345 // Emit global variable debug descriptor for static vars.
424 // Compute the address of the local variable, in case it's
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkinter.py 198 class Variable:
205 """Construct a variable
211 If NAME matches an existing variable and VALUE is omitted
229 """Unset the variable in Tcl."""
232 """Return the name of the variable in Tcl."""
235 """Set the variable to VALUE."""
238 """Return value of variable."""
241 """Define a trace callback for the variable.
245 the variable is read, written or undefined.
250 self._tk.call("trace", "variable", self._name, mode, cbname
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkinter.py 198 class Variable:
205 """Construct a variable
211 If NAME matches an existing variable and VALUE is omitted
229 """Unset the variable in Tcl."""
232 """Return the name of the variable in Tcl."""
235 """Set the variable to VALUE."""
238 """Return value of variable."""
241 """Define a trace callback for the variable.
245 the variable is read, written or undefined.
250 self._tk.call("trace", "variable", self._name, mode, cbname
    [all...]

Completed in 796 milliseconds

1 2 34 5 6 7