/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | FuturesTest.java | 823 ListenableFuture<List<String>> compound = 828 compound.addListener(listener, directExecutor()); 831 assertFalse(compound.isDone()); 833 assertFalse(compound.isDone()); 835 assertFalse(compound.isDone()); 838 assertTrue(compound.isDone()); 841 List<String> results = compound.get(); 849 ListenableFuture<List<String>> compound = Futures.allAsList(futures); 850 compound.addListener(listener, directExecutor()); 851 assertTrue(compound.isDone()); [all …]
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | RegexTransformBuilder.java | 22 List<StringTransform> compound = new ArrayList<StringTransform>(); 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/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/ |
D | globalrelocs.ll | 77 @compound = internal global <{ [3 x i8], i32 }> <{ [3 x i8] c"foo", i32 ptrtoint (void ()* @func to… 78 ; DUMP: @compound = internal global <{ [3 x i8], i32 }> <{ [3 x i8] c"foo", i32 ptrtoint (void ()* … 79 ; CHECK: .type compound,%object 81 ; CHECK:compound: 86 ; CHECK: .size compound, 7 195 @addend_struct1 = internal global i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to i32), i3… 196 ; DUMP: @addend_struct1 = internal global i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to … 200 ; CHECK: .long compound + 1 203 @const_addend_struct1 = internal constant i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to … 204 …d_struct1 = internal constant i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to i32), i32 1) [all …]
|
/external/swiftshader/third_party/subzero/tests_lit/reader_tests/ |
D | globalrelocs.ll | 27 @compound = internal global <{ [3 x i8], i32 }> <{ [3 x i8] c"foo", i32 ptrtoint (void ()* @func to… 28 ; CHECK-NEXT: @compound = internal global <{ [3 x i8], i32 }> <{ [3 x i8] c"foo", i32 ptrtoint (voi… 70 @addend_struct1 = internal global i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to i32), i3… 71 …end_struct1 = internal global i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to i32), i32 1) 73 @const_addend_struct1 = internal constant i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to … 74 …d_struct1 = internal constant i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to i32), i32 1) 76 @addend_struct2 = internal global i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to i32), i3… 77 …end_struct2 = internal global i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to i32), i32 4) 79 @const_addend_struct2 = internal constant i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to … 80 …d_struct2 = internal constant i32 add (i32 ptrtoint (<{ [3 x i8], i32 }>* @compound to i32), i32 4)
|
/external/shflags/doc/ |
D | rst2html.css | 76 compound paragraphs. 77 div.compound .compound-first, div.compound .compound-middle { 80 div.compound .compound-last, div.compound .compound-middle {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | OrderingTest.java | 244 Comparator<String> comparator = Ordering.compound(ImmutableList.of( 260 Comparator<String> comparator = byCharAt(1).compound(byCharAt(0)); 277 Ordering<Number> a = numbers.compound(numbers); 281 Ordering<Number> b = numbers.compound(objects); 282 Ordering<Number> c = objects.compound(numbers); 284 Ordering<Integer> d = numbers.compound(integers); 285 Ordering<Integer> e = integers.compound(numbers); 290 Ordering<Number> f = numbers.compound(objects).compound(objects); //bad IDEA 291 Ordering<Number> g = objects.compound(numbers).compound(objects); 292 Ordering<Number> h = objects.compound(objects).compound(numbers); [all …]
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | OrderingTest.java | 242 Comparator<String> comparator = Ordering.compound(ImmutableList.of( 258 Comparator<String> comparator = byCharAt(1).compound(byCharAt(0)); 275 Ordering<Number> a = numbers.compound(numbers); 279 Ordering<Number> b = numbers.compound(objects); 280 Ordering<Number> c = objects.compound(numbers); 282 Ordering<Integer> d = numbers.compound(integers); 283 Ordering<Integer> e = integers.compound(numbers); 288 Ordering<Number> f = numbers.compound(objects).compound(objects); //bad IDEA 289 Ordering<Number> g = objects.compound(numbers).compound(objects); 290 Ordering<Number> h = objects.compound(objects).compound(numbers); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/ |
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
|
/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 | 35 The difference between shallow and deep copying is only relevant for compound 38 * A *shallow copy* constructs a new compound object and then (to the extent 41 * A *deep copy* constructs a new compound object and then, recursively, inserts 47 * Recursive objects (compound objects that, directly or indirectly, contain a
|
/external/skia/gm/ |
D | textbloblooper.cpp | 157 LooperSettings compound[] = { in onOnceBeforeDraw() local 188 compound, SK_ARRAY_COUNT(compound))); in onOnceBeforeDraw()
|
/external/skqp/gm/ |
D | textbloblooper.cpp | 157 LooperSettings compound[] = { in onOnceBeforeDraw() local 188 compound, SK_ARRAY_COUNT(compound))); in onOnceBeforeDraw()
|
/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/python/cpython3/Doc/reference/ |
D | compound_stmts.rst | 7 .. index:: pair: compound; statement 10 the execution of those other statements in some way. In general, compound 11 statements span multiple lines, although in simple incarnations a whole compound 19 also syntactically compound statements. 26 A compound statement consists of one or more 'clauses.' A clause consists of a 27 header and a 'suite.' The clause headers of a particular compound statement are 33 form of a suite can contain nested compound statements; the following is illegal, 88 single: : (colon); compound statement 113 single: : (colon); compound statement 149 single: : (colon); compound statement [all …]
|
D | toplevel_components.rst | 45 (possibly compound) at a time. The initial environment is identical to that of 91 Note that a (top-level) compound statement must be followed by a blank line in
|
/external/icu/icu4c/source/data/unit/ |
D | uz_Cyrl.txt | 58 compound{ 269 compound{ 480 compound{
|
D | zh_Hans_HK.txt | 6 compound{
|
D | zh_Hans_SG.txt | 6 compound{
|
D | zh_Hans_MO.txt | 6 compound{
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_ra.cpp | 1008 if (ldst->compound && !lsrc->compound) { in copyCompound() 1014 ldst->compound = lsrc->compound; in copyCompound() 1031 if (!rep->compound) in makeCompound() 1033 rep->compound = 1; in makeCompound() 1038 val->compound = 1; in makeCompound() 1352 if (vA->compound | vB->compound) { in checkInterference() 1365 uint8_t mask = vD->compound ? vD->compMask : ~0; in checkInterference() 1366 if (vd->compound) { in checkInterference() 1367 assert(vB->compound); in checkInterference() 1376 vD->compound ? vD->compMask : 0xff, in checkInterference() [all …]
|
/external/eigen/doc/ |
D | TutorialMatrixArithmetic.dox | 26 \li compound operator += as in \c a+=b 27 \li compound operator -= as in \c a-=b 44 \li compound operator *= as in \c matrix*=scalar 45 \li compound operator /= as in \c matrix/=scalar 123 \li compound operator *= as in \c a*=b (this multiplies on the right: \c a*=b is equivalent to <tt>…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Hexagon/ |
D | v62_jumps.s | 3 # verify compound is split into single instructions if needed
|
/external/icu/icu4c/source/data/mappings/ |
D | icu-internal-compound-s1.ucm | 12 <code_set_name> icu-internal-compound-s1
|
/external/clang/docs/ |
D | BlockLanguageSpec.rst | 148 The compound statement body establishes a new lexical scope within 149 that of its parent. Variables used within the scope of the compound 155 Local automatic (stack) variables referenced within the compound 252 The compound statement of a Block is treated much like a function body 276 scope of the compound statement. These variables are implicitly 343 leaves the compound statement that contains the Block literal
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | Demo.java | 321 String compound = ""; in initMenus() 323 compound = compoundDialog.getArea().getText(); in initMenus() 324 setTransliterator(compound, null); in initMenus() 326 compoundDialog.getArea().setText(compound + "\n" + ex.getMessage()); in initMenus() 350 String compound = ""; in initMenus() 352 compound = rulesDialog.getArea().getText(); in initMenus() 354 setTransliterator(compound, id); in initMenus() 356 rulesDialog.getArea().setText(compound + "\n#" + ex.getMessage()); in initMenus()
|