Home
last modified time | relevance | path

Searched refs:unique (Results 1 – 25 of 976) sorted by relevance

12345678910>>...40

/external/skia/tests/
DRefDictTest.cpp28 REPORTER_ASSERT(reporter, !data0.unique()); in DEF_TEST()
32 REPORTER_ASSERT(reporter, !data0.unique()); in DEF_TEST()
36 REPORTER_ASSERT(reporter, data0.unique()); in DEF_TEST()
37 REPORTER_ASSERT(reporter, !data1.unique()); in DEF_TEST()
41 REPORTER_ASSERT(reporter, data0.unique()); in DEF_TEST()
42 REPORTER_ASSERT(reporter, data1.unique()); in DEF_TEST()
48 REPORTER_ASSERT(reporter, !data0.unique()); in DEF_TEST()
49 REPORTER_ASSERT(reporter, !data1.unique()); in DEF_TEST()
54 REPORTER_ASSERT(reporter, data0.unique()); in DEF_TEST()
55 REPORTER_ASSERT(reporter, !data1.unique()); in DEF_TEST()
[all …]
DUtilsTest.cpp30 REPORTER_ASSERT(reporter, obj.unique()); in test_autounref()
34 REPORTER_ASSERT(reporter, obj.unique()); in test_autounref()
37 REPORTER_ASSERT(reporter, obj.unique()); in test_autounref()
42 REPORTER_ASSERT(reporter, !obj.unique()); in test_autounref()
46 REPORTER_ASSERT(reporter, obj.unique()); in test_autounref()
52 REPORTER_ASSERT(reporter, obj0.unique()); in test_autostarray()
53 REPORTER_ASSERT(reporter, obj1.unique()); in test_autostarray()
64 REPORTER_ASSERT(reporter, !obj0.unique()); in test_autostarray()
65 REPORTER_ASSERT(reporter, !obj1.unique()); in test_autostarray()
70 REPORTER_ASSERT(reporter, obj0.unique()); in test_autostarray()
[all …]
DRecorderTest.cpp63 REPORTER_ASSERT(r, paint.getShader()->unique()); in DEF_TEST()
68 REPORTER_ASSERT(r, !paint.getShader()->unique()); in DEF_TEST()
70 REPORTER_ASSERT(r, paint.getShader()->unique()); in DEF_TEST()
87 REPORTER_ASSERT(reporter, !image->unique()); in DEF_TEST()
94 REPORTER_ASSERT(reporter, image->unique()); in DEF_TEST()
102 REPORTER_ASSERT(reporter, !image->unique()); in DEF_TEST()
109 REPORTER_ASSERT(reporter, image->unique()); in DEF_TEST()
DRefCntTest.cpp34 REPORTER_ASSERT(reporter, ref->unique()); in test_refCnt()
73 REPORTER_ASSERT(reporter, ref->unique()); in test_weakRefCnt()
375 REPORTER_ASSERT(r, rc->unique()); in DEF_TEST()
380 REPORTER_ASSERT(r, rc->unique()); in DEF_TEST()
383 REPORTER_ASSERT(r, !rc->unique()); in DEF_TEST()
386 REPORTER_ASSERT(r, rc->unique()); in DEF_TEST()
391 REPORTER_ASSERT(r, rc->unique()); in DEF_TEST()
395 REPORTER_ASSERT(r, !rc->unique()); in DEF_TEST()
398 REPORTER_ASSERT(r, rc->unique()); in DEF_TEST()
DMetaDataTest.cpp14 REPORTER_ASSERT(reporter, ref.unique()); in test_ptrs()
23 REPORTER_ASSERT(reporter, !ref.unique()); in test_ptrs()
28 REPORTER_ASSERT(reporter, !ref.unique()); in test_ptrs()
33 REPORTER_ASSERT(reporter, !ref.unique()); in test_ptrs()
35 REPORTER_ASSERT(reporter, ref.unique()); in test_ptrs()
DTArrayTest.cpp127 REPORTER_ASSERT(reporter, array.back()->unique()); in test_copy_ctor()
133 REPORTER_ASSERT(reporter, !ref->unique()); in test_copy_ctor()
135 REPORTER_ASSERT(reporter, !ref->unique()); in test_copy_ctor()
139 REPORTER_ASSERT(reporter, ref->unique()); in test_copy_ctor()
149 REPORTER_ASSERT(reporter, !copy[0]->unique()); \ in test_move()
154 REPORTER_ASSERT(reporter, move[0]->unique()); \ in test_move()
162 REPORTER_ASSERT(reporter, !copy[0]->unique()); \ in test_move()
168 REPORTER_ASSERT(reporter, move[0]->unique()); \ in test_move()
/external/jmdns/src/javax/jmdns/impl/
DDNSQuestion.java31 DNS4Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { in DNS4Address() argument
32 super(name, type, recordClass, unique); in DNS4Address()
55 DNS6Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { in DNS6Address() argument
56 super(name, type, recordClass, unique); in DNS6Address()
79 … HostInformation(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { in HostInformation() argument
80 super(name, type, recordClass, unique); in HostInformation()
88 Pointer(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { in Pointer() argument
89 super(name, type, recordClass, unique); in Pointer()
128 Service(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { in Service() argument
129 super(name, type, recordClass, unique); in Service()
[all …]
DHostInfo.java198 DNSRecord.Address getDNSAddressRecord(DNSRecordType type, boolean unique, int ttl) { in getDNSAddressRecord() argument
201 return this.getDNS4AddressRecord(unique, ttl); in getDNSAddressRecord()
204 return this.getDNS6AddressRecord(unique, ttl); in getDNSAddressRecord()
210 private DNSRecord.Address getDNS4AddressRecord(boolean unique, int ttl) { in getDNS4AddressRecord() argument
212 …return new DNSRecord.IPv4Address(this.getName(), DNSRecordClass.CLASS_IN, unique, ttl, this.getIne… in getDNS4AddressRecord()
217 private DNSRecord.Address getDNS6AddressRecord(boolean unique, int ttl) { in getDNS6AddressRecord() argument
219 …return new DNSRecord.IPv6Address(this.getName(), DNSRecordClass.CLASS_IN, unique, ttl, this.getIne… in getDNS6AddressRecord()
224 DNSRecord.Pointer getDNSReverseAddressRecord(DNSRecordType type, boolean unique, int ttl) { in getDNSReverseAddressRecord() argument
227 return this.getDNS4ReverseAddressRecord(unique, ttl); in getDNSReverseAddressRecord()
230 return this.getDNS6ReverseAddressRecord(unique, ttl); in getDNSReverseAddressRecord()
[all …]
DDNSRecord.java45 … DNSRecord(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl) { in DNSRecord() argument
46 super(name, type, recordClass, unique); in DNSRecord()
175 … IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) { in IPv4Address() argument
176 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, addr); in IPv4Address()
179 … IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) { in IPv4Address() argument
180 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, rawAddress); in IPv4Address()
217 … IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) { in IPv6Address() argument
218 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, ttl, addr); in IPv6Address()
221 … IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) { in IPv6Address() argument
222 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, ttl, rawAddress); in IPv6Address()
[all …]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
Dunique.pass.cpp32 Iter r = std::unique(Iter(ia), Iter(ia+sa)); in test()
38 r = std::unique(Iter(ib), Iter(ib+sb)); in test()
45 r = std::unique(Iter(ic), Iter(ic+sc)); in test()
51 r = std::unique(Iter(id), Iter(id+sd)); in test()
58 r = std::unique(Iter(ie), Iter(ie+se)); in test()
66 r = std::unique(Iter(ig), Iter(ig+sg)); in test()
73 r = std::unique(Iter(ih), Iter(ih+sh)); in test()
80 r = std::unique(Iter(ii), Iter(ii+si)); in test()
104 Iter r = std::unique(Iter(ia), Iter(ia+sa)); in test1()
111 r = std::unique(Iter(ib), Iter(ib+sb)); in test1()
[all …]
Dunique_pred.pass.cpp43 Iter r = std::unique(Iter(ia), Iter(ia+sa), count_equal()); in test()
51 r = std::unique(Iter(ib), Iter(ib+sb), count_equal()); in test()
60 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); in test()
68 r = std::unique(Iter(id), Iter(id+sd), count_equal()); in test()
77 r = std::unique(Iter(ie), Iter(ie+se), count_equal()); in test()
87 r = std::unique(Iter(ig), Iter(ig+sg), count_equal()); in test()
96 r = std::unique(Iter(ih), Iter(ih+sh), count_equal()); in test()
105 r = std::unique(Iter(ii), Iter(ii+si), count_equal()); in test()
131 Iter r = std::unique(Iter(ia), Iter(ia+sa), count_equal()); in test1()
140 r = std::unique(Iter(ib), Iter(ib+sb), count_equal()); in test1()
[all …]
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
Dunique.pass.cpp29 c1.unique(); in main()
39 c1.unique(); in main()
49 c1.unique(); in main()
57 c1.unique(); in main()
67 c1.unique(); in main()
78 c1.unique(); in main()
88 c1.unique(); in main()
98 c1.unique(); in main()
106 c1.unique(); in main()
116 c1.unique(); in main()
Dunique_pred.pass.cpp34 c1.unique(g); in main()
44 c1.unique(g); in main()
54 c1.unique(g); in main()
62 c1.unique(g); in main()
72 c1.unique(g); in main()
83 c1.unique(g); in main()
93 c1.unique(g); in main()
103 c1.unique(g); in main()
111 c1.unique(g); in main()
121 c1.unique(g); in main()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/
DNormalizedFileNames.java79 String unique = s; in ensureUniqueness() local
80 String lower = unique.toLowerCase(Locale.ENGLISH); in ensureUniqueness()
83 unique = s + '~' + idx++; in ensureUniqueness()
84 lower = unique.toLowerCase(Locale.ENGLISH); in ensureUniqueness()
87 return unique; in ensureUniqueness()
/external/llvm/test/Linker/
Dtype-unique-simple2.ll4 ; RUN: llvm-link %S/Inputs/type-unique-simple2-a.ll %S/Inputs/type-unique-simple2-b.ll -S -o %t
5 ; RUN: cat %t | FileCheck %S/Inputs/type-unique-simple2-a.ll -check-prefix=LINK
7 ; RUN: llvm-dwarfdump -debug-dump=info %t2 | FileCheck %S/Inputs/type-unique-simple2-a.ll
Dtype-unique-inheritance.ll1 …lvm-link %S/Inputs/type-unique-inheritance-a.ll %S/Inputs/type-unique-inheritance-b.ll -S -o - | F…
Dtype-unique-unrelated.ll1 ; RUN: llvm-link -S %s %p/Inputs/type-unique-unrelated2.ll %p/Inputs/type-unique-unrelated3.ll | Fi…
21 ; type-unique-unrelated2.ll look unrelated until type-unique-unrelated3.ll
Dtype-unique-odr-a.ll3 ; RUN: llvm-link %s %p/type-unique-odr-b.ll -S -o - \
7 ; RUN: llvm-link %p/type-unique-odr-b.ll %s -S -o - \
15 ; $ cat -n type-unique-odr-a.cpp
57 ; ModuleID = 'type-unique-odr-a.cpp'
91 !5 = !DIFile(filename: "type-unique-odr-a.cpp", directory: "")
100 !16 = !DIFile(filename: "type-unique-odr-a.cpp", directory: "")
Ddicompositetype-unique.ll1 ; RUN: llvm-link -S -o - %s %S/Inputs/dicompositetype-unique.ll \
3 ; RUN: llvm-link -S -o - %S/Inputs/dicompositetype-unique.ll %s \
5 ; RUN: llvm-link -disable-debug-info-type-map -S -o - %s %S/Inputs/dicompositetype-unique.ll \
10 ; RUN: llvm-as -o %t2.bc <%S/Inputs/dicompositetype-unique.ll
18 ; Check that the type map will unique two DICompositeTypes.
/external/autotest/server/site_tests/security_kASLR/
Dsecurity_kASLR.py104 unique = len(address_count)
105 logging.info("Unique kernel offsets: %d", unique)
111 if unique < 2:
113 if unique < (self.reboot_count / 3):
115 if highest > (unique / 10):
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
Dunique.pass.cpp22 assert(p.unique()); in main()
25 assert(!p.unique()); in main()
27 assert(p.unique()); in main()
/external/pdfium/core/fxcrt/
Dcfx_weak_ptr_unittest.cpp59 UniquePtr unique(&thing); in TEST() local
60 WeakPtr ptr1(std::move(unique)); in TEST()
87 UniquePtr unique(&thing); in TEST() local
88 WeakPtr ptr1(std::move(unique)); in TEST()
127 UniquePtr unique(&thing); in TEST() local
128 WeakPtr ptr1(std::move(unique)); in TEST()
/external/llvm/test/CodeGen/X86/
Dnon-unique-sections.ll1 ; RUN: llc < %s -mtriple=x86_64-pc-linux -function-sections -unique-section-names=false | FileCheck…
3 ; CHECK: .section .text,"ax",@progbits,unique
10 ; CHECK: .section .text,"ax",@progbits,unique
/external/libnfnetlink/include/libnfnetlink/
DMakefile.in290 unique=`for i in $$list; do \
295 mkid -fID $$unique
303 unique=`for i in $$list; do \
309 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
310 test -n "$$unique" || unique=$$empty_fix; \
313 "$$@" $$unique; \
316 $$unique; \
323 unique=`for i in $$list; do \
328 test -z "$(CTAGS_ARGS)$$unique" \
330 $$unique
/external/libogg/include/ogg/
DMakefile.in267 unique=`for i in $$list; do \
272 mkid -fID $$unique
280 unique=`for i in $$list; do \
285 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
286 test -n "$$unique" || unique=$$empty_fix; \
288 $$tags $$unique; \
296 unique=`for i in $$list; do \
301 test -z "$(CTAGS_ARGS)$$tags$$unique" \
303 $$tags $$unique

12345678910>>...40