Searched defs:vars (Results 1 - 25 of 99) sorted by relevance

1234

/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dprinter_unittest.cc122 map<string, string> vars; local
124 vars["foo"] = "World";
125 vars["bar"] = "$foo$";
126 vars["abcdefg"] = "1234";
128 printer.Print(vars, "Hello $foo$!\nbar = $bar$\n");
130 printer.Print(vars, "$abcdefg$\nA literal dollar sign: $$");
132 vars["foo"] = "blah";
133 printer.Print(vars, "\nNow foo = $foo$.");
179 map<string, string> vars; local
181 vars["newlin
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dprinter_unittest.cc122 map<string, string> vars; local
124 vars["foo"] = "World";
125 vars["bar"] = "$foo$";
126 vars["abcdefg"] = "1234";
128 printer.Print(vars, "Hello $foo$!\nbar = $bar$\n");
130 printer.Print(vars, "$abcdefg$\nA literal dollar sign: $$");
132 vars["foo"] = "blah";
133 printer.Print(vars, "\nNow foo = $foo$.");
179 map<string, string> vars; local
181 vars["newlin
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DUnionChildIterator.java87 * @param vars List of QNames that correspond to variables. This list
94 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
96 super.fixupVariables(vars, globalsSize);
99 m_nodeTests[i].fixupVariables(vars, globalsSize);
H A DWalkingIteratorSorted.java189 * @param vars List of QNames that correspond to variables. This list
196 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
198 super.fixupVariables(vars, globalsSize);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncCurrent.java77 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
H A DFuncFalse.java51 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
H A DFuncLast.java101 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
H A DFuncPosition.java130 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
H A DFuncTrue.java51 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
H A DFunction2Args.java54 * @param vars List of QNames that correspond to variables. This list
61 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
63 super.fixupVariables(vars, globalsSize);
65 m_arg1.fixupVariables(vars, globalsSize);
H A DFunction3Args.java54 * @param vars List of QNames that correspond to variables. This list
61 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
63 super.fixupVariables(vars, globalsSize);
65 m_arg2.fixupVariables(vars, globalsSize);
H A DFunctionMultiArgs.java93 * @param vars List of QNames that correspond to variables. This list
100 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
102 super.fixupVariables(vars, globalsSize);
107 m_args[i].fixupVariables(vars, globalsSize);
/external/chromium_org/third_party/angle/tests/compiler_tests/
H A DVariablePacker_test.cpp68 std::vector<sh::ShaderVariable> vars; local
70 // test no vars.
71 EXPECT_TRUE(packer.CheckVariablesWithinPackingLimits(kMaxRows, vars));
78 vars.clear();
79 vars.push_back(sh::ShaderVariable(type, 0));
80 EXPECT_TRUE(packer.CheckVariablesWithinPackingLimits(kMaxRows, vars));
84 vars.clear();
85 vars.push_back(sh::ShaderVariable(type, num_vars == 1 ? 0 : num_vars));
86 EXPECT_TRUE(packer.CheckVariablesWithinPackingLimits(kMaxRows, vars));
89 vars
154 std::vector<sh::ShaderVariable> vars; local
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_enum.cc86 map<string, string> vars; local
87 vars["name"] = canonical_values_[i]->name();
88 vars["index"] = SimpleItoa(canonical_values_[i]->index());
89 vars["number"] = SimpleItoa(canonical_values_[i]->number());
91 printer->Print(vars,
102 map<string, string> vars; local
103 vars["classname"] = descriptor_->name();
104 vars["name"] = aliases_[i].value->name();
105 vars["canonical_name"] = aliases_[i].canonical_value->name();
107 printer->Print(vars,
112 map<string, string> vars; local
[all...]
H A Djava_extension.cc90 // Initializes the vars referenced in the generated code templates.
94 map<string, string> &vars = *vars_pointer; local
95 vars["scope"] = scope;
96 vars["name"] = UnderscoresToCamelCase(descriptor);
97 vars["containing_type"] = ClassName(descriptor->containing_type());
98 vars["number"] = SimpleItoa(descriptor->number());
99 vars["constant_name"] = FieldConstantName(descriptor);
100 vars["index"] = SimpleItoa(descriptor->index());
101 vars["default"] =
103 vars["type_constan
129 map<string, string> vars; local
[all...]
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_enum.cc84 map<string, string> vars; local
85 vars["name"] = canonical_values_[i]->name();
86 vars["index"] = SimpleItoa(canonical_values_[i]->index());
87 vars["number"] = SimpleItoa(canonical_values_[i]->number());
88 printer->Print(vars,
99 map<string, string> vars; local
100 vars["classname"] = descriptor_->name();
101 vars["name"] = aliases_[i].value->name();
102 vars["canonical_name"] = aliases_[i].canonical_value->name();
103 printer->Print(vars,
[all...]
H A Djava_extension.cc90 map<string, string> vars; local
91 vars["name"] = UnderscoresToCamelCase(descriptor_);
92 vars["containing_type"] = ClassName(descriptor_->containing_type());
93 vars["number"] = SimpleItoa(descriptor_->number());
94 vars["constant_name"] = FieldConstantName(descriptor_);
95 vars["lite"] = HasDescriptorMethods(descriptor_->file()) ? "" : "Lite";
101 vars["type"] = ClassName(descriptor_->message_type());
104 vars["type"] = ClassName(descriptor_->enum_type());
107 vars["type"] = BoxedPrimitiveTypeName(java_type);
111 printer->Print(vars,
133 map<string, string> vars; local
[all...]
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_enum.cc73 map<string, string> vars; local
74 vars["name"] = canonical_values_[i]->name();
75 vars["canonical_value"] = SimpleItoa(canonical_values_[i]->number());
76 printer->Print(vars,
83 map<string, string> vars; local
84 vars["name"] = aliases_[i].value->name();
85 vars["canonical_name"] = aliases_[i].canonical_value->name();
86 printer->Print(vars,
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAVTPart.java84 * @param vars List of QNames that correspond to variables. This list
91 public abstract void fixupVariables(java.util.Vector vars, int globalsSize); argument
H A DAVTPartSimple.java62 * @param vars List of QNames that correspond to variables. This list
69 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
H A DAVTPartXPath.java47 * @param vars List of QNames that correspond to variables. This list
54 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
56 m_xpath.fixupVariables(vars, globalsSize);
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFragSelectWrapper.java44 * @param vars List of QNames that correspond to variables. This list
51 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
53 ((Expression)m_obj).fixupVariables(vars, globalsSize);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DInitializeVariables.h28 InitializeVariables(const InitVariableInfoList &vars) argument
30 mVariables(vars)
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_extension.cc95 map<string, string> vars; local
96 vars["extendee" ] = ExtendeeClassName(descriptor_);
97 vars["number" ] = SimpleItoa(descriptor_->number());
98 vars["type_traits" ] = type_traits_;
99 vars["name" ] = descriptor_->name();
100 vars["field_type" ] = SimpleItoa(static_cast<int>(descriptor_->type()));
101 vars["packed" ] = descriptor_->options().packed() ? "true" : "false";
102 vars["constant_name"] = FieldConstantName(descriptor_);
108 vars["qualifier"] = "extern";
110 vars["qualifie
131 map<string, string> vars; local
170 map<string, string> vars; local
[all...]
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_extension.cc95 map<string, string> vars; local
96 vars["extendee" ] = ExtendeeClassName(descriptor_);
97 vars["number" ] = SimpleItoa(descriptor_->number());
98 vars["type_traits" ] = type_traits_;
99 vars["name" ] = descriptor_->name();
100 vars["field_type" ] = SimpleItoa(static_cast<int>(descriptor_->type()));
101 vars["packed" ] = descriptor_->options().packed() ? "true" : "false";
102 vars["constant_name"] = FieldConstantName(descriptor_);
108 vars["qualifier"] = "extern";
110 vars["qualifie
131 map<string, string> vars; local
170 map<string, string> vars; local
[all...]

Completed in 5809 milliseconds

1234