/external/v8/test/webkit/ |
D | dfg-constant-fold-logical-not-branch-expected.txt | 29 PASS foo1(new Stuff()) is 43 30 PASS foo2(new Stuff()) is 58 31 PASS foo1(new Stuff()) is 43 32 PASS foo2(new Stuff()) is 58 33 PASS foo1(new Stuff()) is 43 34 PASS foo2(new Stuff()) is 58 35 PASS foo1(new Stuff()) is 43 36 PASS foo2(new Stuff()) is 58 37 PASS foo1(new Stuff()) is 43 38 PASS foo2(new Stuff()) is 58 [all …]
|
D | dfg-proto-stub-watchpoint-fire-expected.txt | 29 PASS foo((i % 2) ? new A() : new B()) is 43 30 PASS foo((i % 2) ? new A() : new B()) is 42 31 PASS foo((i % 2) ? new A() : new B()) is 43 32 PASS foo((i % 2) ? new A() : new B()) is 42 33 PASS foo((i % 2) ? new A() : new B()) is 43 34 PASS foo((i % 2) ? new A() : new B()) is 42 35 PASS foo((i % 2) ? new A() : new B()) is 43 36 PASS foo((i % 2) ? new A() : new B()) is 42 37 PASS foo((i % 2) ? new A() : new B()) is 43 38 PASS foo((i % 2) ? new A() : new B()) is 42 [all …]
|
D | dfg-proto-access-inline-osr-exit-expected.txt | 29 PASS foo({g:new Thingy()}) is 42 30 PASS foo({g:new Thingy()}) is 42 31 PASS foo({g:new Thingy()}) is 42 32 PASS foo({g:new Thingy()}) is 42 33 PASS foo({g:new Thingy()}) is 42 34 PASS foo({g:new Thingy()}) is 42 35 PASS foo({g:new Thingy()}) is 42 36 PASS foo({g:new Thingy()}) is 42 37 PASS foo({g:new Thingy()}) is 42 38 PASS foo({g:new Thingy()}) is 42 [all …]
|
D | dfg-to-string-side-effect-clobbers-toString-expected.txt | 29 PASS foo(new String("hello"), sideEffect) is "hellohello" 30 PASS foo(new String("hello"), sideEffect) is "hellohello" 31 PASS foo(new String("hello"), sideEffect) is "hellohello" 32 PASS foo(new String("hello"), sideEffect) is "hellohello" 33 PASS foo(new String("hello"), sideEffect) is "hellohello" 34 PASS foo(new String("hello"), sideEffect) is "hellohello" 35 PASS foo(new String("hello"), sideEffect) is "hellohello" 36 PASS foo(new String("hello"), sideEffect) is "hellohello" 37 PASS foo(new String("hello"), sideEffect) is "hellohello" 38 PASS foo(new String("hello"), sideEffect) is "hellohello" [all …]
|
D | class-constructor-return-expected.txt | 7 PASS (new BaseNoReturn) instanceof BaseNoReturn is true 8 PASS (new BaseReturnImplicit) instanceof BaseReturnImplicit is true 9 PASS (new BaseReturnImplicit) !== undefined is true 10 PASS (new BaseReturnUndefined) instanceof BaseReturnUndefined is true 11 PASS (new BaseReturnUndefined) !== undefined is true 12 PASS (new BaseReturnThis) instanceof BaseReturnThis is true 13 PASS (new BaseReturnObject) instanceof BaseReturnObject is false 14 PASS typeof (new BaseReturnObject) === "object" is true 15 PASS (new BaseReturnObject2) instanceof BaseReturnObject is false 16 PASS (new BaseReturnObject2) === globalVariable is true [all …]
|
D | dfg-to-string-toString-becomes-bad-with-check-structure-expected.txt | 29 PASS foo.call(new String("foo")) is "foo" 30 PASS foo.call(new String("foo")) is "foo" 31 PASS foo.call(new String("foo")) is "foo" 32 PASS foo.call(new String("foo")) is "foo" 33 PASS foo.call(new String("foo")) is "foo" 34 PASS foo.call(new String("foo")) is "foo" 35 PASS foo.call(new String("foo")) is "foo" 36 PASS foo.call(new String("foo")) is "foo" 37 PASS foo.call(new String("foo")) is "foo" 38 PASS foo.call(new String("foo")) is "foo" [all …]
|
D | date-constructor-expected.txt | 29 PASS isNaN(new Date("")) is true 30 PASS new Date(1111).getTime() is 1111 31 PASS new Date(object).getTime() is 1111 32 PASS new Date(new Date(1111)).getTime() is 1111 33 PASS new Date(new Date(1111).toString()).getTime() is 1000 34 PASS new Date(1111, 1).getTime() - timeZoneOffset is -27104803200000 35 PASS new Date(1111, 1, 1).getTime() - timeZoneOffset is -27104803200000 36 PASS new Date(1111, 1, 1, 1).getTime() - timeZoneOffset is -27104799600000 37 PASS new Date(1111, 1, 1, 1, 1).getTime() - timeZoneOffset is -27104799540000 38 PASS new Date(1111, 1, 1, 1, 1, 1).getTime() - timeZoneOffset is -27104799539000 [all …]
|
D | equality-expected.txt | 47 PASS 0 == new String("0") is true 48 PASS 0 == new Object is false 67 PASS 1 == new String("0") is false 68 PASS 1 == new Object is false 87 PASS 0.1 == new String("0") is false 88 PASS 0.1 == new Object is false 107 PASS 2 == new String("0") is false 108 PASS 2 == new Object is false 127 PASS 3 == new String("0") is false 128 PASS 3 == new Object is false [all …]
|
D | class-syntax-super-expected.txt | 6 PASS (new Base) instanceof Base is true 7 PASS (new Derived) instanceof Derived is true 8 PASS (new Derived).callBaseMethod() is baseMethodValue 9 PASS x = (new Derived).callBaseMethod; x() is baseMethodValue 10 PASS (new Derived).callBaseMethodInGetter is baseMethodValue 11 PASS (new Derived).callBaseMethodInSetter = 1; valueInSetter is baseMethodValue 12 PASS (new Derived).baseMethodInGetterSetter is (new Base).baseMethod 13 PASS (new Derived).baseMethodInGetterSetter = 1; valueInSetter is (new Base).baseMethod 15 PASS (new SecondDerived).chainMethod() is ["base", "derived", "secondDerived"] 19 PASS x = class extends Base { constructor() { super(); } method() { return new super } } threw exce… [all …]
|
/external/valgrind/memcheck/tests/vbit-test/ |
D | vbits.c | 109 vbits_t new = { .num_bits = num_bits }; in undefined_vbits() local 112 case 1: new.bits.u32 = 0x01; break; in undefined_vbits() 113 case 8: new.bits.u8 = 0xff; break; in undefined_vbits() 114 case 16: new.bits.u16 = 0xffff; break; in undefined_vbits() 115 case 32: new.bits.u32 = ~0; break; in undefined_vbits() 116 case 64: new.bits.u64 = ~0ull; break; in undefined_vbits() 117 case 128: new.bits.u128[0] = ~0ull; in undefined_vbits() 118 new.bits.u128[1] = ~0ull; in undefined_vbits() 120 case 256: new.bits.u256[0] = ~0ull; in undefined_vbits() 121 new.bits.u256[1] = ~0ull; in undefined_vbits() [all …]
|
/external/selinux/libsepol/cil/src/ |
D | cil_copy_ast.c | 51 struct cil_list *new; in cil_copy_list() local 54 cil_list_init(&new, data->flavor); in cil_copy_list() 59 cil_list_append(new, CIL_STRING, orig_item->data); in cil_copy_list() 64 cil_list_append(new, CIL_LIST, new_sub); in cil_copy_list() 73 cil_list_append(new, CIL_PARAM, pn); in cil_copy_list() 78 cil_list_append(new, orig_item->flavor, orig_item->data); in cil_copy_list() 83 *copy = new; in cil_copy_list() 88 char *new = NULL; in cil_copy_node() local 91 new = data; in cil_copy_node() 93 *copy = new; in cil_copy_node() [all …]
|
/external/dnsmasq/src/ |
D | option.c | 668 struct dhcp_opt *new = opt_malloc(sizeof(struct dhcp_opt)); in parse_dhcp_opt() local 675 new->len = 0; in parse_dhcp_opt() 676 new->flags = flags; in parse_dhcp_opt() 677 new->netid = NULL; in parse_dhcp_opt() 678 new->val = NULL; in parse_dhcp_opt() 679 new->opt = 0; in parse_dhcp_opt() 691 new->opt = atoi(arg); in parse_dhcp_opt() 702 new->opt = opttab[i].val; in parse_dhcp_opt() 711 new->u.vendor_class = (unsigned char *)opt_string_alloc(arg+7); in parse_dhcp_opt() 712 new->flags |= DHOPT_VENDOR; in parse_dhcp_opt() [all …]
|
/external/e2fsprogs/tests/f_resize_inode/ |
D | script | 21 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1 23 echo Exit status is $status >> $OUT.new 24 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new >> $OUT 25 rm -f $OUT.new 30 echo "debugfs -R ''set_inode_field <7> block[2] 42'' -w test.img" > $OUT.new 31 $DEBUGFS -R "set_inode_field <7> block[2] 42" -w $TMPFILE >> $OUT.new 2>&1 33 echo Exit status is $status >> $OUT.new 34 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT 36 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1 38 echo Exit status is $status >> $OUT.new [all …]
|
/external/ipsec-tools/src/racoon/ |
D | remoteconf.c | 171 struct remoteconf *new; in newrmconf() local 174 new = racoon_calloc(1, sizeof(*new)); in newrmconf() 175 if (new == NULL) in newrmconf() 178 new->proposal = NULL; in newrmconf() 181 new->doitype = IPSEC_DOI; in newrmconf() 182 new->sittype = IPSECDOI_SIT_IDENTITY_ONLY; in newrmconf() 183 new->idvtype = IDTYPE_UNDEFINED; in newrmconf() 184 new->idvl_p = genlist_init(); in newrmconf() 185 new->nonce_size = DEFAULT_NONCE_SIZE; in newrmconf() 186 new->passive = FALSE; in newrmconf() [all …]
|
/external/libgdx/extensions/gdx-bullet/jni/swig/collision/ |
D | btCollisionShape.i | 20 return new btBoxShape(swigCPtr, owner); in newDerivedObject() 22 return new btTriangleShape(swigCPtr, owner); in newDerivedObject() 24 return new btBU_Simplex1to4(swigCPtr, owner); in newDerivedObject() 26 return new btConvexTriangleMeshShape(swigCPtr, owner); in newDerivedObject() 28 return new btConvexHullShape(swigCPtr, owner); in newDerivedObject() 30 return new btConvexPointCloudShape(swigCPtr, owner); in newDerivedObject() 35 return new btSphereShape(swigCPtr, owner); in newDerivedObject() 37 return new btMultiSphereShape(swigCPtr, owner); in newDerivedObject() 39 return new btCapsuleShape(swigCPtr, owner); in newDerivedObject() 41 return new btConeShape(swigCPtr, owner); in newDerivedObject() [all …]
|
/external/toybox/toys/posix/ |
D | ln.c | 29 char *dest = toys.optargs[--toys.optc], *new; in ln_main() local 51 if (S_ISDIR(buf.st_mode)) new = xmprintf("%s/%s", dest, basename(try)); in ln_main() 52 else new = dest; in ln_main() 57 oldnew = new; in ln_main() 59 new = xmprintf("%s_XXXXXX", new); in ln_main() 60 rc = mkstemp(new); in ln_main() 63 if (unlink(new)) perror_msg("unlink '%s'", new); in ln_main() 67 rc = (toys.optflags & FLAG_s) ? symlink(try, new) : link(try, new); in ln_main() 72 rc = rename(new, oldnew); in ln_main() 74 if (rc && unlink(new)) perror_msg("unlink '%s'", new); in ln_main() [all …]
|
D | find.c | 82 static int flush_exec(struct dirtree *new, struct exec_range *aa) in flush_exec() argument 95 if (aa->dir && new && new->parent) { in flush_exec() 97 rc = fchdir(new->parent->dirfd); in flush_exec() 100 perror_msg_raw(revert ? new->name : "."); in flush_exec() 150 static void do_print(struct dirtree *new, char c) in do_print() argument 152 char *s=dirtree_path(new, 0); in do_print() 159 static void execdir(struct dirtree *new, int flush) in execdir() argument 165 if (new && TT.topdir == -1) return; in execdir() 170 if (!aa->plus || (new && !aa->dir)) continue; in execdir() 176 toys.exitval |= flush_exec(new, aa); in execdir() [all …]
|
/external/llvm/test/MC/Disassembler/Hexagon/ |
D | j.txt | 14 # CHECK: p0 = cmp.eq(r17,#-1); if (p0.new) jump:nt 16 # CHECK: p0 = cmp.gt(r17,#-1); if (p0.new) jump:nt 18 # CHECK: p0 = tstbit(r17, #0); if (p0.new) jump:nt 20 # CHECK: p0 = cmp.eq(r17,#-1); if (p0.new) jump:t 22 # CHECK: p0 = cmp.gt(r17,#-1); if (p0.new) jump:t 24 # CHECK: p0 = tstbit(r17, #0); if (p0.new) jump:t 26 # CHECK: p0 = cmp.eq(r17,#-1); if (!p0.new) jump:nt 28 # CHECK: p0 = cmp.gt(r17,#-1); if (!p0.new) jump:nt 30 # CHECK: p0 = tstbit(r17, #0); if (!p0.new) jump:nt 32 # CHECK: p0 = cmp.eq(r17,#-1); if (!p0.new) jump:t [all …]
|
D | nv_st.txt | 4 # Store new-value byte 7 # CHECK-NEXT: memb(r17 + r21<<#3) = r31.new 10 # CHECK-NEXT: memb(#17) = r31.new 13 # CHECK-NEXT: memb(r17+#21) = r31.new 16 # CHECK-NEXT: memb(r17 ++ I:circ(m1)) = r31.new 19 # CHECK-NEXT: memb(r17 ++ #5:circ(m1)) = r31.new 22 # CHECK-NEXT: memb(r17++#5) = r31.new 25 # CHECK-NEXT: memb(r17++m1) = r31.new 28 # CHECK-NEXT: memb(r17 ++ m1:brev) = r31.new 30 # Store new-value byte conditionally [all …]
|
D | nv_j.txt | 4 # Jump to address conditioned on new register value 7 # CHECK-NEXT: if (cmp.eq(r17.new, r21)) jump:nt 10 # CHECK-NEXT: if (cmp.eq(r17.new, r21)) jump:t 13 # CHECK-NEXT: if (!cmp.eq(r17.new, r21)) jump:nt 16 # CHECK-NEXT: if (!cmp.eq(r17.new, r21)) jump:t 19 # CHECK-NEXT: if (cmp.gt(r17.new, r21)) jump:nt 22 # CHECK-NEXT: if (cmp.gt(r17.new, r21)) jump:t 25 # CHECK-NEXT: if (!cmp.gt(r17.new, r21)) jump:nt 28 # CHECK-NEXT: if (!cmp.gt(r17.new, r21)) jump:t 31 # CHECK-NEXT: if (cmp.gtu(r17.new, r21)) jump:nt [all …]
|
/external/llvm/test/MC/Hexagon/ |
D | asmMap.s | 221 #CHECK: 39cfe072 if (!p3.new) memw(r15{{ *}}+{{ *}}#0)=#-14 224 if (!p3.new) memw(r15)=#-14 227 #CHECK: 3959e06b if (p3.new) memw(r25{{ *}}+{{ *}}#0)=#-21 230 if (p3.new) memw(r25)=#-21 233 #CHECK: 4312c801 if (p1.new) r1 = memb(r18{{ *}}+{{ *}}#0) 235 if (p1.new) r1=memb(r18) 239 #CHECK: 4718d803 if (!p3.new) r3 = memb(r24{{ *}}+{{ *}}#0) 241 if (!p3.new) r3=memb(r24) 245 #CHECK: 4326c81b if (p1.new) r27 = memub(r6{{ *}}+{{ *}}#0) 247 if (p1.new) r27=memub(r6) [all …]
|
/external/e2fsprogs/tests/d_special_files/ |
D | script | 32 echo "debugfs -R ''stat foo'' -w test.img" > $OUT.new 33 $DEBUGFS -R "stat foo" -w $TMPFILE >> $OUT.new 2>&1 35 echo Exit status is $status >> $OUT.new 36 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT 38 echo "debugfs -R ''stat foo2'' -w test.img" > $OUT.new 39 $DEBUGFS -R "stat foo2" -w $TMPFILE >> $OUT.new 2>&1 41 echo Exit status is $status >> $OUT.new 42 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT 44 echo "debugfs -R ''block_dump 28'' -w test.img" > $OUT.new 45 $DEBUGFS -R "block_dump 28" -w $TMPFILE >> $OUT.new 2>&1 [all …]
|
/external/valgrind/massif/tests/ |
D | overloaded-new.post.exp-mips32 | 2 Command: ./overloaded-new 44 99.73% (12,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc. 45 ->33.24% (4,000B) 0x........: operator new(unsigned int) (overloaded-new.cpp:19) 46 | ->33.24% (4,000B) 0x........: main (overloaded-new.cpp:49) 48 ->33.24% (4,000B) 0x........: operator new(unsigned int, std::nothrow_t const&) (overloaded-new.cpp… 49 | ->33.24% (4,000B) 0x........: main (overloaded-new.cpp:50) 51 ->16.62% (2,000B) 0x........: operator new[](unsigned int) (overloaded-new.cpp:29) 52 | ->16.62% (2,000B) 0x........: main (overloaded-new.cpp:51) 54 ->16.62% (2,000B) 0x........: operator new[](unsigned int, std::nothrow_t const&) (overloaded-new.c… 55 ->16.62% (2,000B) 0x........: main (overloaded-new.cpp:52)
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXTargetObjectFile.h | 50 TextSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getText()); in Initialize() 51 DataSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getData()); in Initialize() 52 BSSSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getBSS()); in Initialize() 54 new NVPTXSection(MCSection::SV_ELF, SectionKind::getReadOnly()); in Initialize() 57 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 59 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 61 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 63 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 65 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 67 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() [all …]
|
/external/toybox/lib/ |
D | args.c | 233 struct opts *new = 0; in parse_optflaglist() local 262 if (!new) { in parse_optflaglist() 263 new = xzalloc(sizeof(struct opts)); in parse_optflaglist() 264 new->next = gof->opts; in parse_optflaglist() 265 gof->opts = new; in parse_optflaglist() 266 new->val[0].l = LONG_MIN; in parse_optflaglist() 267 new->val[1].l = LONG_MAX; in parse_optflaglist() 271 if (*options == '(' && new->c != -1) { in parse_optflaglist() 282 lo->opt = new; in parse_optflaglist() 289 if (!new->c) new->c = -1; in parse_optflaglist() [all …]
|