HomeSort by relevance Sort by last modified time
    Searched refs:undefined (Results 51 - 75 of 1178) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/regress/
regress-reset-dictionary-elements.js 10 assertEquals(undefined, a[1]);
14 assertEquals(undefined, o[1]);
regress-3138.js 11 assertEquals("undefined", typeof f);
16 assertEquals("undefined", typeof f);
20 assertEquals("undefined", typeof f);
28 assertEquals("undefined", typeof a);
regress-crbug-590989-2.js 9 assertEquals(false, f(undefined));
10 assertEquals(false, f(undefined));
12 assertEquals(false, f(undefined)); // Interestingly this fails right away.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
diff1.s 1 # Difference of two undefined symbols.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
adr-invalid.l 3 [^:]*:4: Error: undefined symbol undefinedvar used as an immediate value
5 [^:]*:6: Error: undefined symbol undefinedvar used as an immediate value
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
jaloverflow-2.s 1 # jal relocs against undefined weak symbols should not be treated as
  /external/e2fsprogs/lib/uuid/
uuid_types.h 34 ?==error: undefined 16 bit type
47 ?== error: undefined 32 bit type
  /external/v8/tools/gyp/test/ios/deployment-target/
check-version-min.c 9 * left undefined.
13 * left undefined.
21 # error __MAC_OS_X_VERSION_MIN_REQUIRED should be undefined
29 # error __IPHONE_OS_VERSION_MIN_REQUIRED should be undefined
  /external/v8/tools/gyp/test/mac/deployment-target/
check-version-min.c 9 * left undefined.
13 * left undefined.
21 # error __MAC_OS_X_VERSION_MIN_REQUIRED should be undefined
29 # error __IPHONE_OS_VERSION_MIN_REQUIRED should be undefined
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
unresolved-1-dyn.d 3 #warning: \(\.text\+0x8\): warning: undefined reference to `foo'
  /external/valgrind/gdbserver_tests/
mcwatchpoints.stdoutB.exp 5 Hardware read watchpoint 2: undefined[0]
6 Hardware access (read/write) watchpoint 3: undefined[4]
7 Hardware watchpoint 4: undefined[8]
8 Hardware read watchpoint 5: undefined[9]
9 Hardware access (read/write) watchpoint 6: undefined[9]
10 Hardware watchpoint 7: undefined[9]
12 Hardware read watchpoint 2: undefined[0]
15 23 if (undefined[0] == 'u')
17 Hardware access (read/write) watchpoint 3: undefined[4]
20 28 if (undefined[4] == 'f'
    [all...]
  /external/v8/test/mjsunit/es6/
arrow-functions-this.js 51 assertEquals(global, call(sloppyFunctionArrow, undefined));
53 assertEquals(undefined, call(strictFunctionArrow, undefined));
56 assertEquals(global, call(sloppyFunctionEvalArrow, undefined));
58 assertEquals(undefined, call(strictFunctionEvalArrow, undefined));
61 assertEquals(global, call(sloppyFunctionArrowEval, undefined, "this"));
63 assertEquals(undefined, call(strictFunctionArrowEval, undefined, "this"));
68 call(sloppyFunctionArrowEval, undefined, "(() => this)()"))
    [all...]
indexed-integer-exotics.js 17 assertEquals(undefined, array["-1"]);
18 assertEquals(undefined, array["-0"]);
19 assertEquals(undefined, array["10"]);
20 assertEquals(undefined, array["4294967295"]);
42 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "-1"));
43 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "-0"));
44 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "10"));
45 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "4294967295"));
53 assertEquals(undefined, f());
56 assertEquals(undefined, f())
    [all...]
pattern-brand-check.js 9 return undefined;
13 return undefined;
17 return undefined;
21 return undefined;
  /external/v8/test/mjsunit/
outobject-double-for-in.js 32 this.x1 = undefined;
33 this.x2 = undefined;
34 this.x3 = undefined;
35 this.x4 = undefined;
36 this.x5 = undefined;
37 this.x6 = undefined;
39 this.x8 = undefined;
40 this.x9 = undefined;
41 this.x10 = undefined;
42 this.x11 = undefined;
    [all...]
array-indexing.js 29 var undef_array = [0,,2,undefined,4,,6,undefined,8,,10];
33 sparse_array[200] = undefined;
39 sparse_array[800] = undefined;
67 // Find undefined, not holes.
68 assertEquals(3, undef_array.indexOf(undefined));
69 assertEquals(3, undef_array.indexOf(undefined, 3));
70 assertEquals(7, undef_array.indexOf(undefined, 4));
71 assertEquals(7, undef_array.indexOf(undefined, 7));
72 assertEquals(-1, undef_array.indexOf(undefined, 8))
    [all...]
  /external/v8/test/webkit/
