Searched defs:variables (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium/third_party/icu/source/i18n/
H A Drbt_data.h62 * data.variables. The stand-in also represents the UnicodeMatcher in
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/icu4c/i18n/
H A Drbt_data.h62 * data.variables. The stand-in also represents the UnicodeMatcher in
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/proguard/src/proguard/evaluation/
H A DInvocationUnit.java29 * This interface sets up the variables for entering a method,
37 * Sets up the given variables for entering the given method.
41 Variables variables);
39 enterMethod(Clazz clazz, Method method, Variables variables) argument
H A DVariables.java28 * the respective variables.
42 * Creates a new Variables object with a given maximum number of variables.
54 public Variables(Variables variables) argument
57 this(variables.size);
60 initialize(variables);
77 // Clear the variables.
109 * variables should be cleared too,
130 // two local variables that share the same index), at some point
161 * Returns the number of variables.
301 // (corresponding to two local variables tha
[all...]
H A DProcessor.java43 private final Variables variables; field in class:Processor
56 * @param variables the local variable frame.
61 public Processor(Variables variables, argument
67 this.variables = variables;
645 stack.push(variables.iload(variableIndex));
653 stack.push(variables.lload(variableIndex));
661 stack.push(variables.fload(variableIndex));
669 stack.push(variables.dload(variableIndex));
677 stack.push(variables
[all...]
H A DBasicInvocationUnit.java33 * This InvocationUnit sets up the variables for entering a method,
65 public void enterMethod(Clazz clazz, Method method, Variables variables) argument
77 variables.reset(parameterSize);
97 variables.store(variableIndex++, value);
103 // Set up the variables corresponding to the parameter types and values.
121 variables.store(variableIndex++, value);
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_field.cc55 map<string, string>* variables) {
56 (*variables)["name"] = FieldName(descriptor);
57 (*variables)["index"] = SimpleItoa(descriptor->index());
58 (*variables)["number"] = SimpleItoa(descriptor->number());
59 (*variables)["classname"] = ClassName(FieldScope(descriptor), false);
60 (*variables)["declared_type"] = DeclaredTypeMethodName(descriptor->type());
62 (*variables)["tag_size"] = SimpleItoa(
64 (*variables)["deprecation"] = descriptor->options().deprecated()
54 SetCommonFieldVariables(const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Dcpp_enum_field.cc49 map<string, string>* variables) {
50 SetCommonFieldVariables(descriptor, variables);
52 (*variables)["type"] = ClassName(descriptor->enum_type(), true);
53 (*variables)["default"] = SimpleItoa(default_value->number());
48 SetEnumVariables(const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Dcpp_message_field.cc48 map<string, string>* variables) {
49 SetCommonFieldVariables(descriptor, variables);
50 (*variables)["type"] = FieldMessageTypeName(descriptor);
51 (*variables)["stream_writer"] = (*variables)["declared_type"] +
47 SetMessageVariables(const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Dcpp_string_field.cc49 map<string, string>* variables) {
50 SetCommonFieldVariables(descriptor, variables);
51 (*variables)["default"] =
53 (*variables)["pointer_type"] =
48 SetStringVariables(const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Dcpp_primitive_field.cc83 map<string, string>* variables) {
84 SetCommonFieldVariables(descriptor, variables);
85 (*variables)["type"] = PrimitiveTypeName(descriptor->cpp_type());
86 (*variables)["default"] = DefaultValue(descriptor);
87 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor));
90 (*variables)["fixed_size"] = SimpleItoa(fixed_size);
92 (*variables)["wire_format_field_type"] =
82 SetPrimitiveVariables(const FieldDescriptor* descriptor, map<string, string>* variables) argument
/external/webkit/WebCore/css/
H A DCSSVariablesRule.h49 CSSVariablesDeclaration* variables() { return m_variables.get(); } function in class:WebCore::CSSVariablesRule
/external/webkit/WebCore/wml/
H A DWMLPageState.h52 void storeVariables(WMLVariableMap& variables) { m_variables = variables; } argument
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DFullFrame.java35 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
51 FullFrame(int offsetDelta, VerificationType[] variables, VerificationType[] stack) argument
66 FullFrame(int offsetDelta, int variablesCount, VerificationType[] variables, int stackCount, VerificationType[] stack) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_enum_field.cc55 map<string, string>* variables) {
56 (*variables)["name"] =
58 (*variables)["capitalized_name"] =
60 (*variables)["number"] = SimpleItoa(descriptor->number());
61 (*variables)["type"] = ClassName(descriptor->enum_type());
62 (*variables)["default"] = DefaultValue(descriptor);
63 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor));
64 (*variables)["tag_size"] = SimpleItoa(
54 SetEnumVariables(const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Djava_message_field.cc54 map<string, string>* variables) {
55 (*variables)["name"] =
57 (*variables)["capitalized_name"] =
59 (*variables)["number"] = SimpleItoa(descriptor->number());
60 (*variables)["type"] = ClassName(descriptor->message_type());
61 (*variables)["group_or_message"] =
53 SetMessageVariables(const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Djava_primitive_field.cc157 map<string, string>* variables) {
158 (*variables)["name"] =
160 (*variables)["capitalized_name"] =
162 (*variables)["number"] = SimpleItoa(descriptor->number());
163 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor));
164 (*variables)["boxed_type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor));
165 (*variables)["default"] = DefaultValue(descriptor);
166 (*variables)["capitalized_type"] = GetCapitalizedType(descriptor);
167 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor));
168 (*variables)["tag_siz
156 SetPrimitiveVariables(const FieldDescriptor* descriptor, map<string, string>* variables) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_enum_field.cc55 const FieldDescriptor* descriptor, map<string, string>* variables) {
56 (*variables)["name"] =
58 (*variables)["capitalized_name"] =
60 (*variables)["number"] = SimpleItoa(descriptor->number());
61 (*variables)["type"] = "int";
62 (*variables)["default"] = DefaultValue(params, descriptor);
63 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor));
64 (*variables)["tag_size"] = SimpleItoa(
66 (*variables)["message_name"] = descriptor->containing_type()->name();
54 SetEnumVariables(const Params& params, const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Djavamicro_message_field.cc54 const FieldDescriptor* descriptor, map<string, string>* variables) {
55 (*variables)["name"] =
57 (*variables)["capitalized_name"] =
59 (*variables)["number"] = SimpleItoa(descriptor->number());
60 (*variables)["type"] = ClassName(params, descriptor->message_type());
61 (*variables)["group_or_message"] =
64 (*variables)["message_name"] = descriptor->containing_type()->name();
65 //(*variables)["message_type"] = descriptor->message_type()->name();
53 SetMessageVariables(const Params& params, const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Djavamicro_primitive_field.cc185 map<string, string>* variables) {
186 (*variables)["name"] =
188 (*variables)["capitalized_name"] =
190 (*variables)["number"] = SimpleItoa(descriptor->number());
191 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor));
192 (*variables)["default"] = DefaultValue(params, descriptor);
193 (*variables)["boxed_type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor));
194 (*variables)["capitalized_type"] = GetCapitalizedType(descriptor);
195 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor));
196 (*variables)["tag_siz
184 SetPrimitiveVariables(const FieldDescriptor* descriptor, const Params params, map<string, string>* variables) argument
[all...]
/external/proguard/src/proguard/preverify/
H A DCodePreverifier.java245 * variables. If necessary, class constants are added to the constant pool
252 TracedVariables variables)
254 int maximumVariablesSize = variables.size();
262 Value value = variables.getValue(index);
290 Value value = variables.getValue(index);
291 Value producerValue = variables.getProducerValue(index);
498 VerificationType[] variables = fullFrame.variables;
506 // Are all variables equal?
508 equalVerificationTypes(variables, previousVariableType
248 correspondingVerificationTypes(ProgramClass programClass, ProgramMethod programMethod, CodeAttribute codeAttribute, int offset, TracedVariables variables) argument
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dprinter.cc60 void Printer::Print(const map<string, string>& variables, const char* text) { argument
96 map<string, string>::const_iterator iter = variables.find(varname);
97 if (iter == variables.end()) {
/external/proguard/src/proguard/optimize/evaluation/
H A DPartialEvaluator.java210 // Reuse the existing variables and stack objects, ensuring the right size.
211 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals);
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, argument
502 callingInstructionBlockStack.push(new MyInstructionBlock(variables,
511 private void pushInstructionBlock(TracedVariables variables, argument
525 evaluateInstructionBlockAndExceptionHandlers(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset, int endOffset) argument
552 evaluateInstructionBlock(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset) argument
591 evaluateSingleInstructionBlock(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset) argument
878 evaluateSubroutine(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int subroutineStart, java.util.Stack instructionBlockStack) argument
1097 initializeVariables(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack) argument
1255 private TracedVariables variables; field in class:PartialEvaluator.MyInstructionBlock
1260 MyInstructionBlock(TracedVariables variables, TracedStack stack, int startOffset) argument
[all...]
/external/webkit/JavaScriptCore/bytecode/
H A DCodeBlock.h610 void adoptVariables(Vector<Identifier>& variables) argument
613 m_variables.swap(variables);
/external/webkit/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp406 Vector<Identifier> variables; local
407 variables.reserveCapacity(numVariables);
409 variables.append(*varStack[i].first);
410 codeBlock->adoptVariables(variables);

Completed in 300 milliseconds

12