/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 | 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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.variables_3.2.400.v20100505.jar | |
/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/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
RuleBasedTransliterator.java | 42 * an exception to be thrown, that is, variables cannot be 388 * data.variables. The stand-in also represents the UnicodeSet in 395 * Variables that correspond to a set of characters are mapped 400 * variables[i] represents character (variablesBase + i). 402 Object[] variables; field in class:RuleBasedTransliterator.Data 405 * The character that represents variables[0]. Characters 407 * variables.length - 1 represent UnicodeSet objects. 417 return (i >= 0 && i < variables.length) 418 ? (UnicodeMatcher) variables[i] : null; 427 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...] |
linker.cpp | 37 * - Types and qualifiers of uniforms, outputs, and global variables defined 39 * - Initializers for uniforms and global variables defined 305 /* From section 7.1 (Vertex Shader Special Variables) of the 385 * Perform validation of global variables used across multiple shaders 396 glsl_symbol_table variables; local 420 ir_variable *const existing = variables.get_variable(var->name); 566 variables.add_variable(var); 645 * FINISHME: variables. 654 /* Find all shader inputs in the "consumer" stage. Any variables that have 662 * FINISHME: variables [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
JDWPStackFrameAccessTest.java | 66 private final List<VariableInfo> variables = new ArrayList<VariableInfo>(); field in class:JDWPStackFrameAccessTest.MethodInfo 77 return variables; 81 variables.add(new VariableInfo(variableName, initialValue, newValue)); 187 VarInfo[] variables = jdwpGetVariableTable(classID, testMethodID); local 188 assertNotNull("No variable table for method " + testMethodName, variables); 195 // Test all variables. 197 assertTrue("Not enough variables in variable table", 198 variables.length >= testedVariables.size()); 202 VarInfo testVarInfo = getVariableInfo(variables, variableName); 332 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...] |
/ndk/sources/host-tools/make-3.81/ |
filedef.h | 50 struct variable_set_list *variables; member in struct:file 94 pattern-specific variables. */
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/ |
BNF.java | 21 private Set variables = new HashSet(); field in class:BNF 75 // check that the rules match the variables, except for $root in rules 78 variables.add("$root"); 79 variables.addAll(t.getLookedUpItems()); 80 if (!ruleSet.equals(variables)) { 81 String msg = showDiff(variables, ruleSet); 83 String temp = showDiff(ruleSet, variables); 92 if (!ruleSet.equals(variables)) { 93 String msg = showDiff(variables, ruleSet); 95 String temp = showDiff(ruleSet, 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/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/chromium-trace/trace-viewer/third_party/webapp2/ |
webapp2.py | 49 # Thread-local variables container. 564 # The handler only receives *args if no named variables are set. 874 variables = None variable in class:Route 885 can have variables enclosed by ``<>`` that define a name, a 912 The handler only receives ``*args`` if no named variables are 915 just mix named and unnamed variables and the handler will 929 also present in the route variables are used to build the URI [all...] |
/external/deqp/framework/opengl/ |
gluVarType.hpp | 280 std::vector<glu::VariableDeclaration> variables; member in struct:glu::InterfaceBlock
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
InvokableTest.java | 74 TypeVariable<?>[] variables = local 76 assertEquals(1, variables.length); 77 assertEquals("A", variables[0].getName()); 129 TypeVariable<?>[] variables = delegate.getTypeParameters(); local 130 assertEquals(1, variables.length); 131 assertEquals("T", variables[0].getName());
|
/external/opencv/cvaux/src/ |
cvlmeds.cpp | 1420 int *variables; local [all...] |
/build/core/ |
definitions.mk | 23 # These are variables we use to collect overall lists 30 # For each element of ALL_MODULES, two other variables 37 # sub-variables. 55 # its sub-variables.) 813 ## Dump the variables that are associated with targets 816 define dump-module-variables 841 define transform-variables [all...] |