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

1 23 4 5

  /external/icu4c/test/intltest/
wbnf.cpp 146 * It's a mapping table between 'variable name' and its 'active Pick object'
197 refs[i] = var_ref; // link definition with variable
518 class Variable : public Pick {
520 Variable(SymbolTable * symbols, const char * varName, Pick * varRef = NULL){
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 42 (* Simple variable ref. *)
43 | [< >] -> Ast.Variable id
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
parser.ml 42 (* Simple variable ref. *)
43 | [< >] -> Ast.Variable id
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
parser.ml 42 (* Simple variable ref. *)
43 | [< >] -> Ast.Variable id
  /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...]
parser.cc 425 Target(Target** variable, AstNode* node)
426 : variable_(variable), node_(node), previous_(*variable) {
427 *variable = this;
446 explicit TargetScope(Target** variable)
447 : variable_(variable), previous_(*variable) {
448 *variable = NULL;
    [all...]
ast.cc 72 VariableProxy::VariableProxy(Isolate* isolate, Variable* var)
103 void VariableProxy::BindTo(Variable* var) {
109 // non-const) multiple variable declarations, const vars introduced via
110 // eval() etc. Const-ness and variable declarations are a complete mess
642 // The variable statement visiting code may pass NULL expressions
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
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/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/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/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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 44 (* Simple variable ref. *)
45 | [< >] -> Ast.Variable id
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
100 (* Emit the start code first, without 'variable' in scope. *)
117 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var
119 (* Within the loop, the variable is defined equal to the PHI node. If it
120 * shadows an existing variable, we have to restore it, so save it
125 Hashtbl.add named_values var_name variable;
140 let next_var = build_add variable step_val "nextvar" builder in
160 add_incoming (next_var, loop_end_bb) variable;
162 (* Restore the unshadowed variable. *
    [all...]
  /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/clang/lib/CodeGen/
CGDecl.cpp 108 /// EmitVarDecl - This method handles emission of any variable declaration
180 // Use the label if the variable is renamed with the asm-label extension.
207 /// non-trivial. If so, and the variable uses static initialization, we must
215 /// global variable that has already been created for it. If the initializer
229 // Since we have a static initializer, this global variable can't
283 // Check to see if we already have a global variable for this
334 // Emit global variable debug descriptor for static vars.
413 // Compute the address of the local variable, in case it's a
434 // Compute the address of the local variable, in case it's a byref
457 /// variable with lifetime
    [all...]
CGStmt.cpp 56 // local variable map) which could be used by subsequent statements.
466 // scope of the variable that is declared extends from its point
595 // Create a cleanup scope for the condition variable cleanups.
600 // If the for statement has a condition scope, emit the local variable
693 // The loop body, consisting of the specified body and the loop variable.
715 // Create a separate cleanup scope for the loop variable and body.
775 // constructed into the NRVO variable.
777 // If there is an NRVO flag for this variable, set it to 1 into indicate
778 // that the cleanup code should not destroy the variable.
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 23 | Ast.Variable name ->
25 | Not_found -> raise (Error "unknown variable name")
45 | Ast.Variable name -> name
46 | _ -> raise (Error "destination of '=' must be a variable")
53 let variable = try Hashtbl.find named_values name with
54 | Not_found -> raise (Error "unknown variable name")
56 ignore(build_store val_ variable builder);
170 (* Create an alloca for the variable in the entry block. *)
173 (* Emit the start code first, without 'variable' in scope. *)
190 (* Within the loop, the variable is defined equal to the PHI node. If i
    [all...]
parser.ml 45 (* Simple variable ref. *)
46 | [< >] -> Ast.Variable id
88 (* At least one variable name is required. *)
  /external/chromium/chrome/browser/sync/resources/
gaia_login.js 5 // Variable to track if a captcha challenge was issued. If this gets set to

Completed in 1163 milliseconds

1 23 4 5