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

1234

/external/chromium_org/tools/gn/
H A Dvariables.h12 namespace variables { namespace
207 // Returns the built-in readonly variables.
211 // Returns the variables used by target generators.
215 } // namespace variables
/external/bison/examples/calc++/
H A Dcalc++-driver.hh24 std::map<std::string, int> variables; member in class:calcxx_driver
/external/chromium_org/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/icu/icu4c/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/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_rename_regs.c52 struct rc_list * variables; local
68 variables = rc_get_variables(c);
70 for (var_ptr = variables; var_ptr; var_ptr = var_ptr->Next) {
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_rename_regs.c52 struct rc_list * variables; local
68 variables = rc_get_variables(c);
70 for (var_ptr = variables; var_ptr; var_ptr = var_ptr->Next) {
/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 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/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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_field.cc55 map<string, string>* variables,
57 (*variables)["name"] = FieldName(descriptor);
58 (*variables)["index"] = SimpleItoa(descriptor->index());
59 (*variables)["number"] = SimpleItoa(descriptor->number());
60 (*variables)["classname"] = ClassName(FieldScope(descriptor), false);
61 (*variables)["declared_type"] = DeclaredTypeMethodName(descriptor->type());
63 (*variables)["tag_size"] = SimpleItoa(
65 (*variables)["deprecation"] = descriptor->options().deprecated()
68 (*variables)["cppget"] = "Get";
54 SetCommonFieldVariables(const FieldDescriptor* descriptor, map<string, string>* variables, const Options& options) argument
H A Dcpp_enum_field.cc49 map<string, string>* variables,
51 SetCommonFieldVariables(descriptor, variables, options);
53 (*variables)["type"] = ClassName(descriptor->enum_type(), true);
54 (*variables)["default"] = SimpleItoa(default_value->number());
48 SetEnumVariables(const FieldDescriptor* descriptor, map<string, string>* variables, const Options& options) argument
H A Dcpp_message_field.cc48 map<string, string>* variables,
50 SetCommonFieldVariables(descriptor, variables, options);
51 (*variables)["type"] = FieldMessageTypeName(descriptor);
52 (*variables)["stream_writer"] = (*variables)["declared_type"] +
47 SetMessageVariables(const FieldDescriptor* descriptor, map<string, string>* variables, const Options& options) argument
/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
/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
/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
/external/protobuf/src/google/protobuf/compiler/javanano/
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_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
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dloop_analysis.h33 * 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
81 exec_list variables; member in class:loop_variable_state
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
186 * Loop induction variables have a single increment of the form

Completed in 421 milliseconds

1234