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

1234567891011>>

/external/chromium_org/third_party/icu/source/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...]
/external/icu/icu4c/source/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...]
/external/chromium_org/tools/gn/
H A Dscope_per_file_provider_unittest.cc11 #include "tools/gn/variables.h"
25 EXPECT_EQ("//toolchain:default", GPV(variables::kCurrentToolchain));
28 //EXPECT_EQ("//toolchain:default", GPV(variables::kDefaultToolchain));
29 EXPECT_EQ("//out/Debug", GPV(variables::kRootBuildDir));
30 EXPECT_EQ("//out/Debug/gen", GPV(variables::kRootGenDir));
31 EXPECT_EQ("//out/Debug", GPV(variables::kRootOutDir));
32 EXPECT_EQ("//out/Debug/gen/source", GPV(variables::kTargetGenDir));
33 EXPECT_EQ("//out/Debug/obj/source", GPV(variables::kTargetOutDir));
46 EXPECT_EQ("//toolchain:tc", GPV(variables::kCurrentToolchain));
48 //EXPECT_EQ("//toolchain:default", GPV(variables
[all...]
H A Dscope_per_file_provider.cc11 #include "tools/gn/variables.h"
24 if (ident == variables::kCurrentToolchain)
26 if (ident == variables::kDefaultToolchain)
28 if (ident == variables::kPythonPath)
31 if (ident == variables::kRootBuildDir)
33 if (ident == variables::kRootGenDir)
35 if (ident == variables::kRootOutDir)
39 if (ident == variables::kTargetGenDir)
41 if (ident == variables::kTargetOutDir)
H A Dcommand_help.cc17 #include "tools/gn/variables.h"
75 // Built-in variables.
76 OutputString("\nBuilt-in predefined variables (type \"gn help <variable>\" "
78 const variables::VariableInfoMap& builtin_vars =
79 variables::GetBuiltinVariables();
80 for (variables::VariableInfoMap::const_iterator i = builtin_vars.begin();
84 // Target variables.
87 const variables::VariableInfoMap& target_vars =
88 variables::GetTargetVariables();
89 for (variables
[all...]
/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...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-liveedit-double-call.js39 var variables = { a: 1, b: 1, c: 1, d: 1, e: 1, f: 1 };
45 " test_output += 'a' + " + variables.a + ";\n " +
51 " test_output += 'b' + " + variables.b + ";\n " +
55 " test_output += 'c' + " + variables.c + ";\n " +
60 " test_output += 'd' + " + variables.d + ";\n " +
65 " test_output += 'e' + " + variables.e + ";\n " +
69 " test_output += 'f' + " + variables.f + ";\n " +
76 variables[var_name]++;
/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
/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/chromium_org/tools/gyp/test/variables/commands/
H A Dupdate_golden7 python ../../../gyp --debug variables --format gypd --depth . commands.gyp > commands.gyp.stdout
8 python ../../../gyp --ignore-environment --debug variables --format gypd --depth . commands.gyp > commands.gyp.ignore-env.stdout
10 python ../../../gyp --debug variables --format gypd --depth . commands-repeated.gyp > commands-repeated.gyp.stdout
/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
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_string_field.cc60 map<string, string>* variables) {
61 (*variables)["name"] =
63 (*variables)["capitalized_name"] =
65 (*variables)["constant_name"] = FieldConstantName(descriptor);
66 (*variables)["number"] = SimpleItoa(descriptor->number());
67 (*variables)["empty_list"] = "com.google.protobuf.LazyStringArrayList.EMPTY";
69 (*variables)["default"] = DefaultValue(descriptor);
70 (*variables)["default_init"] = ("= " + DefaultValue(descriptor));
71 (*variables)["capitalized_type"] = "String";
72 (*variables)["ta
57 SetPrimitiveVariables(const FieldDescriptor* descriptor, int messageBitIndex, int builderBitIndex, map<string, string>* variables) argument
[all...]
H A Djava_primitive_field.cc160 map<string, string>* variables) {
161 (*variables)["name"] =
163 (*variables)["capitalized_name"] =
165 (*variables)["constant_name"] = FieldConstantName(descriptor);
166 (*variables)["number"] = SimpleItoa(descriptor->number());
167 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor));
168 (*variables)["boxed_type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor));
169 (*variables)["field_type"] = (*variables)["type"];
170 (*variables)["field_list_typ
157 SetPrimitiveVariables(const FieldDescriptor* descriptor, int messageBitIndex, int builderBitIndex, map<string, string>* variables) argument
[all...]
H A Djava_enum_field.cc58 map<string, string>* variables) {
59 (*variables)["name"] =
61 (*variables)["capitalized_name"] =
63 (*variables)["constant_name"] = FieldConstantName(descriptor);
64 (*variables)["number"] = SimpleItoa(descriptor->number());
65 (*variables)["type"] = ClassName(descriptor->enum_type());
66 (*variables)["default"] = DefaultValue(descriptor);
67 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor));
68 (*variables)["tag_size"] = SimpleItoa(
72 (*variables)["deprecatio
55 SetEnumVariables(const FieldDescriptor* descriptor, int messageBitIndex, int builderBitIndex, map<string, string>* variables) argument
[all...]
/external/bison/examples/calc++/
H A Dcalc++-driver.cc8 variables["one"] = 1;
9 variables["two"] = 2;
/external/chromium_org/tools/gyp/test/variables/filelist/
H A Dupdate_golden7 python ../../../gyp --debug variables --debug general --format gypd --depth . src/filelist.gyp > filelist.gyp.stdout
/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/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinition.cpp218 // Default block variables
220 for (int varNdx = 0; varNdx < (int)m_defaultBlock.variables.size(); ++varNdx)
223 if (m_defaultBlock.variables[varNdx].layout.binding == -1 &&
224 containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeAtomicCounter))
228 if (m_defaultBlock.variables[varNdx].varType.isStructType() &&
229 containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeAtomicCounter))
234 if (m_defaultBlock.variables[varNdx].layout.matrixOrder != glu::MATRIXORDER_LAST)
237 if (containsMatchingSubtype(m_defaultBlock.variables[varNdx].varType, glu::isDataTypeSampler))
239 const glu::Layout layoutWithLocationAndBinding(m_defaultBlock.variables[varNdx].layout.location, m_defaultBlock.variables[varNd
[all...]
/external/wpa_supplicant_8/
H A DAndroid.mk5 # TODO: Clean up the Android.mks, reset all the temporary variables at the
6 # end of each Android.mk, so that one Android.mk doesn't depend on variables
/external/chromium_org/v8/tools/testrunner/local/
H A Dstatusfile.py99 def _ParseOutcomeList(rule, outcomes, target_dict, variables):
107 if not eval(item[0], variables): continue
120 def ReadStatusFile(path, variables):
127 variables.update(VARIABLES)
131 if not eval(section[0], variables): continue
137 _ParseOutcomeList(rule, section[rule], wildcards, variables)
139 _ParseOutcomeList(rule, section[rule], rules, variables)
/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
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DVariablePacker.cpp216 TVariableInfoList variables(in_variables);
219 for (size_t i = 0; i < variables.size(); i++) {
220 const TVariableInfo& variable = variables[i];
226 // As per GLSL 1.017 Appendix A, Section 7 variables are packed in specific
228 std::sort(variables.begin(), variables.end(), TVariableInfoComparer());
232 // Packs the 4 column variables.
234 for (; ii < variables.size(); ++ii) {
235 const TVariableInfo& variable = variables[ii];
246 // Packs the 3 column variables
[all...]

Completed in 628 milliseconds

1234567891011>>