Searched defs:locals (Results 1 - 25 of 27) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
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 DDalvCode.java63 private LocalList locals; field in class:DalvCode
96 this.locals = null;
110 locals = LocalList.make(insns);
216 return locals;
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...]
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...]
/external/mesa3d/src/glsl/
H A Dlink_functions.cpp51 this->locals = hash_table_ctor(0, hash_table_pointer_hash,
57 hash_table_dtor(this->locals);
62 hash_table_insert(locals, ir, ir);
170 if (hash_table_find(locals, ir->var) == NULL) {
221 hash_table *locals; member in class:call_link_visitor
/external/javassist/src/main/javassist/bytecode/analysis/
H A DFrame.java24 private Type[] locals; field in class:Frame
33 * @param locals the number of local variable table entries
36 public Frame(int locals, int stack) { argument
37 this.locals = new Type[locals];
48 return locals[index];
58 locals[index] = type;
108 return locals.length;
151 Frame frame = new Frame(locals.length, stack.length);
152 System.arraycopy(locals,
[all...]
/external/javassist/src/main/javassist/convert/
H A DTransformBefore.java25 protected int locals; field in class:TransformBefore
39 locals = 0;
46 locals = 0;
80 public int extraLocals() { return locals; }
105 locals = var - maxLocals;
/external/javassist/src/main/javassist/expr/
H A DExprEditor.java100 context.updateMax(h.locals(), h.stack());
105 // so I check the current value of max-locals.
160 LoopContext(int locals) { argument
161 maxLocals = locals;
166 void updateMax(int locals, int stack) { argument
167 if (maxLocals < locals)
168 maxLocals = locals;
245 context.updateMax(expr.locals(), expr.stack());
H A DExpr.java80 protected final int locals() { method in class:Expr
312 int newLocals = locals();
/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/freetype/src/cff/
H A Dcffgload.h149 FT_Byte** locals; member in struct:CFF_Decoder_
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypedBlock.java70 sbuf.append("}, locals={");
98 public void setStackMap(int st, TypeData[] stack, int nl, TypeData[] locals) argument
104 localsTypes = locals;
156 TypeData[] locals = new TypeData[maxLocals];
158 locals[0] = new TypeData.UninitThis(className);
160 locals[0] = new TypeData.ClassName(className);
165 while ((i = descToTag(methodDesc, i, ++n, locals)) > 0)
166 if (locals[n].is2WordType())
167 locals[++n] = TypeTag.TOP;
175 localsTypes = locals;
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java53 * @param locals <code>max_locals</code>
57 public CodeAttribute(ConstPool cp, int stack, int locals, byte[] code, argument
62 maxLocals = locals;
H A DStackMap.java146 pos = locals(pos + 4, offset, numLoc);
153 * Invoked when <code>locals</code> of <code>stack_map_frame</code>
156 public int locals(int pos, int offset, int num) { method in class:StackMap.Walker
173 * @param isLocals true if this array is for <code>locals</code>.
242 public int locals(int pos, int offset, int num) { method in class:StackMap.Copier
244 return super.locals(pos, offset, num);
313 public int locals(int pos, int offset, int num) { method in class:StackMap.SimpleCopy
315 return super.locals(pos, offset, num);
392 public int locals(int pos, int offset, int num) { method in class:StackMap.Shifter
396 return super.locals(po
490 public int locals(int pos, int offset, int num) { method in class:StackMap.Printer
[all...]
H A DBytecode.java247 * to that number plus <code>locals</code>.
252 * @param locals the number of local variables excluding
256 int locals) {
258 ++locals;
267 locals += 2;
269 ++locals;
273 maxLocals = locals;
255 setMaxLocals(boolean isStatic, CtClass[] params, int locals) argument
/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/quake/quake/src/QW/server/
H A Dpr_comp.h142 int locals; // total ints of parms + locals member in struct:__anon10206
/external/quake/quake/src/WinQuake/
H A Dpr_comp.h143 int locals; // total ints of parms + locals member in struct:__anon10450
/external/v8/src/
H A Dgdb-jit.cc1119 int locals = scope_info.LocalCount(); local
1170 for (int local = 0; local < locals; ++local) {
1316 int locals = scope_info.LocalCount(); local
1318 params + slots + context_slots + internal_slots + locals + 2;
1367 for (int local = 0; local < locals; ++local) {
/external/libxml2/
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) {
20812 * TODO: Think about storing locals _only
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.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.apache.jasper_5.5.17.v201004212143.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 412 milliseconds

12