/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/test/ |
D | ModifierKeyCombinationSetTest.java | 7 import com.google.common.collect.ImmutableSet; 15 …ModifierKeyCombination combination = ModifierKeyCombination.ofOnKeys(ImmutableSet.<ModifierKey> of… in testOfWithSingleCombination() 16 …ModifierKeyCombinationSet combinationSet = ModifierKeyCombinationSet.of(ImmutableSet.of(combinatio… in testOfWithSingleCombination() 23 ImmutableSet.of(ModifierKey.SHIFT, ModifierKey.COMMAND), in testOfWithMultipleCombinations() 24 ImmutableSet.of(ModifierKey.CONTROL)); in testOfWithMultipleCombinations() 26 ImmutableSet.of(ModifierKey.OPTION_RIGHT, ModifierKey.CONTROL), in testOfWithMultipleCombinations() 27 ImmutableSet.of(ModifierKey.COMMAND, ModifierKey.SHIFT_LEFT)); in testOfWithMultipleCombinations() 29 … ImmutableSet.of(ModifierKey.CONTROL_LEFT, ModifierKey.CONTROL_RIGHT, ModifierKey.CAPSLOCK), in testOfWithMultipleCombinations() 30 ImmutableSet.of(ModifierKey.ALT)); in testOfWithMultipleCombinations() 31 ModifierKeyCombinationSet combinationSet = ModifierKeyCombinationSet.of(ImmutableSet.of( in testOfWithMultipleCombinations() [all …]
|
D | ModifierKeyCombinationTest.java | 6 import com.google.common.collect.ImmutableSet; 12 …ModifierKeyCombination combination = ModifierKeyCombination.ofOnKeys(ImmutableSet.of(ModifierKey.S… in testOfOnKeysForSimpleCombination() 13 ImmutableSet<ModifierKey> onKeys = ImmutableSet.of(ModifierKey.SHIFT); in testOfOnKeysForSimpleCombination() 15 ImmutableSet<ModifierKey> offKeys = ImmutableSet.of(ModifierKey.CONTROL, ModifierKey.OPTION, in testOfOnKeysForSimpleCombination() 22 ModifierKeyCombination combination = ModifierKeyCombination.ofOnKeys(ImmutableSet.of( in testOfOnKeysForComplexCombination() 24 ImmutableSet<ModifierKey> onKeys = ImmutableSet.of(ModifierKey.SHIFT, ModifierKey.ALT_RIGHT, in testOfOnKeysForComplexCombination() 27 … ImmutableSet<ModifierKey> offKeys = ImmutableSet.of(ModifierKey.ALT_LEFT, ModifierKey.OPTION, in testOfOnKeysForComplexCombination() 34 ModifierKeyCombination combination = ModifierKeyCombination.ofOnKeys(ImmutableSet.of( in testOfOnKeysForComplexCombinationWithVariant() 36 ImmutableSet<ModifierKey> onKeys = ImmutableSet.of(ModifierKey.SHIFT_RIGHT, in testOfOnKeysForComplexCombinationWithVariant() 39 … ImmutableSet<ModifierKey> offKeys = ImmutableSet.of(ModifierKey.CONTROL, ModifierKey.ALT_LEFT, in testOfOnKeysForComplexCombinationWithVariant() [all …]
|
D | ModifierKeySimplifierTest.java | 9 import com.google.common.collect.ImmutableSet; 13 private static ImmutableSet<ModifierKey> EMPTY_SET = ImmutableSet.<ModifierKey> of(); 18 ImmutableSet.of(ModifierKey.ALT_LEFT, ModifierKey.CAPSLOCK), in testSimplifyInputWithOverlappingSets() 19 ImmutableSet.of(ModifierKey.ALT_LEFT)); in testSimplifyInputWithOverlappingSets() 29 ImmutableSet<ModifierKey> offKeys = ImmutableSet.of(ModifierKey.CONTROL, ModifierKey.ALT, in testSimplifyInputWithBase() 35 ModifierKeyCombination combination = ModifierKeyCombination.ofOnKeys(ImmutableSet.of( in testSimplifyInputWithParentOn() 37 ImmutableSet<ModifierKey> onKeys = ImmutableSet.of(ModifierKey.ALT, ModifierKey.CAPSLOCK); in testSimplifyInputWithParentOn() 39 ImmutableSet<ModifierKey> offKeys = ImmutableSet.of(ModifierKey.CONTROL, ModifierKey.OPTION, in testSimplifyInputWithParentOn() 45 ModifierKeyCombination combination = ModifierKeyCombination.ofOnKeys(ImmutableSet.of( in testSimplifyInputWithChildOn() 47 … ImmutableSet<ModifierKey> onKeys = ImmutableSet.of(ModifierKey.OPTION_LEFT, ModifierKey.COMMAND); in testSimplifyInputWithChildOn() [all …]
|
D | KeyboardTest.java | 17 import com.google.common.collect.ImmutableSet; 27 …ModifierKeyCombination combination1 = ModifierKeyCombination.ofOnKeys(ImmutableSet.<ModifierKey> o… in createKeyboard() 28 …ModifierKeyCombinationSet combinationSet1 = ModifierKeyCombinationSet.of(ImmutableSet.of(combinati… in createKeyboard() 34 ImmutableSet.of(characterMap1, characterMap2, characterMap3)); in createKeyboard() 37 …ModifierKeyCombination combination2 = ModifierKeyCombination.ofOnKeys(ImmutableSet.of(ModifierKey.… in createKeyboard() 39 ImmutableSet.of(ModifierKey.OPTION, ModifierKey.SHIFT), in createKeyboard() 40 ImmutableSet.of(ModifierKey.CAPSLOCK)); in createKeyboard() 41 ModifierKeyCombinationSet combinationSet2 = ModifierKeyCombinationSet.of(ImmutableSet.of( in createKeyboard() 47 ImmutableSet.of(characterMap4, characterMap5, characterMap6)); in createKeyboard() 71 …ModifierKeyCombination combination1 = ModifierKeyCombination.ofOnKeys(ImmutableSet.<ModifierKey> o… in testKeyMaps() [all …]
|
D | KeyMapTest.java | 14 import com.google.common.collect.ImmutableSet; 22 ImmutableSet.of(ModifierKey.CONTROL), ImmutableSet.of(ModifierKey.OPTION_RIGHT)); in createKeyMap() 23 …ModifierKeyCombination combination2 = ModifierKeyCombination.ofOnKeys(ImmutableSet.of(ModifierKey.… in createKeyMap() 24 ModifierKeyCombinationSet combinationSet = ModifierKeyCombinationSet.of(ImmutableSet.of( in createKeyMap() 29 return KeyMap.of(combinationSet, ImmutableSet.of(characterMap1, characterMap2)); in createKeyMap() 36 ModifierKeyCombinationSet combinationSetTest = ModifierKeyCombinationSet.of(ImmutableSet.of( in testModifierKeyCombinationSet() 52 ImmutableSet.of(ModifierKey.CONTROL), ImmutableSet.of(ModifierKey.OPTION_RIGHT)); in testEqualsFalse() 53 …ModifierKeyCombinationSet combinationSet = ModifierKeyCombinationSet.of(ImmutableSet.of(combinatio… in testEqualsFalse() 57 … KeyMap keyMapTest = KeyMap.of(combinationSet, ImmutableSet.of(characterMap1, characterMap2)); in testEqualsFalse() 64 ImmutableSet.of(ModifierKey.CONTROL), ImmutableSet.of(ModifierKey.OPTION_RIGHT)); in testEqualsTrue() [all …]
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | CssSchema.java | 38 import com.google.common.collect.ImmutableSet; 50 final ImmutableSet<String> literals; 57 int bits, ImmutableSet<String> literals, in Property() 74 0, ImmutableSet.<String>of(), ImmutableMap.<String, String>of()); 169 ImmutableSet<String> mozBorderRadiusLiterals0 = ImmutableSet.of("/"); 170 ImmutableSet<String> mozOpacityLiterals0 = ImmutableSet.of("inherit"); 171 ImmutableSet<String> mozOutlineLiterals0 = ImmutableSet.of( 199 ImmutableSet<String> mozOutlineLiterals1 = ImmutableSet.of( 201 ImmutableSet<String> mozOutlineLiterals2 = ImmutableSet.of("thick", "thin"); 202 ImmutableSet<String> mozOutlineLiterals3 = ImmutableSet.of( [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableSetTest.java | 24 import com.google.common.collect.ImmutableSet.Builder; 90 ImmutableSet.Builder<String> builder = ImmutableSet.builder(); in suite() 170 return ImmutableSet.of(); in of() 175 return ImmutableSet.of(e); in of() 180 return ImmutableSet.of(e1, e2); in of() 185 return ImmutableSet.of(e1, e2, e3); in of() 190 return ImmutableSet.of(e1, e2, e3, e4); in of() 195 return ImmutableSet.of(e1, e2, e3, e4, e5); in of() 202 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest); in of() 207 return ImmutableSet.copyOf(elements); in copyOf() [all …]
|
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | Options.java | 27 import com.google.common.collect.ImmutableSet; 47 public static final ImmutableSet<LinkOption> NOFOLLOW_LINKS = 48 ImmutableSet.of(LinkOption.NOFOLLOW_LINKS); 51 public static final ImmutableSet<LinkOption> FOLLOW_LINKS = ImmutableSet.of(); 53 private static final ImmutableSet<OpenOption> DEFAULT_READ = ImmutableSet.<OpenOption>of(READ); 55 private static final ImmutableSet<OpenOption> DEFAULT_READ_NOFOLLOW_LINKS = 56 ImmutableSet.<OpenOption>of(READ, LinkOption.NOFOLLOW_LINKS); 58 private static final ImmutableSet<OpenOption> DEFAULT_WRITE = 59 ImmutableSet.<OpenOption>of(WRITE, CREATE, TRUNCATE_EXISTING); 62 public static ImmutableSet<LinkOption> getLinkOptions(LinkOption... options) { in getLinkOptions() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | ImmutableSetTest.java | 23 import com.google.common.collect.ImmutableSet.Builder; 143 return ImmutableSet.of(); in of() 148 return ImmutableSet.of(e); in of() 153 return ImmutableSet.of(e1, e2); in of() 158 return ImmutableSet.of(e1, e2, e3); in of() 163 return ImmutableSet.of(e1, e2, e3, e4); in of() 168 return ImmutableSet.of(e1, e2, e3, e4, e5); in of() 175 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest); in of() 180 return ImmutableSet.copyOf(elements); in copyOf() 185 return ImmutableSet.copyOf(elements); in copyOf() [all …]
|
/external/auto/factory/src/main/java/com/google/auto/factory/processor/ |
D | TypeVariables.java | 20 import com.google.common.collect.ImmutableSet; 36 static ImmutableSet<TypeVariable> getReferencedTypeVariables(TypeMirror type) { in getReferencedTypeVariables() 42 SimpleTypeVisitor8<ImmutableSet<TypeVariable>, Set<Element>> { 47 super(ImmutableSet.of()); in ReferencedTypeVariables() 51 public ImmutableSet<TypeVariable> visitArray(ArrayType t, Set<Element> visited) { in visitArray() 56 public ImmutableSet<TypeVariable> visitDeclared( in visitDeclared() 59 return ImmutableSet.of(); in visitDeclared() 61 ImmutableSet.Builder<TypeVariable> typeVariables = ImmutableSet.builder(); in visitDeclared() 69 public ImmutableSet<TypeVariable> visitTypeVariable( in visitTypeVariable() 72 return ImmutableSet.of(); in visitTypeVariable() [all …]
|
D | FactoryDescriptorGenerator.java | 34 import com.google.common.collect.ImmutableSet; 65 ImmutableSet<FactoryMethodDescriptor> generateDescriptor(Element element) { in generateDescriptor() 69 return ImmutableSet.of(); in generateDescriptor() 71 return element.accept(new ElementKindVisitor6<ImmutableSet<FactoryMethodDescriptor>, Void>() { in generateDescriptor() 73 protected ImmutableSet<FactoryMethodDescriptor> defaultAction(Element e, Void p) { in generateDescriptor() 78 public ImmutableSet<FactoryMethodDescriptor> visitTypeAsClass(TypeElement type, Void p) { in generateDescriptor() 83 return ImmutableSet.of(); in generateDescriptor() 86 ImmutableSet<ExecutableElement> constructors = Elements2.getConstructors(type); in generateDescriptor() 102 public ImmutableSet<FactoryMethodDescriptor> visitTypeAsInterface(TypeElement type, Void p) { in generateDescriptor() 106 return ImmutableSet.of(); in generateDescriptor() [all …]
|
D | FactoryDescriptor.java | 23 import com.google.common.collect.ImmutableSet; 51 abstract ImmutableSet<TypeMirror> implementingTypes(); in implementingTypes() 53 abstract ImmutableSet<FactoryMethodDescriptor> methodDescriptors(); in methodDescriptors() 54 abstract ImmutableSet<ImplementationMethodDescriptor> implementationMethodDescriptors(); in implementationMethodDescriptors() 81 ImmutableSet<TypeMirror> implementingTypes, in create() 83 ImmutableSet<FactoryMethodDescriptor> methodDescriptors, in create() 84 ImmutableSet<ImplementationMethodDescriptor> implementationMethodDescriptors, in create() 128 ImmutableSet<FactoryMethodDescriptor> deduplicatedMethodDescriptors = in create() 131 ImmutableSet<ImplementationMethodDescriptor> deduplicatedImplementationMethodDescriptors = in create() 132 ImmutableSet.copyOf( in create() [all …]
|
/external/llvm-project/llvm/unittests/ADT/ |
D | ImmutableSetTest.cpp | 37 ImmutableSet<int>::Factory f; in TEST_F() 43 ImmutableSet<int> S = f.getEmptySet(); in TEST_F() 51 ImmutableSet<int>::Factory f; in TEST_F() 52 ImmutableSet<int> S = f.getEmptySet(); in TEST_F() 54 ImmutableSet<int> S2 = f.add(S, 3); in TEST_F() 64 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() 79 ImmutableSet<int>::Factory f; in TEST_F() 80 ImmutableSet<int> S = f.getEmptySet(); in TEST_F() 82 ImmutableSet<int> S2 = f.add(f.add(f.add(S, 3), 4), 5); in TEST_F() 83 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() [all …]
|
/external/llvm/unittests/ADT/ |
D | ImmutableSetTest.cpp | 38 ImmutableSet<int>::Factory f; in TEST_F() 44 ImmutableSet<int> S = f.getEmptySet(); in TEST_F() 52 ImmutableSet<int>::Factory f; in TEST_F() 53 ImmutableSet<int> S = f.getEmptySet(); in TEST_F() 55 ImmutableSet<int> S2 = f.add(S, 3); in TEST_F() 65 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() 80 ImmutableSet<int>::Factory f; in TEST_F() 81 ImmutableSet<int> S = f.getEmptySet(); in TEST_F() 83 ImmutableSet<int> S2 = f.add(f.add(f.add(S, 3), 4), 5); in TEST_F() 84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/net/ |
D | InternetDomainNameTest.java | 23 import com.google.common.collect.ImmutableSet; 51 private static final ImmutableSet<String> VALID_NAME = 52 ImmutableSet.of( 72 private static final ImmutableSet<String> INVALID_NAME = 73 ImmutableSet.of( 97 private static final ImmutableSet<String> RS = 98 ImmutableSet.of( 111 private static final ImmutableSet<String> PS_NOT_RS = 112 ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com"); 114 private static final ImmutableSet<String> PS = [all …]
|
/external/guava/guava-tests/test/com/google/common/net/ |
D | InternetDomainNameTest.java | 23 import com.google.common.collect.ImmutableSet; 51 private static final ImmutableSet<String> VALID_NAME = 52 ImmutableSet.of( 72 private static final ImmutableSet<String> INVALID_NAME = 73 ImmutableSet.of( 97 private static final ImmutableSet<String> RS = 98 ImmutableSet.of( 111 private static final ImmutableSet<String> PS_NOT_RS = 112 ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com"); 114 private static final ImmutableSet<String> PS = [all …]
|
/external/dagger2/java/dagger/internal/codegen/binding/ |
D | ResolvedBindings.java | 26 import com.google.common.collect.ImmutableSet; 59 abstract ImmutableSet<MultibindingDeclaration> multibindingDeclarations(); in multibindingDeclarations() 62 abstract ImmutableSet<SubcomponentDeclaration> subcomponentDeclarations(); in subcomponentDeclarations() 65 abstract ImmutableSet<OptionalBindingDeclaration> optionalBindingDeclarations(); in optionalBindingDeclarations() 101 ImmutableSet<? extends Binding> bindingsOwnedBy(ComponentDescriptor component) { in bindingsOwnedBy() 110 ImmutableSet<ContributionBinding> contributionBindings() { in contributionBindings() 115 return ImmutableSet.copyOf(allContributionBindings().values()); in contributionBindings() 139 ImmutableSet.copyOf(multibindings), in forContributionBindings() 140 ImmutableSet.copyOf(subcomponentDeclarations), in forContributionBindings() 141 ImmutableSet.copyOf(optionalBindingDeclarations)); in forContributionBindings() [all …]
|
D | ModuleDescriptor.java | 41 import com.google.common.collect.ImmutableSet; 71 abstract ImmutableSet<TypeElement> includedModules(); in includedModules() 73 public abstract ImmutableSet<ContributionBinding> bindings(); in bindings() 76 abstract ImmutableSet<MultibindingDeclaration> multibindingDeclarations(); in multibindingDeclarations() 79 abstract ImmutableSet<SubcomponentDeclaration> subcomponentDeclarations(); in subcomponentDeclarations() 82 abstract ImmutableSet<DelegateDeclaration> delegateDeclarations(); in delegateDeclarations() 85 abstract ImmutableSet<OptionalBindingDeclaration> optionalDeclarations(); in optionalDeclarations() 92 public ImmutableSet<BindingDeclaration> allBindingDeclarations() { in allBindingDeclarations() 93 return ImmutableSet.<BindingDeclaration>builder() in allBindingDeclarations() 103 ImmutableSet<Key> allBindingKeys() { in allBindingKeys() [all …]
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableSet.java | 40 public abstract class ImmutableSet<E> extends ImmutableCollection<E> implements Set<E> { class 41 ImmutableSet() {} in ImmutableSet() method in ImmutableSet 43 public static <E> Collector<E, ?, ImmutableSet<E>> toImmutableSet() { in toImmutableSet() 49 public static <E> ImmutableSet<E> of() { in of() 50 return (ImmutableSet<E>) RegularImmutableSet.EMPTY; in of() 53 public static <E> ImmutableSet<E> of(E element) { in of() 58 public static <E> ImmutableSet<E> of(E e1, E e2) { in of() 63 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) { in of() 68 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { in of() 73 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { in of() [all …]
|
/external/auto/common/src/test/java/com/google/auto/common/ |
D | BasicAnnotationProcessorTest.java | 31 import com.google.common.collect.ImmutableSet; 82 return ImmutableSet.of( in steps() 85 public ImmutableSet<? extends Element> process( in steps() 92 return ImmutableSet.copyOf(elementsByAnnotation.values()); in steps() 95 return ImmutableSet.of(); in steps() 99 public ImmutableSet<String> annotations() { in steps() 100 return ImmutableSet.of(ENCLOSING_CLASS_NAME + ".RequiresGeneratedCode"); in steps() 105 public ImmutableSet<? extends Element> process( in steps() 107 return ImmutableSet.of(); in steps() 111 public ImmutableSet<String> annotations() { in steps() [all …]
|
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/containers/ |
D | ValidatorContext.java | 20 import com.google.common.collect.ImmutableSet; 43 public abstract ImmutableSet<ProfileConnectorInfo> newProfileConnectorInterfaces(); in newProfileConnectorInterfaces() 45 public abstract ImmutableSet<UserConnectorInfo> newUserConnectorInterfaces(); in newUserConnectorInterfaces() 47 public abstract ImmutableSet<TypeElement> newGeneratedProfileConnectors(); in newGeneratedProfileConnectors() 49 public abstract ImmutableSet<TypeElement> newGeneratedUserConnectors(); in newGeneratedUserConnectors() 51 public abstract ImmutableSet<ValidatorCrossProfileConfigurationInfo> newConfigurations(); in newConfigurations() 53 public abstract ImmutableSet<ValidatorCrossProfileTypeInfo> newCrossProfileTypes(); in newCrossProfileTypes() 55 public abstract ImmutableSet<ExecutableElement> newCrossProfileMethods(); in newCrossProfileMethods() 57 public abstract ImmutableSet<ValidatorProviderClassInfo> newProviderClasses(); in newProviderClasses() 59 public abstract ImmutableSet<ExecutableElement> newProviderMethods(); in newProviderMethods() [all …]
|
/external/dagger2/java/dagger/model/ |
D | BindingGraph.java | 27 import com.google.common.collect.ImmutableSet; 135 public ImmutableSet<Binding> bindings() { in bindings() 140 public ImmutableSet<Binding> bindings(Key key) { in bindings() 147 public ImmutableSet<MissingBinding> missingBindings() { in missingBindings() 152 public ImmutableSet<ComponentNode> componentNodes() { in componentNodes() 164 public ImmutableSet<ComponentNode> componentNodes(TypeElement component) { in componentNodes() 179 public ImmutableSet<DependencyEdge> dependencyEdges() { in dependencyEdges() 197 public ImmutableSet<DependencyEdge> dependencyEdges(DependencyRequest dependencyRequest) { in dependencyEdges() 207 public ImmutableSet<DependencyEdge> entryPointEdges(ComponentPath component) { in entryPointEdges() 219 public ImmutableSet<DependencyEdge> entryPointEdges() { in entryPointEdges() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/ |
D | ModifierKeyCombination.java | 10 import com.google.common.collect.ImmutableSet; 59 ImmutableSet.<ModifierKey> of()); 61 private final ImmutableSet<ModifierKey> onKeys; 62 private final ImmutableSet<ModifierKey> offKeys; 64 …private ModifierKeyCombination(ImmutableSet<ModifierKey> onKeys, ImmutableSet<ModifierKey> offKeys… in ModifierKeyCombination() 75 return ofOnAndDontCareKeys(ImmutableSet.copyOf(onKeys), ImmutableSet.<ModifierKey> of()); in ofOnKeys() 87 return ModifierKeySimplifier.simplifyInput(ImmutableSet.copyOf(onKeys), in ofOnAndDontCareKeys() 88 ImmutableSet.copyOf(dontCareKeys)); in ofOnAndDontCareKeys() 92 static ModifierKeyCombination of(ImmutableSet<ModifierKey> onKeys, in of() 93 ImmutableSet<ModifierKey> offKeys) { in of() [all …]
|
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/ |
D | PathNormalizationTest.java | 28 import com.google.common.collect.ImmutableSet; 42 private ImmutableSet<PathNormalization> normalizations; 46 normalizations = ImmutableSet.of(); in testNone() 74 normalizations = ImmutableSet.of(CASE_FOLD_UNICODE); in testCaseFold() 87 normalizations = ImmutableSet.of(CASE_FOLD_ASCII); in testCaseInsensitiveAscii() 106 normalizations = ImmutableSet.of(NFC); in testNormalizeNfc() 119 normalizations = ImmutableSet.of(NFD); in testNormalizeNfd() 137 normalizations = ImmutableSet.of(NFC, CASE_FOLD_UNICODE); in testNormalizeNfcCaseFold() 150 normalizations = ImmutableSet.of(NFD, CASE_FOLD_UNICODE); in testNormalizeNfdCaseFold() 168 normalizations = ImmutableSet.of(NFC, CASE_FOLD_ASCII); in testNormalizeNfcCaseFoldAscii() [all …]
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | ImmutableSet.java | 48 public abstract class ImmutableSet<E> extends ImmutableCollection<E> implements Set<E> { class 54 public static <E> ImmutableSet<E> of() { in of() 55 return (ImmutableSet<E>) RegularImmutableSet.EMPTY; in of() 63 public static <E> ImmutableSet<E> of(E element) { in of() 72 public static <E> ImmutableSet<E> of(E e1, E e2) { in of() 81 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) { in of() 90 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { in of() 99 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { in of() 113 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) { in of() 141 private static <E> ImmutableSet<E> construct(int n, Object... elements) { in construct() [all …]
|