Searched defs:vars (Results 1 - 25 of 95) sorted by last modified time

1234

/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c276 vg_assert(arange->vars);
277 for (j = 0; j < VG_(sizeXA)( arange->vars ); j++) {
278 DiVariable* var = (DiVariable*)VG_(indexXA)(arange->vars,j);
284 VG_(deleteXA)(arange->vars);
2762 /* ignore zero-sized vars; they can never match anything. */
3151 XArray* vars; local
3174 vars = arange->vars;
3175 vg_assert(vars);
3179 address range, but in that case the vars arra
3252 XArray* vars; local
3595 XArray* vars; local
[all...]
H A Dpriv_storage.h441 XArray* /* of DiVariable */ vars; member in struct:__anon31556
837 that exist for any value of the PC (that is, global vars), it
/external/svox/pico/lib/
H A Dpicopr.c340 pr_OutItemVarPtr vars,
1290 static pr_OutItemVarPtr pr_findVariable (pr_OutItemVarPtr vars, picoos_int32 id) argument
1292 while ((vars != NULL) && (vars->id != id)) {
1293 vars = vars->next;
1295 if ((vars != NULL)) {
1296 return vars;
1304 picokpr_Preproc network, picokpr_OutItemArrOffset outitem, pr_OutItemVarPtr vars, pr_ioItemPtr * first, pr_ioItemPtr * last)
1367 lvar = pr_findVariable(vars,picokpr_getOutItemVa
1303 pr_genCommands(picodata_ProcessingUnit this, pr_subobj_t * pr, picokpr_Preproc network, picokpr_OutItemArrOffset outitem, pr_OutItemVarPtr vars, pr_ioItemPtr * first, pr_ioItemPtr * last) argument
1669 pr_getOutputItemList(picodata_ProcessingUnit this, pr_subobj_t * pr, picokpr_Preproc network, picokpr_OutItemArrOffset outitem, pr_OutItemVarPtr vars, pr_ioItemPtr * first, pr_ioItemPtr * last) argument
[all...]
/external/skia/src/gpu/gl/
H A DGrGLShaderBuilder.cpp582 void GrGLShaderBuilder::appendDecls(const VarArray& vars, SkString* out) const { argument
583 for (int i = 0; i < vars.count(); ++i) {
584 vars[i].appendDecl(this->ctxInfo(), out);
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_enum.cc58 map<string, string> vars; local
59 vars["classname"] = classname_;
60 vars["short_name"] = descriptor_->name();
62 printer->Print(vars, "enum $classname$ {\n");
69 vars["name"] = descriptor_->value(i)->name();
70 vars["number"] = SimpleItoa(descriptor_->value(i)->number());
71 vars["prefix"] = (descriptor_->containing_type() == NULL) ?
75 printer->Print(vars, "$prefix$$name$ = $number$");
88 vars["min_name"] = min_value->name();
89 vars["max_nam
135 map<string, string> vars; local
177 map<string, string> vars; local
192 map<string, string> vars; local
[all...]
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...]
H A Dcpp_message.cc219 map<string, string> vars; local
220 SetCommonFieldVariables(field, &vars);
221 vars["constant_name"] = FieldConstantName(field);
224 printer->Print(vars, "inline int $name$_size() const$deprecation$;\n");
226 printer->Print(vars, "inline bool has_$name$() const$deprecation$;\n");
229 printer->Print(vars, "inline void clear_$name$()$deprecation$;\n");
230 printer->Print(vars, "static const int $constant_name$ = $number$;\n");
256 map<string, string> vars; local
257 SetCommonFieldVariables(field, &vars);
261 printer->Print(vars,
303 map<string, string> vars; local
555 map<string, string> vars; local
964 map<string, string> vars; local
1132 map<string, string> vars; local
1448 map<string, string> vars; local
[all...]
H A Dcpp_service.cc164 map<string, string> vars; local
165 vars["classname"] = descriptor_->name();
166 vars["index"] = SimpleItoa(index);
168 printer->Print(vars,
/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...]
H A Djava_message.cc165 map<string, string> vars; local
166 vars["identifier"] = UniqueFileScopeIdentifier(descriptor_);
167 vars["index"] = SimpleItoa(descriptor_->index());
168 vars["classname"] = ClassName(descriptor_);
170 vars["parent"] = UniqueFileScopeIdentifier(
176 vars["private"] = "";
178 vars["private"] = "private ";
182 printer->Print(vars,
187 printer->Print(vars,
204 map<string, string> vars; local
[all...]
H A Djava_service.cc185 map<string, string> vars; local
186 vars["index"] = SimpleItoa(i);
187 vars["method"] = UnderscoresToCamelCase(method);
188 vars["input"] = ClassName(method->input_type());
189 vars["output"] = ClassName(method->output_type());
190 printer->Print(vars,
230 map<string, string> vars; local
231 vars["index"] = SimpleItoa(i);
232 vars["method"] = UnderscoresToCamelCase(method);
233 vars["inpu
275 map<string, string> vars; local
327 map<string, string> vars; local
391 map<string, string> vars; local
414 map<string, string> vars; local
429 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/protobuf/src/google/protobuf/io/
H A Dprinter.cc121 map<string, string> vars; local
122 vars[variable] = value;
123 Print(vars, text);
129 map<string, string> vars; local
130 vars[variable1] = value1;
131 vars[variable2] = value2;
132 Print(vars, text);
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/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosvideo.c165 int vars[4], vals[3]; local
173 vars[0] = 9; /* Log base 2 bpp */
174 vars[1] = 11; /* XWndLimit - num x pixels -1 */
175 vars[2] = 12; /* YWndLimit - num y pixels -1 */
176 vars[3] = -1; /* Terminate list */
177 regs.r[0] = (int)vars;
H A DSDL_wimpvideo.c202 int vars[6]; local
205 vars[0] = 4; /* XEig */
206 vars[1] = 5; /* YEig */
207 vars[2] = 9; /* Log base 2 bpp */
208 vars[3] = 11; /* Screen Width - 1 */
209 vars[4] = 12; /* Screen Depth - 1 */
210 vars[5] = -1; /* Terminate list */
212 regs.r[0] = (int)vars;
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/mksh/src/
H A Dsh.h1212 struct table vars; /* local variables */ member in struct:block
1261 char **vars; /* variable assignments */ member in struct:op
1389 * indicating how the arguments have been munged are kept in t->vars[].
1390 * The contents of t->vars[] are stuffed strings (so they can be treated
1391 * like all other t->vars[]) in which the second character is the one that
H A Dsyn.c264 XPtrV args, vars; local
271 XPinit(vars, 16);
279 XPfree(vars);
305 * the iopn == 0 and XPsize(vars) == 0 are
308 if (iopn == 0 && XPsize(vars) == 0 &&
314 XPput(vars, yylval.cp);
320 if (XPsize(args) == 0 && XPsize(vars) == 1 &&
325 /* manipulate the vars string */
326 tcp = XPptrv(vars)[(vars
[all...]
/external/mesa3d/src/glsl/
H A Dopt_array_splitting.cpp246 ir_array_splitting_visitor(exec_list *vars) argument
248 this->variable_list = vars;
H A Dopt_structure_splitting.cpp190 ir_structure_splitting_visitor(exec_list *vars) argument
192 this->variable_list = vars;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_vector_splitting.cpp204 ir_vector_splitting_visitor(exec_list *vars) argument
206 this->variable_list = vars;

Completed in 1896 milliseconds

1234