Searched refs:variables (Results 1 - 25 of 198) sorted by relevance

12345678

/external/icu4c/i18n/
H A Drbt_data.cpp26 variables(0), variablesAreOwned(TRUE)
32 variables = 0;
57 variables = 0;
58 if (other.variables != 0) {
59 variables = (UnicodeFunctor **)uprv_malloc(variablesLength * sizeof(UnicodeFunctor *));
61 if (variables == 0) {
66 variables[i] = other.variables[i]->clone();
67 if (variables[i] == NULL) {
76 delete variables[
[all...]
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/dhcpcd/mk/
H A Dos-BSD.mk1 # Setup OS specific variables
H A Dos-Darwin.mk1 # Setup OS specific variables
H A Dos-Linux.mk1 # Setup OS specific variables
H A Dos.mk1 # Setup OS specific variables
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.variables_3.2.400.v20100505.jar ... eclipse/core/ org/eclipse/core/internal/ org/eclipse/core/internal/variables/ org/eclipse/core/internal/variables/ContributedValueVariable.class ContributedValueVariable.
/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
/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/java/
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...]
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
/external/bluetooth/bluedroid/
H A DAndroid.mk3 # Setup bdroid local make variables for handling configuration
/external/libyuv/
H A Dpublic.mk1 # This file contains all the common make variables which are useful for
/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/compiler-rt/make/
H A Dsubdir.mk21 # The list of variables which are intended to be overridden in a subdirectory
39 # Reset subdirectory specific variables to sentinel value.
43 # Get the subdirectory variables.
53 # Check for undefined required variables, and unset sentinel value from optional
54 # variables.
62 # Collect all subdirectory variables for subsequent use.
/external/webkit/Source/WebCore/wml/
H A DWMLTaskElement.cpp95 WMLVariableMap variables;
107 variables.set(name, value);
114 pageState->storeVariables(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
/external/srec/audio/AudioIn/UNIX/src/
H A DAndroid.mk6 # common settings for all ASR builds, exports some variables for sub-makes
/external/srec/audio/test/AudioHardwareRecord/
H A DAndroid.mk6 # common settings for all ASR builds, exports some variables for sub-makes
/external/srec/audio/test/AudioHardwareRecordLoop/
H A DAndroid.mk6 # common settings for all ASR builds, exports some variables for sub-makes
/external/srec/audio/test/AudioInRecord/
H A DAndroid.mk6 # common settings for all ASR builds, exports some variables for sub-makes

Completed in 1548 milliseconds

12345678