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

1 2 3 4 5 6 7 8

  /external/chromium/third_party/icu/source/i18n/
rbt_data.cpp 26 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[n]
    [all...]
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/icu4c/i18n/
rbt_data.cpp 26 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[n]
    [all...]
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/dhcpcd/mk/
os-BSD.mk 1 # Setup OS specific variables
os-Darwin.mk 1 # Setup OS specific variables
os-Linux.mk 1 # Setup OS specific variables
os.mk 1 # Setup OS specific variables
  /external/webkit/WebCore/css/
CSSVariablesRule.idl 30 readonly attribute CSSVariablesDeclaration variables;
CSSVariablesRule.h 49 CSSVariablesDeclaration* variables() { return m_variables.get(); } function in class:WebCore::CSSVariablesRule
  /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...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 55 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()
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_enum_field.cc 55 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();
javamicro_message_field.cc 54 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();
javamicro_primitive_field.cc 185 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_size"] = SimpleItoa
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_primitive_field.cc 157 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_size"] = SimpleItoa
    [all...]
java_enum_field.cc 55 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(
java_message_field.cc 54 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"] =
  /external/webkit/WebCore/wml/
WMLPageState.h 52 void storeVariables(WMLVariableMap& variables) { m_variables = variables; }
WMLTaskElement.cpp 95 WMLVariableMap variables;
107 variables.set(name, value);
114 pageState->storeVariables(variables);
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 210 // Reuse the existing variables and stack objects, ensuring the right size.
211 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals); local
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,
502 callingInstructionBlockStack.push(new MyInstructionBlock(variables,
511 private void pushInstructionBlock(TracedVariables variables,
1030 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals); local
    [all...]
  /external/proguard/src/proguard/evaluation/
InvocationUnit.java 29 * This interface sets up the variables for entering a method,
37 * Sets up the given variables for entering the given method.
41 Variables variables);
  /external/v8/test/mjsunit/compiler/
assignment.js 49 // Test compound assignments in an anonymous function with local variables.
71 // Test compound assignments in an anonymous function with global variables.
93 // Test compound assignments in a named function with local variables.
117 // Test compound assignments in a named function with global variables.
166 // Test compound assignments in an anonymous function with local variables.
190 // Test compound assignments in an anonymous function with global variables.
214 // Test compound assignments in a named function with local variables.
240 // Test compound assignments in a named function with global variables.
  /external/srec/audio/AudioIn/UNIX/src/
Android.mk 6 # common settings for all ASR builds, exports some variables for sub-makes
  /external/srec/audio/test/AudioHardwareRecord/
Android.mk 6 # common settings for all ASR builds, exports some variables for sub-makes

Completed in 125 milliseconds

1 2 3 4 5 6 7 8