Searched defs:vars (Results 76 - 100 of 124) sorted by relevance

12345

/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_message.cc490 map<string, string> vars; local
491 vars["classname"] = class_name_;
492 vars["rootclassname"] = root_classname_;
493 vars["fields"] = has_fields ? "fields" : "NULL";
495 vars["fields_count"] =
498 vars["fields_count"] = "0";
508 vars["init_flags"] = BuildFlagsString(init_flags);
511 vars,
/external/protobuf/src/google/protobuf/io/
H A Dprinter.cc181 map<string, string> vars; local
182 vars[variable] = value;
183 Print(vars, text);
189 map<string, string> vars; local
190 vars[variable1] = value1;
191 vars[variable2] = value2;
192 Print(vars, text);
199 map<string, string> vars; local
200 vars[variable1] = value1;
201 vars[variable
211 map<string, string> vars; local
225 map<string, string> vars; local
241 map<string, string> vars; local
259 map<string, string> vars; local
279 map<string, string> vars; local
[all...]
/external/skia/src/gpu/glsl/
H A DGrGLSLShaderBuilder.cpp186 void GrGLSLShaderBuilder::appendDecls(const VarArray& vars, SkString* out) const { argument
187 for (int i = 0; i < vars.count(); ++i) {
188 vars[i].appendDecl(fProgramBuilder->shaderCaps(), out);
/external/sl4a/ScriptingLayerForAndroid/jni/
H A Dcom_googlecode_android_scripting_Exec.cpp35 int CreateSubprocess(const char* cmd, char* args[], char* vars[], char *wkdir, pid_t* pid) { argument
68 execve(cmd, args, vars);
145 char* vars[len + 1]; local
149 vars[i] = var_native;
151 vars[len] = NULL;
153 int ptm = CreateSubprocess(cmd_native, args, vars, wkdir_native, &pid);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DNodeSequence.java708 public void fixupVariables(Vector vars, int globalsSize) argument
710 super.fixupVariables(vars, globalsSize);
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXObject.java717 public void fixupVariables(java.util.Vector vars, int globalsSize) argument
/external/flatbuffers/src/
H A Didl_gen_grpc.cpp99 void Print(const std::map<std::string, std::string> &vars, argument
102 // Replace any occurrences of strings in "vars" that are surrounded
110 auto it = vars.find(s.substr(pos + 1, pos2 - pos - 1));
112 if (it == vars.end()) break;
/external/mksh/src/
H A Dos2.c154 const char *vars[] = { local
163 for (flag = 0; vars[flag]; flag++) {
166 setenv(vars[flag], val, 1);
H A Dsyn.c268 XPtrV args, vars; local
274 XPinit(vars, 16);
282 XPfree(vars);
328 XPput(vars, yylval.cp);
334 if (XPsize(args) == 0 && XPsize(vars) == 1 &&
341 /* manipulate the vars string */
342 tcp = XPptrv(vars)[(vars.len = 0)];
366 XPsize(vars) == 0) {
373 XPsize(vars) !
[all...]
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.cc508 map<string, string> vars; local
510 vars[var1] = val1;
513 vars[var2] = val2;
516 vars, file, options, printer, with_static_init, without_static_init);
519 void PrintHandlingOptionalStaticInitializers(const map<string, string>& vars, argument
526 printer->Print(vars, with_static_init);
528 printer->Print(vars, (string(
H A Dcpp_message.cc475 map<string, string> vars; local
476 SetCommonFieldVariables(field, &vars, options_);
482 printer->Print(vars, "$deprecated_attr$void clear_$name$();\n");
497 map<string, string> vars; local
498 SetCommonFieldVariables(field, &vars, options_);
499 vars["constant_name"] = FieldConstantName(field);
517 printer->Print(vars, "$deprecated_attr$int $name$_size() const;\n");
519 printer->Print(vars, "$deprecated_attr$bool has_$name$() const;\n");
521 printer->Print(vars,
530 printer->Print(vars, "
578 map<string, string> vars; local
614 GenerateSingularFieldHasBits(const FieldDescriptor* field, map<string, string> vars, io::Printer* printer) argument
660 map<string, string> vars; local
681 GenerateOneofMemberHasBits(const FieldDescriptor* field, const map<string, string>& vars, io::Printer* printer) argument
703 GenerateFieldClear(const FieldDescriptor* field, const map<string, string>& vars, io::Printer* printer) argument
752 map<string, string> vars; local
839 map<string, string> vars; local
879 map<string, string> vars; local
1470 map<string, string> vars; local
1538 map<string, string> vars; local
1662 map<string, string> vars; local
3263 map<string, string> vars; local
[all...]
/external/v8/src/compiler/
H A Dgraph-assembler.h291 template <class LabelType, typename... vars>
292 void Goto(LabelType* label, vars...);
299 template <class LabelType, typename... vars>
300 void GotoIf(Node* condition, LabelType* label, vars...);
303 template <class LabelType, typename... vars>
304 void GotoUnless(Node* condition, LabelType* label, vars...);
312 void MergeState(LabelType label, Vars... vars);
339 void GraphAssembler::MergeState(LabelType label, Vars... vars) { argument
343 DCHECK_EQ(label->PhiCount(), sizeof...(vars));
347 Node* var_array[] = {nullptr, vars
395 Goto(LabelType* label, Vars... vars) argument
404 GotoIf(Node* condition, LabelType* label, Vars... vars) argument
417 GotoUnless(Node* condition, LabelType* label, Vars... vars) argument
[all...]
H A Dcode-assembler.cc745 CodeAssemblerVariable** vars,
756 variable_phis_[vars[i]->impl_] = nullptr;
743 CodeAssemblerLabel(CodeAssembler* assembler, size_t vars_count, CodeAssemblerVariable** vars, CodeAssemblerLabel::Type type) argument
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java998 LocalVariableAttribute vars, types; field in class:CodeIterator.Pointers
1008 vars = (LocalVariableAttribute)ca.getAttribute(LocalVariableAttribute.tag);
1028 if (vars != null)
1029 vars.shiftPc(where, gapLength, exclusive);
/external/mesa3d/src/gallium/drivers/ilo/shader/
H A Dilo_shader_gs.c85 } vars; member in struct:gs_compile_context
156 dst = gcc->vars.urb_write_header;
160 gcc->vars.prim_start = true;
161 gcc->vars.prim_end = false;
164 gcc->vars.prim_type = GEN6_3DPRIM_POINTLIST;
167 gcc->vars.prim_type = GEN6_3DPRIM_LINESTRIP;
170 gcc->vars.prim_type = GEN6_3DPRIM_TRISTRIP;
175 tc_MOV(tc, gcc->vars.so_written, tsrc_imm_d(0));
182 const struct toy_dst buf = gcc->vars.buffers[gcc->vars
[all...]
/external/skia/src/sksl/
H A DSkSLParser.cpp491 std::vector<ASTVarDeclaration> vars; local
514 vars.emplace_back(std::move(name), std::move(currentVarSizes), std::move(value));
542 vars.emplace_back(std::move(name.fText), std::move(currentVarSizes), std::move(value));
549 std::move(vars)));
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DVmMirror.java1916 ArrayList<Variable> vars = new ArrayList<Variable>(slots);
1924 vars.add(var);
1927 return vars;
2404 List<Variable> vars = getVariableTable(frame.getLocation().classID, frame
2406 if (vars == null) {
2413 for (int i = 0; i < vars.size(); i++) {
2414 Variable var = (Variable) vars.toArray()[i];
2418 vars.remove(i);
2424 return vars;
2432 * @param vars
2437 setLocalVars(Frame frame, Variable[] vars, Value[] values) argument
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_report.cc423 InternalMmapVector<StackVarDescr> *vars) {
442 vars->push_back(var);
485 InternalMmapVector<StackVarDescr> vars(16);
486 if (!ParseFrameDescription(access.frame_descr, &vars)) {
492 uptr n_objects = vars.size();
498 uptr prev_var_end = i ? vars[i - 1].beg + vars[i - 1].size : 0;
499 uptr next_var_beg = i + 1 < n_objects ? vars[i + 1].beg : ~(0UL);
500 PrintAccessAndVarIntersection(vars[i], access.offset, access_size,
422 ParseFrameDescription(const char *frame_descr, InternalMmapVector<StackVarDescr> *vars) argument
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3_compiler_nir.c2184 max_drvloc(struct exec_list *vars) argument
2187 nir_foreach_variable(var, vars) {
/external/v8/src/ic/
H A Daccessor-assembler.cc153 Variable* vars[] = {&var_holder, &var_smi_handler}; local
154 Label if_smi_handler(this, 2, vars);
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_program.c1566 nir_variable *vars[num_entries]; local
1570 vars[i++] = var;
1577 qsort(&vars, num_entries, sizeof(*vars), driver_location_compare);
1580 nir_variable *var = vars[i];
/external/v8/src/builtins/
H A Dbuiltins-regexp.cc112 Variable* vars[] = {&var_from_cursor, &var_to_cursor}; local
113 Label loop(this, 2, vars);
189 Variable* vars[] = {&var_i}; local
190 const int vars_count = sizeof(vars) / sizeof(vars[0]);
191 Label loop(this, vars_count, vars);
1601 Variable* vars[] = {array.var_array(), array.var_length(), local
1603 Label loop(this, 3, vars), out(this);
1950 Variable* vars[] = {array.var_array(), array.var_length(), local
1953 const int vars_count = sizeof(vars) / sizeo
2035 Variable* vars[] = {array.var_array(), array.var_length(), local
2291 Variable* vars[] = {&var_i, &var_match_start}; local
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dpriv_storage.h480 XArray* /* of DiVariable */ vars; member in struct:__anon24496
963 that exist for any value of the PC (that is, global vars), it
H A Ddebuginfo.c284 vg_assert(arange->vars);
285 for (j = 0; j < VG_(sizeXA)( arange->vars ); j++) {
286 DiVariable* var = (DiVariable*)VG_(indexXA)(arange->vars,j);
292 VG_(deleteXA)(arange->vars);
3223 /* ignore zero-sized vars; they can never match anything. */
3616 XArray* vars; local
3639 vars = arange->vars;
3640 vg_assert(vars);
3644 address range, but in that case the vars arra
3714 XArray* vars; local
4057 XArray* vars; local
[all...]
/external/v8/src/
H A Dcode-stub-assembler.cc2163 Variable* vars[] = {&var_from_offset, &var_to_offset}; local
2164 Label decrement(this, 2, vars);
2279 VariableList vars({&current_to_offset}, zone());
2291 BuildFastLoop(vars, from_offset, limit_offset,
5133 Variable* vars[] = {var_value, &var_details};
5134 Label if_found(this, 2, vars);
6278 const CodeStubAssembler::VariableList& vars, Node* start_index,
6285 VariableList vars_copy(vars, zone());
6313 const CodeStubAssembler::VariableList& vars, Node* fixed_array,
6357 vars, star
[all...]

Completed in 1106 milliseconds

12345