HomeSort by relevance Sort by last modified time
    Searched full:locals (Results 251 - 275 of 969) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
__init__.py 22 __import__("",globals(),locals(),[t],level=1)
  /dalvik/dx/tests/120-disable-extended-ops/
run 24 count=`dx --debug --dex --no-optimize --positions=none --no-locals \
30 count=`dx --debug --dex --no-optimize --positions=none --no-locals \
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 100 context.updateMax(h.locals(), h.stack());
105 // so I check the current value of max-locals.
160 LoopContext(int locals) {
161 maxLocals = locals;
166 void updateMax(int locals, int stack) {
167 if (maxLocals < locals)
168 maxLocals = locals;
245 context.updateMax(expr.locals(), expr.stack());
  /external/v8/test/mjsunit/
debug-evaluate-locals-optimized-double.js 46 { 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
code.py 37 def __init__(self, locals=None):
40 The optional 'locals' argument specifies the dictionary in
46 if locals is None:
47 locals = {"__name__": "__console__", "__doc__": None}
48 self.locals = locals
103 exec code in self.locals
182 def __init__(self, locals=None, filename="<console>"):
185 The optional locals argument will be passed to the
192 InteractiveInterpreter.__init__(self, locals)
    [all...]
cProfile.py 39 def runctx(statement, globals, locals, filename=None, sort=-1):
40 """Run statement under profiler, supplying your own globals and locals,
49 prof = prof.runctx(statement, globals, locals)
137 def runctx(self, cmd, globals, locals):
140 exec cmd in globals, locals
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
code.py 37 def __init__(self, locals=None):
40 The optional 'locals' argument specifies the dictionary in
46 if locals is None:
47 locals = {"__name__": "__console__", "__doc__": None}
48 self.locals = locals
103 exec code in self.locals
182 def __init__(self, locals=None, filename="<console>"):
185 The optional locals argument will be passed to the
192 InteractiveInterpreter.__init__(self, locals)
    [all...]
cProfile.py 39 def runctx(statement, globals, locals, filename=None, sort=-1):
40 """Run statement under profiler, supplying your own globals and locals,
49 prof = prof.runctx(statement, globals, locals)
137 def runctx(self, cmd, globals, locals):
140 exec cmd in globals, locals
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 59 private final LocalVariableInfo locals; field in class:RopTranslator
92 * @param locals {@code null-ok;} local variable information to use
98 LocalVariableInfo locals, int paramSize) {
100 new RopTranslator(method, positionInfo, locals,
111 * @param locals {@code null-ok;} local variable information to use
116 LocalVariableInfo locals, int paramSize) {
119 this.locals = locals;
136 if (locals != null) {
138 * If we're tracking locals, then there's could be anothe
809 private LocalVariableInfo locals; field in class:RopTranslator.LocalVariableAwareTranslationVisitor
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 62 private final LocalVariableInfo locals; field in class:RopTranslator
95 * @param locals {@code null-ok;} local variable information to use
102 LocalVariableInfo locals, int paramSize, DexOptions dexOptions) {
104 new RopTranslator(method, positionInfo, locals, paramSize, dexOptions);
114 * @param locals {@code null-ok;} local variable information to use
119 private RopTranslator(RopMethod method, int positionInfo, LocalVariableInfo locals,
124 this.locals = locals;
141 if (locals != null) {
143 * If we're tracking locals, then there's could be anothe
818 private LocalVariableInfo locals; field in class:RopTranslator.LocalVariableAwareTranslationVisitor
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopTranslator.java 63 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,
125 this.locals = locals;
142 if (locals != null) {
144 * If we're tracking locals, then there's could be anothe
816 private LocalVariableInfo locals; field in class:RopTranslator.LocalVariableAwareTranslationVisitor
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoDecoder.java 50 /** locals decoded */
51 private final ArrayList<LocalEntry> locals; field in class:DebugInfoDecoder
107 locals = new ArrayList<LocalEntry>();
143 * An entry in the resulting locals table
192 * Gets the decoded locals list, in ascending start-address order.
195 * @return locals list in ascending address order.
198 return locals;
256 locals.add(thisEntry);
278 locals.add(le);
300 locals.add(le)
    [all...]
DebugInfoEncoder.java 62 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,
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...]
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoDecoder.java 61 /** locals decoded */
62 private final ArrayList<LocalEntry> locals; field in class:DebugInfoDecoder
118 locals = new ArrayList<LocalEntry>();
154 * An entry in the resulting locals table
203 * Gets the decoded locals list, in ascending start-address order.
206 * @return locals list in ascending address order.
209 return locals;
266 locals.add(thisEntry);
288 locals.add(le);
304 locals.add(le)
    [all...]
DebugInfoEncoder.java 70 private final LocalList locals; field in class:DebugInfoEncoder
108 * @param locals {@code null-ok;} local variables to encode
116 public DebugInfoEncoder(PositionList positions, LocalList locals,
120 this.locals = locals;
215 int localsSz = locals.size();
219 // Current index in locals
239 nextAddrL = locals.get(curLocalIdx).getAddress();
279 * locals} and including all subsequent activity at the same
282 * @param curLocalIdx Current index in locals
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoDecoder.java 51 /** 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.add(le)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 79 locals = None
97 # 4) New Locals should be empty
98 passed[0] = all(not hasattr(local, 'foo') for local in locals)
104 # 3) New Locals should recycle the original's address. Creating
107 locals = [Local() for i in range(10)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 79 locals = None
97 # 4) New Locals should be empty
98 passed[0] = all(not hasattr(local, 'foo') for local in locals)
104 # 3) New Locals should recycle the original's address. Creating
107 locals = [Local() for i in range(10)]
  /art/test/072-precise-gc/src/
Main.java 35 * should be the first locals declared.
67 * Declare locals so that our stack overlaps the same region
100 /* use the locals in case the compiler gets smart */
  /dalvik/tests/072-precise-gc/src/
Main.java 35 * should be the first locals declared.
67 * Declare locals so that our stack overlaps the same region
100 /* use the locals in case the compiler gets smart */
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 146 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(pos, offset, num)
490 public int locals(int pos, int offset, int num) { method in class:StackMap.Printer
    [all...]
  /art/runtime/entrypoints/portable/
portable_jni_entrypoints.cc 29 env->local_ref_cookie = env->locals.GetSegmentState();
42 env->locals.SetSegmentState(env->local_ref_cookie);
  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 35 env->local_ref_cookie = env->locals.GetSegmentState();
47 env->locals.SetSegmentState(env->local_ref_cookie);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ZeroPole.cpp 48 // Member variables to locals.
66 // Locals to member variables. Flush denormals here so we don't
  /external/chromium_org/tools/telemetry/telemetry/
exception_formatter.py 65 # Format the locals.
68 print >> sys.stderr, 'Locals:'

Completed in 1301 milliseconds

<<11121314151617181920>>