Home
last modified time | relevance | path

Searched refs:compound (Results 1 – 25 of 271) sorted by relevance

1234567891011

/external/guava/guava-tests/test/com/google/common/util/concurrent/
DFuturesTest.java823 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/
DRegexTransformBuilder.java22 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/
Dglobalrelocs.ll77 @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/
Dglobalrelocs.ll27 @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/
Drst2html.css76 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/
DOrderingTest.java244 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/
DOrderingTest.java242 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/
Dcalling-conv.ll1 ; 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/
Dcopy.rst31 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/
Dcopy.rst35 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/
Dtextbloblooper.cpp157 LooperSettings compound[] = { in onOnceBeforeDraw() local
188 compound, SK_ARRAY_COUNT(compound))); in onOnceBeforeDraw()
/external/skqp/gm/
Dtextbloblooper.cpp157 LooperSettings compound[] = { in onOnceBeforeDraw() local
188 compound, SK_ARRAY_COUNT(compound))); in onOnceBeforeDraw()
/external/clang/test/Analysis/
Duninit-vals-ps-region.m63 // 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/
Dcompound_stmts.rst7 .. 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 …]
Dtoplevel_components.rst45 (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/
Duz_Cyrl.txt58 compound{
269 compound{
480 compound{
Dzh_Hans_HK.txt6 compound{
Dzh_Hans_SG.txt6 compound{
Dzh_Hans_MO.txt6 compound{
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_ra.cpp1008 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/
DTutorialMatrixArithmetic.dox26 \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/
Dv62_jumps.s3 # verify compound is split into single instructions if needed
/external/icu/icu4c/source/data/mappings/
Dicu-internal-compound-s1.ucm12 <code_set_name> icu-internal-compound-s1
/external/clang/docs/
DBlockLanguageSpec.rst148 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/
DDemo.java321 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()

1234567891011