/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | CollectionRetainAllTester.java | 65 private Target disjoint; field in CollectionRetainAllTester 84 disjoint in setUp() 140 expectReturnsFalse(disjoint); in testRetainAll_disjointPreviouslyEmpty() 147 expectReturnsFalseOrThrows(disjoint); in testRetainAll_disjointPreviouslyEmptyUnsupported() 154 expectReturnsTrue(disjoint); in testRetainAll_disjointPreviouslyNonEmpty() 162 expectThrows(disjoint); in testRetainAll_disjointPreviouslyNonEmptyUnsupported() 280 expectReturnsTrue(disjoint); in testRetainAll_containsNonNullWithNull()
|
/external/llvm/test/Analysis/BasicAA/ |
D | phi-and-select.ll | 44 ; Two PHIs with disjoint sets of inputs. 73 ; Two selects with disjoint sets of arms.
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
D | IntervalSet.java | 112 if ( addition.adjacent(r) || !addition.disjoint(r) ) { in add() 120 if ( bigger.adjacent(next)||!bigger.disjoint(next) ) { in add() 444 else if ( !mine.disjoint(theirs) ) { in and()
|
D | Interval.java | 96 public boolean disjoint(Interval other) { in disjoint() method in Interval
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | IDNA.java | 285 return !info.errors.isEmpty() && !Collections.disjoint(info.errors, errors); in hasCertainErrors() 293 return !info.labelErrors.isEmpty() && !Collections.disjoint(info.labelErrors, errors); in hasCertainLabelErrors()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | FeatureSpecificTestSuiteBuilder.java | 19 import static java.util.Collections.disjoint; 271 return !disjoint(a, b); in intersect()
|
/external/llvm/test/Analysis/CFLAliasAnalysis/ |
D | phi-and-select.ll | 8 ; Two PHIs with disjoint sets of inputs.
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | TokenRewriteStream.cs | 608 bool disjoint = in ReduceToSingleOperationPerIndex() 614 if (prevRop.text == null && rop.text == null && !disjoint) in ReduceToSingleOperationPerIndex() 622 else if ( !disjoint && !same ) in ReduceToSingleOperationPerIndex()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | TokenRewriteStream.java | 490 boolean disjoint = in reduceToSingleOperationPerIndex() 496 if ( prevRop.text==null && rop.text==null && !disjoint ) { in reduceToSingleOperationPerIndex() 503 else if ( !disjoint && !same ) { in reduceToSingleOperationPerIndex()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | SortedSetMultimapTestSuiteBuilder.java | 82 if (Collections.disjoint(features, EnumSet.allOf(CollectionSize.class))) { in computeMultimapAsMapGetTestSuite()
|
D | ListMultimapTestSuiteBuilder.java | 83 if (Collections.disjoint(features, EnumSet.allOf(CollectionSize.class))) { in computeMultimapAsMapGetTestSuite()
|
D | SetMultimapTestSuiteBuilder.java | 81 if (Collections.disjoint(features, EnumSet.allOf(CollectionSize.class))) { in computeMultimapAsMapGetTestSuite()
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_query.c | 177 td.disjoint = sq->end != sq->start; in softpipe_get_query_result()
|
/external/llvm/test/Feature/ |
D | optnone-llc.ll | 46 ; LLC-Ox-DAG: Skipping pass 'Merge disjoint stack slots'
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenRewriteStream.cs | 520 bool disjoint = in ReduceToSingleOperationPerIndex() 524 if (!disjoint && !same) { in ReduceToSingleOperationPerIndex()
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | streams.py | 1421 disjoint = (prevRop.lastIndex < rop.index 1429 if prevRop.text is None and rop.text is None and not disjoint: 1436 elif not disjoint and not same:
|
/external/clang/docs/ |
D | ControlFlowIntegrityDesign.rst | 191 The compiler lays out classes of disjoint hierarchies in separate regions 192 of the object file. At worst, bit vectors in disjoint hierarchies only 193 need to cover their disjoint hierarchy. But the closer that classes in
|
/external/mesa3d/src/gallium/include/pipe/ |
D | p_defines.h | 582 boolean disjoint; member
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | TokenRewriteStream.as | 338 // throw exception unless disjoint or identical 339 var disjoint:Boolean = 343 if ( !disjoint && !same ) {
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRTokenRewriteStream.m | 587 // throw exception unless disjoint or identical 588 BOOL disjoint = prevRop.lastIndex<rop.rwIndex || prevRop.rwIndex > rop.lastIndex; 590 if ( !disjoint && !same ) {
|
/external/llvm/test/Transforms/LCSSA/ |
D | indirectbr.ll | 544 ; An exit for Loop L1 may be the header of a disjoint Loop L2. Thus, when we
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
D | UTS46Test.java | 732 return !errors.isEmpty() && !Collections.disjoint(errors, certainErrors); in hasCertainErrors()
|
/external/valgrind/docs/internals/ |
D | segments-seginfos.txt | 122 etc., and assumes that the intervals are a disjoint cover of any
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | Grammar.java | 1211 List<IntervalSet> disjoint = makeEdgeSetsDisjoint(edges); in createLL_1_LookaheadDFA() local 1215 for (int i = 0; i < disjoint.size(); i++) { in createLL_1_LookaheadDFA() 1216 IntervalSet ds = (IntervalSet) disjoint.get(i); in createLL_1_LookaheadDFA()
|
/external/mesa3d/src/gallium/docs/source/ |
D | context.rst | 170 with a disjoint memory range. 259 used to draw disjoint primitive strips. For example, several separate
|