/external/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
D | compound_packet_unittest.cc | 40 CompoundPacket compound; in TEST() local 47 compound.Append(&rr); in TEST() 48 compound.Append(&fir); in TEST() 50 rtc::Buffer packet = compound.Build(); in TEST() 88 CompoundPacket compound; in TEST() local 95 compound.Append(&rr); in TEST() 96 compound.Append(&fir); in TEST() 113 EXPECT_TRUE(compound.Build(kBufferSize, callback.AsStdFunction())); in TEST() 117 CompoundPacket compound; in TEST() local 124 compound.Append(&rr); in TEST() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | RegexTransformBuilder.java | 22 List<StringTransform> compound = new ArrayList<>(); in createFromRules() local 39 compound.add(new RegexTransform(rules)); in createFromRules() 52 compound.add(translit); in createFromRules() 103 compound.add(new RegexTransform(rules)); in createFromRules() 108 … StringTransform result = compound.size() == 1 ? compound.get(0) : new CompoundTransform(compound); in createFromRules()
|
/external/libaom/libaom/ |
D | Sample.cfg | 25 disable_one_sided_comp = 0 # disable one sided compound mode 26 disable_masked_comp = 0 # disable masked compound prediction 27 disable_diff_wtd_comp = 0 # disable difference weighted compound mode 29 disable_dist_wtd_comp = 0 # disable distant weighted compound mode 30 disable_inter_intra_comp = 0 # disable inter/intra compound mode.
|
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/ |
D | FuturesTest.java | 2167 ListenableFuture<List<String>> compound = allAsList(future1, future2, future3); 2171 compound.addListener(listener, directExecutor()); 2174 assertFalse(compound.isDone()); 2176 assertFalse(compound.isDone()); 2178 assertFalse(compound.isDone()); 2183 List<String> results = getDone(compound); 2191 ListenableFuture<List<String>> compound = allAsList(futures); 2192 compound.addListener(listener, directExecutor()); 2193 assertThat(getDone(compound)).isEmpty(); 2201 ListenableFuture<List<String>> compound = allAsList(); [all …]
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | FuturesTest.java | 2167 ListenableFuture<List<String>> compound = allAsList(future1, future2, future3); 2171 compound.addListener(listener, directExecutor()); 2174 assertFalse(compound.isDone()); 2176 assertFalse(compound.isDone()); 2178 assertFalse(compound.isDone()); 2183 List<String> results = getDone(compound); 2191 ListenableFuture<List<String>> compound = allAsList(futures); 2192 compound.addListener(listener, directExecutor()); 2193 assertThat(getDone(compound)).isEmpty(); 2201 ListenableFuture<List<String>> compound = allAsList(); [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | OrderingTest.java | 276 Ordering.compound( 294 Comparator<String> comparator = byCharAt(1).compound(byCharAt(0)); 306 Ordering<Number> a = numbers.compound(numbers); 310 Ordering<Number> b = numbers.compound(objects); 311 Ordering<Number> c = objects.compound(numbers); 313 Ordering<Integer> d = numbers.compound(integers); 314 Ordering<Integer> e = integers.compound(numbers); 319 Ordering<Number> f = numbers.compound(objects).compound(objects); // bad IDEA 320 Ordering<Number> g = objects.compound(numbers).compound(objects); 321 Ordering<Number> h = objects.compound(objects).compound(numbers); [all …]
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | OrderingTest.java | 276 Ordering.compound( 294 Comparator<String> comparator = byCharAt(1).compound(byCharAt(0)); 306 Ordering<Number> a = numbers.compound(numbers); 310 Ordering<Number> b = numbers.compound(objects); 311 Ordering<Number> c = objects.compound(numbers); 313 Ordering<Integer> d = numbers.compound(integers); 314 Ordering<Integer> e = integers.compound(numbers); 319 Ordering<Number> f = numbers.compound(objects).compound(objects); // bad IDEA 320 Ordering<Number> g = objects.compound(numbers).compound(objects); 321 Ordering<Number> h = objects.compound(objects).compound(numbers); [all …]
|
/external/python/cpython3/Tools/c-analyzer/c_analyzer/parser/ |
D | declarations.py | 309 compound = [lines] 310 while compound: 311 body = compound.pop(0) 325 compound.extend(bodies)
|
/external/llvm-project/llvm/test/CodeGen/Hexagon/ |
D | feature-compound.ll | 20 attributes #0 = { nounwind readnone "target-cpu"="hexagonv62" "target-features"="+compound" } 21 attributes #1 = { nounwind readnone "target-cpu"="hexagonv62" "target-features"="-compound" }
|
D | calling-conv.ll | 1 ; RUN: llc -march=hexagon -mno-pairing -mno-compound <%s | FileCheck %s --check-prefix=CHECK-ONE 2 ; RUN: llc -march=hexagon -mno-pairing -mno-compound <%s | FileCheck %s --check-prefix=CHECK-TWO 3 ; RUN: llc -march=hexagon -mno-pairing -mno-compound <%s | FileCheck %s --check-prefix=CHECK-THREE
|
D | constant_compound.ll | 3 ; Generating a compound instruction with a constant is not profitable. 4 ; The constant needs to be kept in a register before it is fed to compound
|
/external/python/cpython2/Doc/library/ |
D | copy.rst | 31 The difference between shallow and deep copying is only relevant for compound 34 * A *shallow copy* constructs a new compound object and then (to the extent 37 * A *deep copy* constructs a new compound object and then, recursively, inserts 43 * Recursive objects (compound objects that, directly or indirectly, contain a
|
/external/python/cpython3/Doc/library/ |
D | copy.rst | 36 The difference between shallow and deep copying is only relevant for compound 39 * A *shallow copy* constructs a new compound object and then (to the extent 42 * A *deep copy* constructs a new compound object and then, recursively, inserts 48 * Recursive objects (compound objects that, directly or indirectly, contain a
|
/external/python/pycparser/tests/ |
D | test_c_parser.py | 511 compound = self.parse(e).ext[0].body 513 s1 = compound.block_items[0].init 519 s2 = compound.block_items[1].init 523 s3 = compound.block_items[2].init 552 compound = self.parse(e).ext[0].body 553 s1 = compound.block_items[0].init 559 s3 = compound.block_items[2].init 565 s4 = compound.block_items[3].init 581 compound = self.parse(e).ext[0].body 582 self.assertIsInstance(compound, Compound) [all …]
|
/external/webrtc/modules/rtp_rtcp/source/ |
D | rtcp_receiver_unittest.cc | 1208 rtcp::CompoundPacket compound; in TEST() local 1209 compound.Append(&sr); in TEST() 1210 compound.Append(&tmmbr); in TEST() 1217 receiver.IncomingPacket(compound.Build()); in TEST() 1237 rtcp::CompoundPacket compound; in TEST() local 1238 compound.Append(&sr); in TEST() 1239 compound.Append(&tmmbr); in TEST() 1244 receiver.IncomingPacket(compound.Build()); in TEST() 1259 rtcp::CompoundPacket compound; in TEST() local 1260 compound.Append(&sr); in TEST() [all …]
|
D | rtcp_transceiver_impl_unittest.cc | 679 CompoundPacket compound; in TEST() local 682 compound.Append(&sr); in TEST() 685 compound.Append(&bye); in TEST() 686 auto raw_packet = compound.Build(); in TEST() 699 CompoundPacket compound; in TEST() local 702 compound.Append(&app); in TEST() 705 compound.Append(&bye); in TEST() 706 auto raw_packet = compound.Build(); in TEST()
|
/external/skqp/gm/ |
D | textbloblooper.cpp | 157 LooperSettings compound[] = { in onOnceBeforeDraw() local 188 compound, SK_ARRAY_COUNT(compound))); in onOnceBeforeDraw()
|
/external/llvm-project/llvm/test/Instrumentation/ThreadSanitizer/ |
D | read_before_write.ll | 3 ; RUN: opt < %s -tsan -tsan-compound-read-before-write -S | FileCheck %s --check-prefixes=CHECK,CHE… 4 ; RUN: opt < %s -tsan -tsan-distinguish-volatile -tsan-compound-read-before-write -S | FileCheck %s…
|
/external/llvm-project/clang/test/SemaObjC/ |
D | strong-in-c-struct.m | 61 …(void)(Strong){ .a = x }; // expected-note {{jump enters lifetime of a compound literal that is no… 72 …(void)(Strong){ .a = x }; // expected-note {{jump exits lifetime of a compound literal that is non…
|
/external/icu/icu4c/source/data/unit/ |
D | zh_Hans_SG.txt | 6 compound{
|
D | zh_Hans_MO.txt | 6 compound{
|
D | zh_Hans_HK.txt | 6 compound{
|
/external/clang/test/Analysis/ |
D | uninit-vals-ps-region.m | 63 // being used in the LHS of a compound assignment. 67 …b.x |= 1; // expected-warning{{The left expression of the compound assignment is an uninitialized …
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | hicpp-static-assert.rst | 10 …m/rule/6-1-1-enclose-the-body-of-a-selection-or-an-iteration-statement-in-a-compound-statement/>`_.
|
/external/llvm-project/llvm/test/MC/Hexagon/ |
D | v62_jumps.s | 3 # verify compound is split into single instructions if needed
|