Searched refs:compound (Results 1 – 25 of 161) sorted by relevance
1234567
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | FuturesTest.java | 805 ListenableFuture<List<String>> compound = 810 compound.addListener(listener, MoreExecutors.sameThreadExecutor()); 813 assertFalse(compound.isDone()); 815 assertFalse(compound.isDone()); 817 assertFalse(compound.isDone()); 820 assertTrue(compound.isDone()); 823 List<String> results = compound.get(); 831 ListenableFuture<List<String>> compound = Futures.allAsList(futures); 832 compound.addListener(listener, MoreExecutors.sameThreadExecutor()); 833 assertTrue(compound.isDone()); [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/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/skia/gm/ |
D | textbloblooper.cpp | 161 LooperSettings compound[] = { in onOnceBeforeDraw() local 192 compound, SK_ARRAY_COUNT(compound))); in onOnceBeforeDraw()
|
/external/icu/icu4c/source/data/unit/ |
D | fo.txt | 48 compound{ 192 compound{ 352 compound{
|
D | zh_Hans_MO.txt | 12 compound{
|
D | zh_Hans_HK.txt | 12 compound{
|
D | zh_Hans_SG.txt | 12 compound{
|
D | uz_Cyrl.txt | 64 compound{ 275 compound{ 486 compound{
|
D | ug.txt | 50 compound{ 445 compound{
|
D | zh.txt | 83 compound{ 564 compound{ 776 compound{
|
D | th.txt | 83 compound{ 564 compound{ 777 compound{
|
D | fy.txt | 73 compound{ 320 compound{ 541 compound{
|
D | my.txt | 83 compound{ 564 compound{ 776 compound{
|
D | km.txt | 83 compound{ 564 compound{ 776 compound{
|
D | ksh.txt | 83 compound{ 364 compound{ 606 compound{
|
D | te.txt | 98 compound{ 691 compound{ 954 compound{
|
D | ko.txt | 83 compound{ 564 compound{ 776 compound{
|
/external/icu/icu4c/source/data/mappings/ |
D | icu-internal-compound-s1.ucm | 10 <code_set_name> icu-internal-compound-s1
|
D | icu-internal-compound-s2.ucm | 10 <code_set_name> icu-internal-compound-s2
|
/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/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/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_ra.cpp | 865 ldst->compound = lsrc->compound; in copyCompound() 882 if (!rep->compound) in makeCompound() 884 rep->compound = 1; in makeCompound() 889 val->compound = 1; in makeCompound() 1202 if (vA->compound | vB->compound) { in checkInterference() 1215 uint8_t mask = vD->compound ? vD->compMask : ~0; in checkInterference() 1216 if (vd->compound) { in checkInterference() 1217 assert(vB->compound); in checkInterference() 1226 vD->compound ? vD->compMask : 0xff, in checkInterference() 1228 vd->compound ? vd->compMask : intfMask, in checkInterference() [all …]
|
/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/openssh/ |
D | auth-pam.c | 1075 char *compound; in do_pam_putenv() local 1079 compound = xmalloc(len); in do_pam_putenv() 1081 snprintf(compound, len, "%s=%s", name, value); in do_pam_putenv() 1082 ret = pam_putenv(sshpam_handle, compound); in do_pam_putenv() 1083 free(compound); in do_pam_putenv()
|
1234567