regexp-alternatives.js 29 shouldBe('s1.match(/<((\\/([^>]+)>)|(([^>]+)>))/)', '["<p>","p>",undefined,undefined,"p>","p"]');
30 shouldBe('s1.match(/<((ABC>)|(\\/([^>]+)>)|(([^>]+)>))/)', '["<p>","p>",undefined,undefined,undefined,"p>","p"]');
34 shouldBe('s1.match(/<((\\/([^>]+)>)|((([^>])+)>))/)', '["<p>","p>",undefined,undefined,"p>","p","p"]');
35 shouldBe('s1.match(/<((ABC>)|(\\/([^>]+)>)|((([^>])+)>))/)', '["<p>","p>",undefined,undefined,undefined,"p>","p","p"]')
    [all...]
array-holes.js 77 shouldBe("var a = []; a[0] = undefined; showHoles(a)", "'[undefined]'");
78 shouldBe("var a = []; a[0] = undefined; delete a[0]; showHoles(a)", "'[hole]'");
87 shouldBe("showHoles([0, undefined, 2, 3].sort())", "'[0, 2, 3, undefined]'");
91 shouldBe("showHoles([0, undefined, 2, 3].filter(returnTrue))", "'[0, undefined, 2, 3]'");
93 shouldBe("showHoles([0, undefined, 2, 3].map(returnTrue))", "'[true, true, true, true]'");
95 shouldBe("a = []; [0, undefined, 2, 3].every(addToArrayReturnTrue); showHoles(a)", "'[0, undefined, 2, 3]'")
    [all...]
  /external/v8/test/webkit/fast/js/
arguments.js 81 shouldBe("access_4(1, 2, 3)", "undefined");
82 shouldBe("access_5(1, 2, 3)", "undefined");
85 shouldBe("access_2(1)", "undefined");
86 shouldBe("access_3(1)", "undefined");
87 shouldBe("access_4(1)", "undefined");
88 shouldBe("access_5(1)", "undefined");
137 shouldBe("tear_off_equal_access_4(1, 2, 3)", "undefined");
138 shouldBe("tear_off_equal_access_5(1, 2, 3)", "undefined");
166 shouldBe("tear_off_too_few_access_2(1)", "undefined");
167 shouldBe("tear_off_too_few_access_3(1)", "undefined");
    [all...]
  /external/v8/test/mjsunit/harmony/
to-primitive.js 42 assertEquals(undefined, %ToPrimitive(undefined));
43 assertEquals(undefined, %ToPrimitive_Number(undefined));
44 assertEquals(undefined, %ToPrimitive_String(undefined));
45 assertEquals(undefined, %_ToPrimitive(undefined));
46 assertEquals(undefined, %_ToPrimitive_Number(undefined));
    [all...]
  /external/v8/test/webkit/fast/js/kde/
var_decl_init.js 28 return (myvar == undefined);
33 return (myvar == undefined);
44 return (myvar == undefined);
51 return (myvar == undefined);
57 return (myvar == undefined);
65 return (myvar == undefined);
72 return (myvar == undefined);
78 return (myvar == undefined);
85 return (myvar == undefined);
91 return (myvar == undefined);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xalloca.h 112 # define ALLOCATE_LOCAL(_size) ALLOCATE_LOCAL_FALLBACK undefined!
113 # define DEALLOCATE_LOCAL(_ptr) DEALLOCATE_LOCAL_FALLBACK undefined!
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xalloca.h 112 # define ALLOCATE_LOCAL(_size) ALLOCATE_LOCAL_FALLBACK undefined!
113 # define DEALLOCATE_LOCAL(_ptr) DEALLOCATE_LOCAL_FALLBACK undefined!
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
branchs12.d 118 [ ]+92: R_M68HC12_PCREL_16 undefined
121 [ ]+96: R_M68HC12_PCREL_16 undefined
124 [ ]+9a: R_M68HC12_PCREL_16 undefined
127 [ ]+9e: R_M68HC12_PCREL_16 undefined
130 [ ]+a2: R_M68HC12_PCREL_16 undefined
133 [ ]+a6: R_M68HC12_PCREL_16 undefined
136 [ ]+aa: R_M68HC12_PCREL_16 undefined
139 [ ]+ae: R_M68HC12_PCREL_16 undefined
142 [ ]+b2: R_M68HC12_PCREL_16 undefined
145 [ ]+b6: R_M68HC12_PCREL_16 undefined
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
undef2.d 6 # error: .o:/blah/foo.c:96: undefined reference to `globsym1'$

Completed in 917 milliseconds

1 23 4 5 6 7 8 91011>>