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

<<11121314151617181920>>

  /external/libvpx/libvpx/examples/includes/geshi/geshi/
io.php 69 'Lobby', 'Locals', 'MD5', 'MP3Decoder', 'MP3Encoder', 'Map', 'Message', 'Movie',
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILFrameLowering.h 28 /// each function, and the offset to the locals area.
  /external/proguard/src/proguard/optimize/
ParameterShrinker.java 97 System.out.println(" Max locals = " + maxLocals);
  /external/proguard/src/proguard/optimize/peephole/
VariableShrinker.java 95 System.out.println(" Max locals = " + maxLocals);
  /packages/apps/Camera2/
version.mk 94 # Cleanup the locals
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
StackViewer.py 84 item = VariablesTreeItem("<locals>", frame.f_locals, self.flist)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
StackViewer.py 84 item = VariablesTreeItem("<locals>", frame.f_locals, self.flist)
  /external/dexmaker/src/main/java/com/google/dexmaker/
Code.java 46 * <h3>Locals</h3>
72 * <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) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 819 ArgInfo = namedtuple('ArgInfo', 'args varargs keywords locals')
    [all...]
pdb.py 122 # locals whenever the .f_locals accessor is called, so we
223 locals = self.curframe_locals
234 exec code in globals, locals
715 locals = self.curframe_locals
719 sys.call_tracing(p.run, (arg, globals, locals))
    [all...]
_threading_local.py 139 # module may also want to use our `local` class, if support for locals
144 # locals in the `thread` module, and there is no circular import problem
profile.py 69 def runctx(statement, globals, locals, filename=None, sort=-1):
70 """Run statement under profiler, supplying your own globals and locals,
77 prof = prof.runctx(statement, globals, locals)
440 def runctx(self, cmd, globals, locals):
444 exec cmd in globals, locals
542 p.runctx('f(m)', globals(), locals())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 819 ArgInfo = namedtuple('ArgInfo', 'args varargs keywords locals')
    [all...]
pdb.py 122 # locals whenever the .f_locals accessor is called, so we
223 locals = self.curframe_locals
234 exec code in globals, locals
715 locals = self.curframe_locals
719 sys.call_tracing(p.run, (arg, globals, locals))
    [all...]
_threading_local.py 139 # module may also want to use our `local` class, if support for locals
144 # locals in the `thread` module, and there is no circular import problem
profile.py 69 def runctx(statement, globals, locals, filename=None, sort=-1):
70 """Run statement under profiler, supplying your own globals and locals,
77 prof = prof.runctx(statement, globals, locals)
440 def runctx(self, cmd, globals, locals):
444 exec cmd in globals, locals
542 p.runctx('f(m)', globals(), locals())
  /dalvik/vm/mterp/x86/
header.S 38 sub FrameSize,%esp # Allocate storage for spill, locals & outs
55 rFP edi interpreted frame pointer, used for accessing locals and args
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
main.py 142 locals(),
159 locals()
  /external/javassist/src/main/javassist/
CtBehavior.java 708 int locals = b.getMaxLocals(); local
713 if (locals > ca.getMaxLocals())
714 ca.setMaxLocals(locals);
1022 int locals = b.getMaxLocals(); local
1127 int locals = b.getMaxLocals(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_profile.py 25 prof.runctx("testfunc()", globals(), locals())
55 prof.runctx(stmt, globals(), locals())
test_inspect.py 180 args, varargs, varkw, locals = inspect.getargvalues(mod.fr)
184 self.assertEqual(locals, {'x': 11, 'p': 11, 'y': 14})
185 self.assertEqual(inspect.formatargvalues(args, varargs, varkw, locals),
189 args, varargs, varkw, locals = inspect.getargvalues(mod.fr.f_back)
193 self.assertEqual(inspect.formatargvalues(args, varargs, varkw, locals),
666 """Create a function that returns its locals(), excluding the
671 code = ("lambda %s: dict(i for i in locals().items() "
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_profile.py 25 prof.runctx("testfunc()", globals(), locals())
55 prof.runctx(stmt, globals(), locals())
test_inspect.py 180 args, varargs, varkw, locals = inspect.getargvalues(mod.fr)
184 self.assertEqual(locals, {'x': 11, 'p': 11, 'y': 14})
185 self.assertEqual(inspect.formatargvalues(args, varargs, varkw, locals),
189 args, varargs, varkw, locals = inspect.getargvalues(mod.fr.f_back)
193 self.assertEqual(inspect.formatargvalues(args, varargs, varkw, locals),
666 """Create a function that returns its locals(), excluding the
671 code = ("lambda %s: dict(i for i in locals().items() "
    [all...]
  /external/javassist/src/main/javassist/bytecode/
Bytecode.java 247 * 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;
    [all...]
  /external/chromium_org/third_party/jinja2/
runtime.py 54 shared=None, globals=None, locals=None):
62 if locals:
67 for key, value in iteritems(locals):
199 def derived(self, locals=None):
202 self.parent, True, None, locals)

Completed in 471 milliseconds

<<11121314151617181920>>