Searched defs:locals (Results 1 - 25 of 52) sorted by path

123

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.h184 FT_Byte** locals; member in struct:CFF_Decoder_
/external/chromium_org/third_party/libxml/src/
H A Dxmlschemas.c302 xmlSchemaAddItemSize(&(WXS_BUCKET(ctx)->locals), 10, item)
406 xmlSchemaItemListPtr locals; /* Local components. */ member in struct:_xmlSchemaBucket
438 xmlSchemaItemListPtr locals; member in struct:_xmlSchemaImport
461 xmlSchemaItemListPtr locals; /* Local components. */ member in struct:_xmlSchemaInclude
3503 if (bucket->locals != NULL) {
3504 xmlSchemaComponentListFree(bucket->locals);
3505 xmlSchemaItemListFree(bucket->locals);
3557 ret->locals = xmlSchemaItemListCreate();
3558 if (ret->locals == NULL) {
20811 * TODO: Think about storing locals _only
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlink_functions.cpp48 this->locals = hash_table_ctor(0, hash_table_pointer_hash,
54 hash_table_dtor(this->locals);
59 hash_table_insert(locals, ir, ir);
178 if (hash_table_find(locals, ir->var) == NULL) {
241 hash_table *locals; member in class:call_link_visitor
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicToQuadratics_Test.cpp131 static Cubic locals[] = { variable
152 static size_t localsCount = sizeof(locals) / sizeof(locals[0]);
159 const Cubic& cubic = locals[x];
/external/chromium_org/third_party/skia/tests/
H A DPathOpsCubicToQuadsTest.cpp155 static SkDCubic locals[] = { variable
167 static size_t localsCount = SK_ARRAY_COUNT(locals);
174 const SkDCubic& cubic = locals[x];
/external/chromium_org/v8/src/
H A Dgdb-jit.cc1105 int locals = scope->StackLocalCount(); local
1156 ZoneList<Variable*> stack_locals(locals, scope->zone());
1159 for (int local = 0; local < locals; ++local) {
1307 int locals = scope->StackLocalCount(); local
1309 // locals + 2 (__function and __context).
1357 for (int local = 0; local < locals; ++local) {
H A Dtyping.cc81 int locals = scope->StackLocalCount(); local
90 for (int i = 0; i < locals; i++) {
106 ZoneList<Variable*> local_vars(locals, zone());
109 for (int i = 0; i < locals; i++) {
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-357137.js5 var locals = ""; variable
6 for (var i = 0; i < 1024; i++) locals += "var v" + i + ";";
7 eval("function f() {" + locals + "f();}");
H A Dregress-crbug-385002.js12 var locals = ""; variable
13 for (var i = 0; i < 1024; i++) locals += "var v" + i + ";";
14 eval("function g() {" + locals + "f();}");
/external/compiler-rt/test/lsan/TestCases/
H A Dstale_stack_leak.cc18 void *locals[2048]; local
19 locals[0] = p;
20 pp = &locals[0];
21 fprintf(stderr, "Test alloc: %p.\n", locals[0]);
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDalvCode.java63 private LocalList locals; field in class:DalvCode
96 this.locals = null;
110 locals = LocalList.make(insns);
216 return locals;
H A DLocalList.java377 private static void debugVerify(LocalList locals) { argument
379 debugVerify0(locals);
381 int sz = locals.size();
383 System.err.println(locals.get(i));
393 private static void debugVerify0(LocalList locals) { argument
394 int sz = locals.size();
398 Entry e = locals.get(i);
421 Entry test = locals.get(j);
534 * @param specs {@code non-null;} spec set representing the locals
822 * be called for any spec that is on its way into a locals
[all...]
H A DLocalSnapshot.java31 private final RegisterSpecSet locals; field in class:LocalSnapshot
38 * @param locals {@code non-null;} associated local variable state
40 public LocalSnapshot(SourcePosition position, RegisterSpecSet locals) { argument
43 if (locals == null) {
44 throw new NullPointerException("locals == null");
47 this.locals = locals;
53 return new LocalSnapshot(getPosition(), locals.withOffset(delta));
59 return new LocalSnapshot(getPosition(), locals);
68 return locals;
[all...]
H A DRopTranslator.java63 private final LocalVariableInfo locals; field in class:RopTranslator
96 * @param locals {@code null-ok;} local variable information to use
103 LocalVariableInfo locals, int paramSize, DexOptions dexOptions) {
105 new RopTranslator(method, positionInfo, locals, paramSize, dexOptions);
115 * @param locals {@code null-ok;} local variable information to use
120 private RopTranslator(RopMethod method, int positionInfo, LocalVariableInfo locals, argument
125 this.locals = locals;
142 if (locals != null) {
144 * If we're tracking locals, the
102 translate(RopMethod method, int positionInfo, LocalVariableInfo locals, int paramSize, DexOptions dexOptions) argument
816 private LocalVariableInfo locals; field in class:RopTranslator.LocalVariableAwareTranslationVisitor
824 LocalVariableAwareTranslationVisitor(OutputCollector output, LocalVariableInfo locals) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoDecoder.java51 /** locals decoded */
52 private final ArrayList<LocalEntry> locals; field in class:DebugInfoDecoder
108 locals = new ArrayList<LocalEntry>();
144 * An entry in the resulting locals table
193 * Gets the decoded locals list, in ascending start-address order.
196 * @return locals list in ascending address order.
199 return locals;
256 locals.add(thisEntry);
278 locals.add(le);
294 locals
[all...]
H A DDebugInfoEncoder.java62 private final LocalList locals; field in class:DebugInfoEncoder
100 * @param locals {@code null-ok;} local variables to encode
108 public DebugInfoEncoder(PositionList positions, LocalList locals, argument
112 this.locals = locals;
207 int localsSz = locals.size();
211 // Current index in locals
231 nextAddrL = locals.get(curLocalIdx).getAddress();
271 * locals} and including all subsequent activity at the same
274 * @param curLocalIdx Current index in locals
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java72 * <li>{@link #compareLongs compareLongs()} compares two locals each
77 * locals; both {@code float} primitives or both {@code double}
82 * <li>{@link #compare compare()} compares two locals. The {@link
202 private final List<Local<?>> locals = new ArrayList<Local<?>>(); field in class:Code
230 throw new IllegalStateException("Cannot allocate locals after adding instructions");
233 locals.add(result);
269 * Assigns registers to locals. From the spec:
275 * In addition to assigning registers to each of the locals, this creates
286 for (Local<?> local : locals) {
470 // instructions: locals
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 974 milliseconds

123