/external/oprofile/ |
autogen.sh | 6 # variables set, you *must* run "configure" with the same variables 7 # set. this is because "configure" will embed the values of these variables
|
/external/proguard/src/proguard/optimize/evaluation/ |
PartialEvaluator.java | 210 // Reuse the existing variables and stack objects, ensuring the right size. 211 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals); local 214 // Initialize the reusable arrays and variables. 215 initializeVariables(clazz, method, codeAttribute, variables, stack); 224 variables, 423 * Returns the variables before execution of the instruction at the given 433 * Returns the variables after execution of the instruction at the given 498 private void pushCallingInstructionBlock(TracedVariables variables, 502 callingInstructionBlockStack.push(new MyInstructionBlock(variables, 511 private void pushInstructionBlock(TracedVariables variables, 1030 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals); local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
DefaultDataContext.java | 26 * Data objects that hold local variables. By definition, local variables are limited to single HDF 38 * Head of the linked list of local variables, starting with the newest variable created. 68 + "variables declared in between."); 74 * Removes the current variable scope and references to the variables in it. It is illegal to call 80 // We pushed but created no local variables. 125 // can cause the list of local variables to explode. 129 // variables are always in their own scope, there would only be one variable 241 * be exposed outside of this class for value-based local variables. 260 // Used only for loop local variables [all...] |
/external/clang/docs/ |
Block-ABI-Apple.txt | 61 // imported variables 87 Block literals may occur within functions where the structure is created in stack local memory. They may also appear as initialization expressions for Block variables of global or static local variables. 97 2) The flags field is set to zero unless there are variables imported into the block that need helper functions for program level Block_copy() and Block_release() operations, in which case the (1<<25) flags bit is set. 130 Blocks import other Block references, const copies of other variables, and variables marked __block. In Objective-C variables may additionally be objects. 139 that is, a different address is provided as the first value and a particular (1<<28) bit is set in the flags field, and otherwise it is the same as for stack based Block literals. This is an optimization that can be used for any Block literal that imports no const or __block storage variables. 142 2. Imported Variables 144 Variables of "auto" storage class are imported as const copies. Variables of "__block" storage class are im (…) [all...] |
BlockLanguageSpec.txt | 80 The compound statement body establishes a new lexical scope within that of its parent. Variables used within the scope of the compound statement are bound to the Block in the normal manner with the exception of those in automatic (stack) storage. Thus one may access functions and global variables as one would expect, as well as static local variables. [testme] 82 Local automatic (stack) variables referenced within the compound statement of a Block are imported and captured by the Block as const copies. The capture (binding) is performed at the time of the Block literal expression evaluation. 84 The lifetime of variables declared in a Block is that of a function; each activation frame contains a new copy of variables declared within the local scope of the Block. Such variable declarations should be allowed anywhere [testme] rather than only when C99 parsing is requested, including for statements. [testme] 86 Block literal expressions may occur within Block literal expressions (nest) and all variables captured by any nested blocks are implicitly also captured in the scopes of their enclosing Blocks. 88 A Block literal expression may be used as the initialization value for Block variables at global or local static scope. 113 In addition to the new Block type we also introduce a new storage qualifier, __block, for local variables. [testme: a __block declaration within a block literal] The __block storage qualifier is mutually exclusive to the existing local storage qualifiers auto, register, and static.[testme] Variables qualified by __block act as if they were in allocated storage and this storage is automatically re (…) [all...] |
/external/mesa3d/docs/ |
envvars.html | 3 <TITLE>Environment Variables</TITLE> 9 <H1>Environment Variables</H1> 12 Mesa supports the following environment variables: 55 These environment variables are for the Intel i945/i965 drivers: 66 These environment variables are for the Radeon R300 driver: 73 Mesa EGL supports different sets of environment variables. See the
|
/external/proguard/src/proguard/classfile/editor/ |
VariableCleaner.java | 32 * This AttributeVisitor cleans up unused variables in all attributes that it 51 // Figure out the local variables that are used by the code. 54 // Clean up the variables of the attributes. 61 // Clean up local variables that aren't used. 71 // Clean up local variables that aren't used. 82 * Returns the given list of local variables, without the ones that aren't
|
/frameworks/compile/libbcc/runtime/make/ |
subdir.mk | 21 # The list of variables which are intended to be overridden in a subdirectory 38 # Reset subdirectory specific variables to sentinel value. 42 # Get the subdirectory variables. 52 # Check for undefined required variables, and unset sentinel value from optional 53 # variables. 61 # Collect all subdirectory variables for subsequent use.
|
/external/bluetooth/glib/docs/ |
debugging.txt | 5 Some code portions contain trap variables that can be set during 11 Currently, the following trap variables exist: 32 Environment variables for debugging
|
/external/quake/quake/src/QW/client/ |
d_vars.c | 20 // r_vars.c: global refresh variables 26 // all global and static refresh variables are collected in a contiguous block 30 // global refresh variables
|
r_vars.c | 20 // r_vars.c: global refresh variables 26 // all global and static refresh variables are collected in a contiguous block 30 // global refresh variables
|
/external/quake/quake/src/WinQuake/ |
d_vars.cpp | 20 // r_vars.c: global refresh variables
26 // all global and static refresh variables are collected in a contiguous block
30 // global refresh variables
|
r_vars.cpp | 20 // r_vars.c: global refresh variables
26 // all global and static refresh variables are collected in a contiguous block
30 // global refresh variables
|
/external/wpa_supplicant_8/hostapd/ |
hostapd_cli.1 | 59 Get MIB variables (dot1x, dot11, radius). 62 Get MIB variables for one station. 65 Get MIB variables for all stations.
|
/bionic/libc/private/ |
resolv_static.h | 6 /* this structure contains all the variables that were declared
|
/build/core/ |
process_wrapper.sh | 11 # Save away these variables, since we may loose them
|
/external/chromium/chrome/browser/sync/tools/ |
sync_tools.gyp | 23 # Local Variables:
|
/external/chromium/chrome/common/ |
env_vars.h | 5 // Defines all the environment variables used by Chrome.
|
/external/chromium/third_party/modp_b64/ |
modp_b64.gyp | 23 # Local Variables:
|
/external/clang/test/Sema/ |
attr-section.c | 13 __attribute__((section("NEAR,x"))) int n1; // expected-error {{'section' attribute is not valid on local variables}}
|
/external/clang/test/SemaObjC/ |
objc2-warn-weak-decl.m | 9 __weak id local; // expected-warning {{Objective-C GC does not allow weak variables on the stack}}
|
/external/icu4c/i18n/ |
rbt_data.h | 62 * data.variables. The stand-in also represents the UnicodeMatcher in 69 * Variables that correspond to a set of characters are mapped 74 * variables[i] represents character (variablesBase + i). 76 UnicodeFunctor** variables; member in class:TransliterationRuleData 79 * Flag that indicates whether the variables are owned (if a single 82 * the same variables list, so only the first one is considered to own 83 * the variables) 88 * The character that represents variables[0]. Characters 95 * The length of variables.
|
/external/llvm/test/CodeGen/X86/ |
2004-04-09-SameValueCoalescing.ll | 1 ; Linear scan does not currently coalesce any two variables that have
|
fast-cc-callee-pops.ll | 3 ; Check that a fastcc function pops its stack variables before returning.
|
/external/mksh/src/ |
var_spec.h | 19 /* 1 and up are special variables */
|