HomeSort by relevance Sort by last modified time
    Searched full:variable (Results 1401 - 1425 of 15203) sorted by null

<<51525354555657585960>>

  /external/clang/lib/CodeGen/
CGDecl.cpp 124 /// EmitVarDecl - This method handles emission of any variable declaration
131 // FIXME: We need to force the emission/use of a guard variable for
182 // Use the label if the variable is renamed with the asm-label extension.
222 /// non-trivial. If so, and the variable uses static initialization, we must
230 /// global variable that has already been created for it. If the initializer
244 // Since we have a static initializer, this global variable can't
298 // Check to see if we already have a global variable for this
350 // Emit global variable debug descriptor for static vars.
429 // Compute the address of the local variable, in case it's a
451 // Compute the address of the local variable, in case it's a byre
    [all...]
  /external/lldb/source/Expression/
IRForTarget.cpp 434 // Find the result variable. If it doesn't exist, we can give up right here.
468 log->PutCString("Couldn't find result variable");
481 log->PutCString("Result variable had no data");
484 m_error_stream->Printf("Internal error [IRForTarget]: Result variable's name (%s) exists, but not its definition\n", result_name);
497 log->PutCString("Result variable isn't a GlobalVariable");
500 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) is defined, but is not a global variable\n", result_name);
509 log->PutCString("Result variable doesn't have a corresponding Decl");
512 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) does not have a corresponding Clang entity\n", result_name);
531 log->PutCString("Result variable Decl isn't a VarDecl")
    [all...]
  /external/chromium_org/third_party/icu/source/common/
utracimp.h 20 * - using a trace level variable to only call trace functions
22 * - using the same variable for tracing on/off to never make a function
24 * - the function number is put into a local variable by the entry macro
50 * Trace level variable. Negative for "off".
66 * Bits 0-3: The function return type. First variable param.
111 * variable of the same name.
132 * Flag bit in utraceFnNumber, the local variable added to each function
145 * Stores the function number in a local variable.
146 * In C code, must be placed immediately after the last variable declaration.
168 * Stores the function number in a local variable
    [all...]
  /external/deqp/modules/glshared/
glsRandomShaderProgram.cpp 103 static const rsg::Variable* findShaderOutputByName (const rsg::Shader& shader, const char* name)
105 vector<const rsg::Variable*> outputs;
108 for (vector<const rsg::Variable*>::const_iterator iter = outputs.begin(); iter != outputs.end(); ++iter)
117 static const rsg::Variable* findShaderOutputByLocation (const rsg::Shader& shader, int location)
119 vector<const rsg::Variable*> outputs;
122 for (vector<const rsg::Variable*>::const_iterator iter = outputs.begin(); iter != outputs.end(); iter++)
148 const rsg::Variable* vertexOutput = findShaderOutputByName(vertexShader, fragInput->getVariable()->getName());
161 const rsg::Variable* uniformVar = m_unifiedUniforms[uniformNdx]->getVariable();
183 const rsg::Variable* attribVar = m_vertexShader.getInputs()[attribNdx]->getVariable();
224 const rsg::Variable* var = m_vertexOutputs[varNdx]
    [all...]
  /external/icu/icu4c/source/common/
utracimp.h 20 * - using a trace level variable to only call trace functions
22 * - using the same variable for tracing on/off to never make a function
24 * - the function number is put into a local variable by the entry macro
50 * Trace level variable. Negative for "off".
66 * Bits 0-3: The function return type. First variable param.
111 * variable of the same name.
132 * Flag bit in utraceFnNumber, the local variable added to each function
145 * Stores the function number in a local variable.
146 * In C code, must be placed immediately after the last variable declaration.
168 * Stores the function number in a local variable
    [all...]
  /external/qemu/android/build/
