| /developers/samples/android/wearable/wear/WatchFace/ |
| gradlew.bat | 29 echo Please set the JAVA_HOME variable in your environment to match the 43 echo Please set the JAVA_HOME variable in your environment to match the 82 rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
| /developers/samples/android/wearable/wear/WatchViewStub/ |
| gradlew.bat | 29 echo Please set the JAVA_HOME variable in your environment to match the 43 echo Please set the JAVA_HOME variable in your environment to match the 82 rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
| /development/samples/training/testingfun/ |
| gradlew.bat | 29 echo Please set the JAVA_HOME variable in your environment to match the
43 echo Please set the JAVA_HOME variable in your environment to match the
82 rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
| /external/chromium_org/v8/test/mjsunit/ |
| global-load-from-nested-eval.js | 38 // Shadow variable with a with statement. 46 // Shadow variable with an eval-introduced variable.
|
| /external/chromium_org/v8/test/webkit/ |
| dfg-arguments-osr-exit-multiple-blocks-before-exit.js | 29 return [variable]; 52 var variable = 32; variable 57 variable = "32";
|
| dfg-arguments-osr-exit-multiple-blocks.js | 29 return [variable]; 50 var variable = 32; variable 55 variable = "32";
|
| dfg-cfg-simplify-phantom-get-local-on-same-block-set-local.js | 25 "Tests that attempts by the DFG simplification to short-circuit a Phantom to a GetLocal on a variable that is SetLocal'd in the same block, and where the predecessor block(s) make no mention of that variable, do not result in crashes." 54 // Basic block that stores to x in foo(), which is a captured variable, with
|
| /external/glide/ |
| gradlew.bat | 29 echo Please set the JAVA_HOME variable in your environment to match the
43 echo Please set the JAVA_HOME variable in your environment to match the
82 rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
| /external/glide/library/ |
| gradlew.bat | 29 echo Please set the JAVA_HOME variable in your environment to match the
43 echo Please set the JAVA_HOME variable in your environment to match the
82 rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
| /external/openssl/crypto/threads/ |
| netware.bat | 60 echo Environment variable MWCIncludes is not set - see install.nw 65 echo Environment variable PRELUDE is not set - see install.nw 70 echo Environment variable IMPORTS is not set - see install.nw
|
| /external/antlr/antlr-3.4/runtime/Python/tests/ |
| t047treeparser.py | 74 [ '>program', '>declaration', '>variable', '>type', '<type', 75 '>declarator', '<declarator', '<variable', '<declaration', 76 '>declaration', '>variable', '>type', '<type', '>declarator', 77 '<declarator', '<variable', '<declaration', '>declaration', 85 '<functionHeader', '>block', '>variable', '>type', '<type', 86 '>declarator', '<declarator', '<variable', '>stat', '>forStat', 111 r = parser.variable() 116 r = walker.variable()
|
| /external/chromium_org/content/shell/tools/plugin/Tests/ |
| NPRuntimeRemoveProperty.cpp | 162 virtual NPError NPP_GetValue(NPPVariable variable, void* value) OVERRIDE { 163 if (variable != NPPVpluginScriptableNPObject)
|
| /external/chromium_org/content/test/data/gpu/functional_files/ |
| context.js | 5 // Global variable.
|
| /external/chromium_org/third_party/npapi/npspy/include/ |
| epmanager.h | 101 NPError callNPP_GetValue(NPP instance, NPPVariable variable, void *value); 102 NPError callNPP_SetValue(NPP instance, NPNVariable variable, void *value);
|
| /external/chromium_org/v8/test/mjsunit/regress/ |
| regress-3138.js | 10 var f; // Variable shadows function name. 17 with ({}); // Force context allocation of both variable and function name.
|
| /external/compiler-rt/lib/asan/ |
| Makefile.mk | 27 # Define a convenience variable for all the asan functions.
|
| /external/compiler-rt/lib/lsan/ |
| Makefile.mk | 23 # Define a convenience variable for all the lsan functions.
|
| /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
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
| 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/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...] |
| /external/clang/lib/CodeGen/ |
| CGBlocks.cpp | 271 // We can only do this if the variable is const. 282 // If the variable doesn't have any initializer (shouldn't this be 374 const VarDecl *variable = CI.getVariable(); local 395 if (llvm::Constant *constant = tryCaptureAsConstant(CGM, CGF, variable)) { 396 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant); 403 variable->getType().getObjCLifetime(); 417 } else if (variable->getType()->isObjCRetainableType()) { 430 variable->getType()->getAsCXXRecordDecl()) { 438 QualType VT = variable->getType(); 440 CharUnits align = C.getDeclAlign(variable); 588 const VarDecl *variable = CI.getVariable(); local 742 const VarDecl *variable = CI.getVariable(); local 1175 const VarDecl *variable = CI.getVariable(); local 1217 const VarDecl *variable = CI.getVariable(); local 1327 const VarDecl *variable = CI.getVariable(); local 1496 const VarDecl *variable = CI.getVariable(); local [all...] |
| /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
| radeon_pair_regalloc.c | 276 struct rc_variable * variable, 281 unsigned int writemask = rc_variable_writemask_sum(variable); 282 struct rc_list * readers = rc_variable_readers_union(variable); 285 if (!variable->C->is_r500) { 291 for (var_ptr = variable; var_ptr; var_ptr = var_ptr->Friend) { 309 for (var_ptr = variable; var_ptr; 319 * be a pair instruction. If variable or any 355 if (variable->Inst->Type == RC_INSTRUCTION_PAIR) { 358 if (is_derivative(variable->Inst->U.P.RGB.Opcode) 359 || is_derivative(variable->Inst->U.P.Alpha.Opcode)) [all...] |
| /external/mesa3d/src/gallium/drivers/r300/compiler/ |
| radeon_pair_regalloc.c | 276 struct rc_variable * variable, 281 unsigned int writemask = rc_variable_writemask_sum(variable); 282 struct rc_list * readers = rc_variable_readers_union(variable); 285 if (!variable->C->is_r500) { 291 for (var_ptr = variable; var_ptr; var_ptr = var_ptr->Friend) { 309 for (var_ptr = variable; var_ptr; 319 * be a pair instruction. If variable or any 355 if (variable->Inst->Type == RC_INSTRUCTION_PAIR) { 358 if (is_derivative(variable->Inst->U.P.RGB.Opcode) 359 || is_derivative(variable->Inst->U.P.Alpha.Opcode)) [all...] |