Searched defs:variables (Results 76 - 97 of 97) sorted by path

1234

/external/proguard/src/proguard/evaluation/
H A DProcessor.java38 private final Variables variables; field in class:Processor
50 * @param variables the local variable frame.
55 public Processor(Variables variables, argument
61 this.variables = variables;
643 stack.push(variables.iload(variableIndex));
651 stack.push(variables.lload(variableIndex));
659 stack.push(variables.fload(variableIndex));
667 stack.push(variables.dload(variableIndex));
675 stack.push(variables
[all...]
H A DVariables.java30 * the respective variables.
44 * Creates a new Variables object with a given maximum number of variables.
56 public Variables(Variables variables) argument
59 this(variables.size);
62 initialize(variables);
79 // Clear the variables.
108 * variables should be cleared too,
129 // two local variables that share the same index), at some point
160 * Returns the number of variables.
300 // (corresponding to two local variables tha
[all...]
/external/proguard/src/proguard/optimize/evaluation/
H A DPartialEvaluator.java252 // Reuse the existing variables and stack objects, ensuring the right size.
253 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals);
256 // Initialize the reusable arrays and variables.
258 initializeParameters(clazz, method, codeAttribute, variables);
267 variables,
460 * Returns the variables before execution of the instruction at the given
470 * Returns the variables after execution of the instruction at the given
525 private void pushCallingInstructionBlock(TracedVariables variables, argument
529 callingInstructionBlockStack.push(new MyInstructionBlock(variables,
538 private void pushInstructionBlock(TracedVariables variables, argument
552 evaluateInstructionBlockAndExceptionHandlers(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset, int endOffset) argument
579 evaluateInstructionBlock(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset) argument
618 evaluateSingleInstructionBlock(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset) argument
898 evaluateSubroutine(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int subroutineStart, java.util.Stack instructionBlockStack) argument
1159 initializeParameters(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables) argument
1261 private TracedVariables variables; field in class:PartialEvaluator.MyInstructionBlock
1266 MyInstructionBlock(TracedVariables variables, TracedStack stack, int startOffset) argument
[all...]
/external/proguard/src/proguard/preverify/
H A DCodePreverifier.java257 * 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;
518 // Are all variables equal?
520 equalVerificationTypes(variables, previousVariableType
260 correspondingVerificationTypes(ProgramClass programClass, ProgramMethod programMethod, CodeAttribute codeAttribute, int offset, TracedVariables variables) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/cpp/
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_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_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_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
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
/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/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_enum_field.cc55 const FieldDescriptor* descriptor, map<string, string>* variables) {
56 (*variables)["name"] =
58 (*variables)["capitalized_name"] =
60 (*variables)["number"] = SimpleItoa(descriptor->number());
63 (*variables)["type"] = "java.lang.Integer";
64 (*variables)["default"] = "null";
66 (*variables)["type"] = "int";
67 (*variables)["default"] = DefaultValue(params, descriptor);
69 (*variables)["repeated_default"] =
71 (*variables)["ta
54 SetEnumVariables(const Params& params, const FieldDescriptor* descriptor, map<string, string>* variables) argument
[all...]
H A Djavanano_extension.cc81 map<string, string>* variables) {
82 (*variables)["extends"] = ClassName(params, descriptor->containing_type());
83 (*variables)["name"] = RenameJavaKeywords(UnderscoresToCamelCase(descriptor));
85 (*variables)["repeated"] = repeated ? "Repeated" : "";
86 (*variables)["type"] = GetTypeConstantName(descriptor->type());
90 (*variables)["ext_type"] = "MessageTyped";
95 (*variables)["class"] = message_type;
98 (*variables)["tag_params"] = tag;
100 (*variables)["ext_type"] = "PrimitiveTyped";
102 (*variables)["clas
80 SetVariables(const FieldDescriptor* descriptor, const Params params, map<string, string>* variables) argument
[all...]
H A Djavanano_helpers.cc552 int bitIndex, map<string, string>* variables) {
553 (*variables)["get_" + name] = GenerateGetBit(bitIndex);
554 (*variables)["set_" + name] = GenerateSetBit(bitIndex);
555 (*variables)["clear_" + name] = GenerateClearBit(bitIndex);
556 (*variables)["different_" + name] = GenerateDifferentBit(bitIndex);
551 SetBitOperationVariables(const string name, int bitIndex, map<string, string>* variables) argument
H A Djavanano_message_field.cc57 const FieldDescriptor* descriptor, map<string, string>* variables) {
58 (*variables)["name"] =
60 (*variables)["capitalized_name"] =
62 (*variables)["number"] = SimpleItoa(descriptor->number());
63 (*variables)["type"] = ClassName(params, descriptor->message_type());
64 (*variables)["group_or_message"] =
67 (*variables)["message_name"] = descriptor->containing_type()->name();
68 //(*variables)["message_type"] = descriptor->message_type()->name();
69 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor));
56 SetMessageVariables(const Params& params, const FieldDescriptor* descriptor, map<string, string>* variables) argument
H A Djavanano_primitive_field.cc190 map<string, string>* variables) {
191 (*variables)["name"] =
193 (*variables)["capitalized_name"] =
195 (*variables)["number"] = SimpleItoa(descriptor->number());
198 (*variables)["type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor));
200 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor));
211 (*variables)["default"] = DefaultValue(params, descriptor);
212 (*variables)["default_constant"] = FieldDefaultConstantName(descriptor);
213 (*variables)["default_constant_value"] = strings::Substitute(
216 (*variables)["default_copy_if_neede
189 SetPrimitiveVariables(const FieldDescriptor* descriptor, const Params params, map<string, string>* 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/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 342 milliseconds

1234