HomeSort by relevance Sort by last modified time
    Searched defs:variables (Results 1 - 25 of 432) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/examples/calc++/
calc++-driver.hh 24 std::map<std::string, int> variables; member in class:calcxx_driver
  /external/icu/icu4c/source/i18n/
rbt_data.h 64 * data.variables. The stand-in also represents the UnicodeMatcher in
71 * Variables that correspond to a set of characters are mapped
76 * variables[i] represents character (variablesBase + i).
78 UnicodeFunctor** variables; member in class:TransliterationRuleData
81 * Flag that indicates whether the variables are owned (if a single
84 * the same variables list, so only the first one is considered to own
85 * the variables)
90 * The character that represents variables[0]. Characters
97 * The length of variables.
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_rename_regs.c 52 struct rc_list * variables; local
68 variables = rc_get_variables(c);
70 for (var_ptr = variables; var_ptr; var_ptr = var_ptr->Next) {
radeon_pair_regalloc.c 545 struct rc_list * variables; local
552 /* Get list of program variables */
553 variables = rc_get_variables(s->C);
554 node_count = rc_list_count(variables);
560 for (var_ptr = variables, node_index = 0; var_ptr;
637 for (var_ptr = variables, node_index = 0; var_ptr;
668 for (var_ptr = variables, node_index = 0;
689 for (var_ptr = variables, node_index = 0; var_ptr;
  /external/curl/src/
tool_writeenv.c 44 } variables[14] = variable in typeref:struct:__anon16315
80 for(i=0; variables[i].name; i++) {
81 switch (variables[i].type) {
83 if(curl_easy_getinfo(curl, variables[i].id, &string) == CURLE_OK)
84 internalSetEnv(variables[i].name, string);
86 internalSetEnv(variables[i].name, NULL);
90 if(curl_easy_getinfo(curl, variables[i].id, &longinfo) == CURLE_OK) {
92 internalSetEnv(variables[i].name, numtext);
95 internalSetEnv(variables[i].name, NULL);
98 if(curl_easy_getinfo(curl, variables[i].id, &doubleinfo) == CURLE_OK)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.variables_3.2.400.v20100505.jar 
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
GraphicsDeviceInfo.java 77 Set<String> variables = stubActivity.getImplementationVariableNames(); local
78 for (String name : variables) {
  /external/proguard/src/proguard/evaluation/
Processor.java 38 private final Variables variables; field in class:Processor
51 * @param variables the local variable frame.
58 public Processor(Variables variables,
65 this.variables = variables;
662 stack.push(variables.iload(variableIndex));
670 stack.push(variables.lload(variableIndex));
678 stack.push(variables.fload(variableIndex))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedTransliterator.java 45 * an exception to be thrown, that is, variables cannot be
391 * data.variables. The stand-in also represents the UnicodeSet in
398 * Variables that correspond to a set of characters are mapped
403 * variables[i] represents character (variablesBase + i).
405 Object[] variables; field in class:RuleBasedTransliterator.Data
408 * The character that represents variables[0]. Characters
410 * variables.length - 1 represent UnicodeSet objects.
420 return (i >= 0 && i < variables.length)
421 ? (UnicodeMatcher) variables[i] : null;
430 return (i >= 0 && i < variables.length
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
RuleBasedTransliterator.java 44 * an exception to be thrown, that is, variables cannot be
389 * data.variables. The stand-in also represents the UnicodeSet in
396 * Variables that correspond to a set of characters are mapped
401 * variables[i] represents character (variablesBase + i).
403 Object[] variables; field in class:RuleBasedTransliterator.Data
406 * The character that represents variables[0]. Characters
408 * variables.length - 1 represent UnicodeSet objects.
418 return (i >= 0 && i < variables.length)
419 ? (UnicodeMatcher) variables[i] : null;
428 return (i >= 0 && i < variables.length
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/
FullFrame.java 35 public VerificationType[] variables; field in class:FullFrame
49 * Creates a FullFrame with the given variables and stack.
52 VerificationType[] variables,
56 variables.length,
57 variables,
64 * Creates a FullFrame with the given variables and stack.
68 VerificationType[] variables,
74 this.variables = variables;
81 * Applies the given verification type visitor to all variables
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtcapi.h 52 _RTC_vardesc *variables; member in struct:_RTC_framedesc
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinition.hpp 59 std::vector<glu::VariableDeclaration> variables; member in struct:deqp::gles31::Functional::ProgramInterfaceDefinition::DefaultBlock
  /external/mesa3d/src/glsl/
loop_analysis.h 33 * Analyze and classify all variables used in all loops in the instruction list
42 * Based on analysis of loop variables, this function tries to remove sequences
64 * Tracking for all variables used in a loop
79 * Variables that have not yet been classified
81 exec_list variables; member in class:loop_variable_state
84 * Variables whose values are constant within the body of the loop
91 * Induction variables for this loop
107 * Hash table containing all variables accessed in this loop
171 /** Are all variables in the RHS of the assignment loop constants? */
184 * Increment values for loop induction variables
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
CompilerChef.java 111 final HashMap<String, String> variables = new HashMap<String, String>(); local
118 variables.put(variableName, type);
129 analyzer.injectViewDataBinding(className, variables, fields);
188 * Adds variables to list of Bindables.
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameAccessTest.java 88 private final List<VariableInfo> variables = new ArrayList<VariableInfo>(); field in class:JDWPStackFrameAccessTest.MethodInfo
99 return variables;
104 variables.add(new VariableInfo(variableName, initialValue, setValue, newValue));
116 variables.add(new VariableInfo(variableName, initialValue, setValue, newValue));
224 * an instance providing the local variables (and their value) for the method
225 * used for suspension. This is a special method because we do not update variables,
238 VarInfo[] variables = jdwpGetVariableTable(classID, testMethodID); local
239 assertNotNull("No variable table for method " + testMethodName, variables);
246 // Test all variables.
248 assertTrue("Not enough variables in variable table"
379 VarInfo[] variables = jdwpGetVariableTable(classID, methodID); local
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 258 // Reuse the existing variables and stack objects, ensuring the right size.
259 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals); local
262 // Initialize the reusable arrays and variables.
264 initializeParameters(clazz, method, codeAttribute, variables);
273 variables,
466 * Returns the variables before execution of the instruction at the given
476 * Returns the variables after execution of the instruction at the given
531 private void pushCallingInstructionBlock(TracedVariables variables,
535 callingInstructionBlockStack.push(new MyInstructionBlock(variables,
544 private void pushInstructionBlock(TracedVariables variables,
1045 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals); local
    [all...]
EvaluationSimplifier.java 491 TracedVariables variables = partialEvaluator.getVariablesBefore(offset); local
494 if (pushedValue.equals(variables.load(variableIndex)))
561 TracedVariables variables = partialEvaluator.getVariablesBefore(offset); local
565 if (pushedValue.equals(variables.load(variableIndex)) &&
566 variables.load(variableIndex + 1) != null &&
567 variables.load(variableIndex + 1).computationalType() == Value.TYPE_TOP)
635 TracedVariables variables = partialEvaluator.getVariablesBefore(offset); local
638 if (pushedValue.equals(variables.load(variableIndex)))
705 TracedVariables variables = partialEvaluator.getVariablesBefore(offset); local
709 if (pushedValue.equals(variables.load(variableIndex)) &
    [all...]
  /external/mesa3d/src/mesa/main/
es_generator.py 257 # variables: C code to create any local variables determined to
272 variables = [] variable
323 variables.append(" %s converted_%s;" % (paramConvertToType, paramName))
332 if (" int convert_%s_value = 1;" % paramName) not in variables:
333 variables.append(" int convert_%s_value = 1;" % paramName)
356 if " register unsigned int i;" not in variables:
357 variables.append(" register unsigned int i;")
364 variables.append(" unsigned int n_%s = %d;" % (paramName, paramMaxVecSize))
367 variables.append(" %s converted_%s[%d];" % (paramConvertToType, paramName, paramMaxVecSize)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_message.cc 298 map<string, string> variables; local
299 variables["static"] = is_own_file ? " " : " static ";
300 variables["classname"] = descriptor_->name();
301 variables["extra_interfaces"] = ExtraMessageInterfaces(descriptor_);
308 printer->Print(variables,
318 printer->Print(variables,
    [all...]
java_message_lite.cc 170 map<string, string> variables; local
171 variables["static"] = is_own_file ? " " : " static ";
172 variables["classname"] = descriptor_->name();
173 variables["extra_interfaces"] = ExtraMessageInterfaces(descriptor_);
180 printer->Print(variables,
190 printer->Print(variables,
    [all...]
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 257 * variables. If necessary, class constants are added to the constant pool
264 TracedVariables variables)
266 int maximumVariablesSize = variables.size();
274 Value value = variables.getValue(index);
302 Value value = variables.getValue(index);
303 Value producerValue = variables.getProducerValue(index);
510 VerificationType[] variables = fullFrame.variables; local
518 // Are all variables equal?
520 equalVerificationTypes(variables, previousVariableTypes, variablesCount)
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 494 HashSet<String> variables = cl.typeVariables(); local
500 variables.add(type.qualifiedTypeName());
517 // Type variables aren't guaranteed to be declared before they're referenced so we need to wait
518 // until after we've processed them all to figure out which ones are type variables and which
521 type.resolveTypeVariables(variables);
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
ANTLR3.java 353 /* Inquire environment variables */
354 Map<String, String> variables = System.getenv(); local
357 String antlrHome = variables.get("ANTLR_HOME");
  /external/deqp/framework/opengl/
gluVarType.hpp 280 std::vector<glu::VariableDeclaration> variables; member in struct:glu::InterfaceBlock

Completed in 1777 milliseconds

1 2 3 4 5 6 7 8 91011>>