Searched refs:locals (Results 1 - 25 of 81) sorted by relevance

1234

/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/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/v8/test/mjsunit/
H A Ddebug-evaluate-locals-optimized.js38 { locals: {a0: 1, b0: 2}, args: { names: ["i", "x0", "y0"], values: [0, 3, 4] } },
39 { locals: {a1: 3, b1: 4}, args: { names: ["i", "x1", "y1"], values: [1, 5, 6] } },
40 { locals: {a2: 5, b2: 6}, args: { names: ["i"], values: [2] } },
41 { locals: {a3: 7, b3: 8}, args: { names: ["i", "x3", "y3", "z3"], values: [3, 9, 10, undefined] } },
42 { locals: {a4: 9, b4: 10}, args: { names: ["i", "x4", "y4"], values: [4, 11, 12] } }
59 var expected_locals = expected[i].locals;
61 // All frames except the bottom one have expected locals.
62 var locals = {};
64 locals[frame.localName(j)] = frame.localValue(j).value();
66 assertPropertiesEqual(expected_locals, locals);
[all...]
H A Ddebug-evaluate-locals-optimized-double.js46 { locals: {a0: 1.01, b0: 2.02}, args: { names: ["i", "x0", "y0"], values: [0, 3.03, 4.04] } },
47 { locals: {a1: 3.03, b1: 4.04}, args: { names: ["i", "x1", "y1"], values: [1, 5.05, 6.06] } },
48 { locals: {a2: 5.05, b2: 6.06}, args: { names: ["i"], values: [2] } },
49 { locals: {a3: 7.07, b3: 8.08}, args: { names: ["i", "x3", "y3", "z3"],
52 { locals: {a4: 9.09, b4: 10.10}, args: { names: ["i", "x4", "y4"], values: [4, 11.11, 12.12] } }
69 var expected_locals = expected[i].locals;
71 // All frames except the bottom one have expected locals.
72 var locals = {};
74 locals[frame.localName(j)] = frame.localValue(j).value();
76 assertPropertiesEqual(expected_locals, locals);
[all...]
/external/bluetooth/bluedroid/
H A DAndroid.mk15 # Cleanup our locals
/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/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/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/
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...]
/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...]
H A DDebugInfoItem.java174 LocalList locals = code.getLocals();
180 new DebugInfoEncoder(positions, locals,
/external/javassist/src/main/javassist/
H A DCodeConverter.java514 int locals = 0;
518 if (s > locals)
519 locals = s;
529 if (locals > 0)
530 codeAttr.setMaxLocals(codeAttr.getMaxLocals() + locals);
H A DCtBehavior.java708 int locals = b.getMaxLocals();
713 if (locals > ca.getMaxLocals())
714 ca.setMaxLocals(locals);
1022 int locals = b.getMaxLocals();
1027 if (locals > ca.getMaxLocals())
1028 ca.setMaxLocals(locals);
1127 int locals = b.getMaxLocals();
1129 ca.setMaxLocals(locals);
/external/quake/quake/src/QW/server/
H A Dpr_comp.h142 int locals; // total ints of parms + locals member in struct:__anon12144
/external/smali/dexlib/src/main/java/org/jf/dexlib/Debug/
H A DDebugInstructionIterator.java170 Local[] locals = new Local[registerCount];
199 locals[registerNum] = new Local(registerNum, name, type, null);
211 locals[registerNum] = new Local(registerNum, name, type, signature);
219 Local local = locals[registerNum];
232 Local local = locals[registerNum];
/external/freetype/src/cff/
H A Dcffgload.h149 FT_Byte** locals; member in struct:CFF_Decoder_
/external/quake/quake/src/WinQuake/
H A Dpr_comp.h143 int locals; // total ints of parms + locals member in struct:__anon12388
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dmain.py142 locals(),
159 locals()
/external/javassist/src/main/javassist/compiler/
H A DJvstCodeGen.java447 int locals = varNo + recordVar(type, resultName, varNo, tbl);
448 setMaxLocals(locals);
542 int locals = varNo + recordVar(type, varName, varNo, tbl);
543 setMaxLocals(locals);

Completed in 1502 milliseconds

1234