/external/guava/android/guava/src/com/google/common/collect/ |
D | SortedMultisets.java | 144 fromElement, BoundType.forBoolean(fromInclusive), in subSet() 145 toElement, BoundType.forBoolean(toInclusive))); in subSet() 151 multiset().headMultiset(toElement, BoundType.forBoolean(inclusive))); in headSet() 157 multiset().tailMultiset(fromElement, BoundType.forBoolean(inclusive))); in tailSet()
|
D | BoundType.java | 39 static BoundType forBoolean(boolean inclusive) { in forBoolean() method in BoundType 44 return forBoolean(!inclusive); in flip()
|
D | RegularContiguousSet.java | 51 return intersectionInCurrentDomain(Range.upTo(toElement, BoundType.forBoolean(inclusive))); in headSetImpl() 63 fromElement, BoundType.forBoolean(fromInclusive), in subSetImpl() 64 toElement, BoundType.forBoolean(toInclusive))); in subSetImpl() 69 return intersectionInCurrentDomain(Range.downTo(fromElement, BoundType.forBoolean(inclusive))); in tailSetImpl()
|
D | TreeRangeSet.java | 315 fromKey, BoundType.forBoolean(fromInclusive), in subMap() 316 toKey, BoundType.forBoolean(toInclusive))); in subMap() 321 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive))); in headMap() 326 return subMap(Range.downTo(fromKey, BoundType.forBoolean(inclusive))); in tailMap() 483 fromKey, BoundType.forBoolean(fromInclusive), 484 toKey, BoundType.forBoolean(toInclusive))); 489 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive))); 494 return subMap(Range.downTo(fromKey, BoundType.forBoolean(inclusive))); 719 BoundType.forBoolean(fromInclusive), 721 BoundType.forBoolean(toInclusive))); [all …]
|
D | ImmutableRangeSet.java | 596 return subSet(Range.upTo(toElement, BoundType.forBoolean(inclusive))); 607 fromElement, BoundType.forBoolean(fromInclusive), 608 toElement, BoundType.forBoolean(toInclusive))); 613 return subSet(Range.downTo(fromElement, BoundType.forBoolean(inclusive)));
|
/external/guava/guava/src/com/google/common/collect/ |
D | SortedMultisets.java | 144 fromElement, BoundType.forBoolean(fromInclusive), in subSet() 145 toElement, BoundType.forBoolean(toInclusive))); in subSet() 151 multiset().headMultiset(toElement, BoundType.forBoolean(inclusive))); in headSet() 157 multiset().tailMultiset(fromElement, BoundType.forBoolean(inclusive))); in tailSet()
|
D | BoundType.java | 39 static BoundType forBoolean(boolean inclusive) { in forBoolean() method in BoundType 44 return forBoolean(!inclusive); in flip()
|
D | RegularContiguousSet.java | 51 return intersectionInCurrentDomain(Range.upTo(toElement, BoundType.forBoolean(inclusive))); in headSetImpl() 63 fromElement, BoundType.forBoolean(fromInclusive), in subSetImpl() 64 toElement, BoundType.forBoolean(toInclusive))); in subSetImpl() 69 return intersectionInCurrentDomain(Range.downTo(fromElement, BoundType.forBoolean(inclusive))); in tailSetImpl()
|
D | TreeRangeSet.java | 313 fromKey, BoundType.forBoolean(fromInclusive), in subMap() 314 toKey, BoundType.forBoolean(toInclusive))); in subMap() 319 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive))); in headMap() 324 return subMap(Range.downTo(fromKey, BoundType.forBoolean(inclusive))); in tailMap() 481 fromKey, BoundType.forBoolean(fromInclusive), 482 toKey, BoundType.forBoolean(toInclusive))); 487 return subMap(Range.upTo(toKey, BoundType.forBoolean(inclusive))); 492 return subMap(Range.downTo(fromKey, BoundType.forBoolean(inclusive))); 716 BoundType.forBoolean(fromInclusive), 718 BoundType.forBoolean(toInclusive))); [all …]
|
D | ImmutableRangeSet.java | 609 return subSet(Range.upTo(toElement, BoundType.forBoolean(inclusive))); 620 fromElement, BoundType.forBoolean(fromInclusive), 621 toElement, BoundType.forBoolean(toInclusive))); 626 return subSet(Range.downTo(fromElement, BoundType.forBoolean(inclusive)));
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/ |
D | ImmutableBooleanEncodedValue.java | 47 public static ImmutableBooleanEncodedValue forBoolean(boolean value) { in forBoolean() method in ImmutableBooleanEncodedValue 52 return forBoolean(booleanEncodedValue.getValue()); in of()
|
/external/mockito/src/test/java/org/mockitousage/matchers/ |
D | AnyXMatchersAcceptNullsTest.java | 63 when(mock.forBoolean(anyBoolean())).thenReturn("4"); in shouldNotAcceptNullInAllAnyPrimitiveWrapperMatchers() 72 assertEquals(null, mock.forBoolean(null)); in shouldNotAcceptNullInAllAnyPrimitiveWrapperMatchers()
|
D | MatchersTest.java | 457 when(mock.forBoolean(isNull(Boolean.class))).thenReturn("ok"); in null_matcher_for_primitive_wrappers() 466 assertEquals("ok", mock.forBoolean(null)); in null_matcher_for_primitive_wrappers()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/ |
D | DexBackedEncodedValue.java | 103 return ImmutableBooleanEncodedValue.forBoolean(valueArg == 1); in readFrom()
|
/external/mockito/src/test/java/org/mockitousage/ |
D | IMethods.java | 53 String forBoolean(Boolean value); in forBoolean() method
|
D | MethodsImpl.java | 92 public String forBoolean(Boolean value) { in forBoolean() method in MethodsImpl
|
/external/smali/smali/src/main/antlr/ |
D | smaliTreeWalker.g | 284 | bool_literal { $encodedValue = ImmutableBooleanEncodedValue.forBoolean($bool_literal.value); }
|
/external/smali/smali/src/main/java/org/jf/smali/ |
D | smaliTreeWalker.java | 1357 encodedValue = ImmutableBooleanEncodedValue.forBoolean(bool_literal32); in literal()
|