common.sh 42 # return the value of a given named variable
43 # $1: variable name
363 # $1: variable name which will be set to "yes" or "no" depending on result
365 # for convenience, this variable will be unset by the function
383 # $1: variable name which will be set to "yes" or "no" depending on result
412 # $1: variable name which will be set to "yes" or "no" depending on result
416 # for convenience, this variable will be unset by the function.
434 # in the $1 variable.
457 # sets the variable IN_ANDROID_BUILD to either "yes" or "no"
492 # Get the value of an Android build variable as an absolute path
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
FormField.java 53 private String variable; field in class:FormField
59 * Creates a new FormField with the variable name that uniquely identifies the field
62 * @param variable the variable name of the question.
64 public FormField(String variable) {
65 this.variable = variable;
69 * Creates a new FormField of type FIXED. The fields of type FIXED do not define a variable
159 * Returns the variable name that the question is filling out.
161 * @return the variable name of the question
    [all...]
  /hardware/ti/omap4-aah/domx/mm_osal/src/
timm_osal_events.c 107 ("Event Create:Conditional Variable Init failed !");
150 ("Event Delete: Conditional Variable Destroy failed !");
219 ("Event Set: Condition Variable Signal failed !");
250 * value) |3)Change the value of the global variable
252 * variable |4)Check value of the global Thread-A wait
253 *3) Call pthread_cond_wait() to perform a blocking wait | variable. If it fulfills the desired
256 * unlocks the associated mutex variable so that it can |6)Continue
285 /* Lock the mutex for access to the eFlags global variable */
293 /*Check the eOperation and put it in a variable */
332 /*Wait on the conditional variable for another thread to set the eFlags and signal *
    [all...]
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_events.c 107 ("Event Create:Conditional Variable Init failed !");
150 ("Event Delete: Conditional Variable Destroy failed !");
219 ("Event Set: Condition Variable Signal failed !");
250 * value) |3)Change the value of the global variable
252 * variable |4)Check value of the global Thread-A wait
253 *3) Call pthread_cond_wait() to perform a blocking wait | variable. If it fulfills the desired
256 * unlocks the associated mutex variable so that it can |6)Continue
285 /* Lock the mutex for access to the eFlags global variable */
293 /*Check the eOperation and put it in a variable */
332 /*Wait on the conditional variable for another thread to set the eFlags and signal *
    [all...]
  /external/clang/docs/
LibASTMatchersTutorial.rst 218 variable(hasType(isInteger())).bind("intvar")
224 which will capture all ``for`` statements that define a new variable
231 Next, we want to specify that a single variable is declared in the first
238 Finally, we can add the condition that the variable is initialized to
247 loops whose init portion declares a single variable which is initialized
333 condition to ensure that the loop's index variable is compared against
335 increments this same variable. The matcher for (2) is straightforward:
336 require a pre- or post-increment of the same variable declared in the
354 variable declarations. To find a ``unaryOperator`` that refers to a
364 incremented variable is an integer
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 116 * Used to determine the escaping to apply before displaying a variable. If propagateEscapeStatus
128 * JavaExpression used for outputting the static Macro variable name.
155 * @param symbol static variable name of the macro definition.
280 * &lt;?cs name:blah &gt; command. Writes out the name of the original variable referred to by a
330 // Extract the value first in case the temp variable has the same name.
339 // We need to check if the variable exists. If not, we skip the with
351 // Push a new local variable scope for the with local variable
357 // Release the variable scope used by the with statement
431 // Push a new local variable scope for the loop local variabl
    [all...]
  /external/lldb/test/
bench-history 9 lldb frame variable benchmark: Avg: 1.649162 (Laps: 20, Total Elapsed Time: 32.983245)
18 lldb frame variable benchmark: Avg: 1.661701 (Laps: 20, Total Elapsed Time: 33.234026)
25 lldb frame variable benchmark: Avg: 1.602898 (Laps: 20, Total Elapsed Time: 32.057950)
38 lldb frame variable benchmark: Avg: 1.615647 (Laps: 20, Total Elapsed Time: 32.312934)
48 lldb frame variable benchmark: Avg: 1.612034 (Laps: 20, Total Elapsed Time: 32.240689, min=1.591328, max=1.649720)
59 lldb frame variable benchmark: Avg: 1.615098 (Laps: 20, Total Elapsed Time: 32.301958, min=1.599064, max=1.665124)
67 lldb frame variable benchmark: Avg: 1.583635 (Laps: 20, Total Elapsed Time: 31.672710, min=0.133858, max=2.073698)
78 lldb frame variable benchmark: Avg: 1.749605 (Laps: 20, Total Elapsed Time: 34.992090, min=1.604043, max=2.365440)
86 lldb frame variable benchmark: Avg: 1.640990 (Laps: 20, Total Elapsed Time: 32.819801, min=1.583961, max=2.031209)
97 lldb frame variable benchmark: Avg: 1.627282 (Laps: 20, Total Elapsed Time: 32.545639, min=1.596098, max=1.768229
    [all...]
  /external/llvm/docs/tutorial/
OCamlLangImpl7.rst 51 In this case, we have the variable "X", whose value depends on the path
109 variable (which lives in memory, because it is on the stack) for each
116 "i32\*" even though the variable is defined as "i32". What this means is
120 variable definitions, they are declared with the `LLVM alloca
135 variable in the LLVM IR. Stack memory allocated with the alloca
169 #. Each mutable variable becomes a stack allocation.
170 #. Each read of the variable becomes a load from the stack.
171 #. Each update of the variable becomes a store to the stack.
172 #. Taking the address of a variable just uses the stack address
251 the variable exposed so that debug info can be attached to it. Thi
    [all...]
LangImpl5.rst 423 This expression defines a new variable ("i" in this case) which iterates
460 variable name and the constituent expressions in the node.
574 // Emit the start code first, without 'variable' in scope.
607 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, VarName.c_str());
608 Variable->addIncoming(StartVal, PreheaderBB);
612 create the PHI node for the loop induction variable. Since we already
619 // Within the loop, the variable is defined equal to the PHI node. If it
620 // shadows an existing variable, we have to restore it, so save it now.
622 NamedValues[VarName] = Variable;
631 new variable to the symbol table. This means that our symbol table ca
    [all...]
  /bootable/recovery/applypatch/
imgdiff.h 23 // The gzip header size is actually variable, but we currently don't
  /cts/tests/app/src/android/app/cts/
MockReceiver.java 25 // PendingIntent may return same instance or new instance, so static variable is needed.
  /cts/tests/tests/os/src/android/os/cts/
EnvironmentTest.java 38 assertNull("environment variable TMPDIR should not be set",
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
VariableSizeInsn.java 23 * Pseudo-instruction base class for variable-sized instructions.
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoConstants.java 58 * Introduces a local variable at the current address.<p>
70 * Introduces a local variable at the current address with a type
85 * Marks a currently-live local variable as out of scope at the
96 * Re-introduces a local variable at the current address. The name
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttLocalVariableTable.java 31 * @param localVariables {@code non-null;} list of local variable entries
AttLocalVariableTypeTable.java 31 * @param localVariables {@code non-null;} list of local variable entries
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 61 /** {@code non-null;} local variable list */
71 * @param keepLocals whether to keep the local variable
238 * Gets the local variable list.
240 * @return {@code non-null;} the local variable list
  /dalvik/dx/src/com/android/dx/dex/cf/
CfOptions.java 29 /** whether to keep local variable information */
  /dalvik/dx/src/com/android/dx/dex/code/
VariableSizeInsn.java 23 * Pseudo-instruction base class for variable-sized instructions.
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoConstants.java 58 * Introduces a local variable at the current address.<p>
70 * Introduces a local variable at the current address with a type
85 * Marks a currently-live local variable as out of scope at the
96 * Re-introduces a local variable at the current address. The name

Completed in 852 milliseconds

<<51525354555657585960>>