HomeSort by relevance Sort by last modified time
    Searched full:locals (Results 1 - 25 of 1016) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-357137.js 5 var locals = ""; variable
6 for (var i = 0; i < 1024; i++) locals += "var v" + i + ";";
7 eval("function f() {" + locals + "f();}");
regress-crbug-385002.js 12 var locals = ""; variable
13 for (var i = 0; i < 1024; i++) locals += "var v" + i + ";";
14 eval("function g() {" + locals + "f();}");
  /external/chromium_org/tools/site_compare/drivers/
__init__.py 11 keyboard = __import__(platform_dir+".keyboard", globals(), locals(), [''])
12 mouse = __import__(platform_dir+".mouse", globals(), locals(), [''])
13 windowing = __import__(platform_dir+".windowing", globals(), locals(), [''])
  /external/bluetooth/bluedroid/embdrv/
Android.mk 5 # Cleanup our locals
  /external/bluetooth/bluedroid/embdrv/sbc/
Android.mk 5 # Cleanup our locals
  /dalvik/dx/src/com/android/dx/dex/code/
LocalSnapshot.java 32 private final RegisterSpecSet locals; field in class:LocalSnapshot
39 * @param locals {@code non-null;} associated local variable state
41 public LocalSnapshot(SourcePosition position, RegisterSpecSet locals) {
44 if (locals == null) {
45 throw new NullPointerException("locals == null");
48 this.locals = locals;
54 return new LocalSnapshot(getPosition(), locals.withOffset(delta));
60 return new LocalSnapshot(getPosition(), locals);
69 return locals;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalSnapshot.java 31 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) {
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...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalSnapshot.java 31 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) {
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...]
  /dalvik/dx/src/com/android/dx/cf/code/
OneLocalsArray.java 34 private final TypeBearer[] locals; field in class:OneLocalsArray
37 * Constructs an instance. The locals array initially consists of
40 * @param maxLocals {@code >= 0;} the maximum number of locals this instance
45 locals = new TypeBearer[maxLocals];
50 OneLocalsArray result = new OneLocalsArray(locals.length);
52 System.arraycopy(locals, 0, result.locals, 0, locals.length);
59 for (int i = 0; i < locals.length; i++) {
60 TypeBearer type = locals[i]
    [all...]
Frame.java 27 * of a set of locals and a value stack, and it can be told to act on
32 /** {@code non-null;} the locals */
33 private final LocalsArray locals; field in class:Frame
44 * @param locals {@code non-null;} the locals array to use
47 private Frame(LocalsArray locals, ExecutionStack stack) {
48 this(locals, stack, IntList.EMPTY);
54 * @param locals {@code non-null;} the locals array to use
59 private Frame(LocalsArray locals,
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 24 private Type[] locals; field in class:Frame
33 * @param locals the number of local variable table entries
36 public Frame(int locals, int stack) {
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, 0, frame.locals, 0, locals.length)
    [all...]
  /external/clang/test/CodeGen/
2002-02-16-RenamingTest.c 3 /* test that locals are renamed with . notation */
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
eval.h 14 PyObject *locals,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
eval.h 14 PyObject *locals,
  /external/chromium_org/v8/test/mjsunit/
debug-evaluate-locals-optimized.js 40 { locals: {a0: 1, b0: 2},
42 { locals: {a1: 3, b1: 4},
44 { locals: {a2: 5, b2: 6},
46 { locals: {a3: 7, b3: 8},
48 { locals: {a4: 9, b4: 10},
66 var expected_locals = expected[i].locals;
68 // All frames except the bottom one have expected locals.
69 var locals = {};
71 locals[frame.localName(j)] = frame.localValue(j).value();
73 assertPropertiesEqual(expected_locals, locals);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
28 locals = results.get("locals")
50 if locals is not None:
51 args.extend([Comma(), locals.clone()])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
28 locals = results.get("locals")
50 if locals is not None:
51 args.extend([Comma(), locals.clone()])
  /dalvik/dx/tests/071-dex-java-stack-ops/
blort.j 21 .limit locals 1
28 .limit locals 1
35 .limit locals 1
42 .limit locals 1
49 .limit locals 1
56 .limit locals 1
64 .limit locals 2
71 .limit locals 2
78 .limit locals 2
85 .limit locals
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
gypsh.py 44 locals = {
52 # locals are available, and identify gypsh.
54 (sys.version, sys.platform, repr(sorted(locals.keys())))
56 code.interact(banner, local=locals)
  /external/clang/test/Analysis/
static_local.m 4 // Test reasoning about static locals in ObjCMethods.
  /external/compiler-rt/test/lsan/TestCases/
stale_stack_leak.cc 18 void *locals[2048]; local
19 locals[0] = p;
20 pp = &locals[0];
21 fprintf(stderr, "Test alloc: %p.\n", locals[0]);
  /external/llvm/test/Assembler/
2002-03-08-NameCollision2.ll 5 ; to be detected between locals and globals.
  /art/runtime/
jni_internal-inl.h 28 IndirectRef ref = locals.Add(local_ref_cookie, obj);
33 size_t entry_count = locals.Capacity();
35 locals.Dump(LOG(WARNING) << "Warning: more than 16 JNI local references: "
  /dalvik/dx/tests/069-dex-source-position/
run 18 dx --debug --dex --no-optimize --positions=none --no-locals \
20 dx --debug --dex --no-optimize --positions=important --no-locals \
22 dx --debug --dex --no-optimize --positions=lines --no-locals \
  /dalvik/dx/tests/109-int-branch/
blort.j 19 .limit locals 6
53 .limit locals 2
73 .limit locals 3

Completed in 680 milliseconds

1 2 3 4 5 6 7 8 91011>>