Home
last modified time | relevance | path

Searched defs:set (Results 1 – 25 of 1342) sorted by relevance

12345678910>>...54

/external/guava/guava-tests/test/com/google/common/collect/
DImmutableSortedSetTest.java215 SortedSet<String> set = of(); in testEmpty_comparator() local
220 SortedSet<String> set = of(); in testEmpty_headSet() local
225 SortedSet<String> set = of(); in testEmpty_tailSet() local
230 SortedSet<String> set = of(); in testEmpty_subSet() local
235 SortedSet<String> set = of(); in testEmpty_first() local
244 SortedSet<String> set = of(); in testEmpty_last() local
254 SortedSet<String> set = of(); in testEmpty_serialization() local
260 SortedSet<String> set = of("e"); in testSingle_comparator() local
265 SortedSet<String> set = of("e"); in testSingle_headSet() local
273 SortedSet<String> set = of("e"); in testSingle_tailSet() local
[all …]
DAbstractImmutableSetTest.java62 Set<String> set = of(); in testCreation_noArgs() local
63 assertEquals(Collections.<String>emptySet(), set); in testCreation_noArgs() local
64 assertSame(of(), set); in testCreation_noArgs() local
68 Set<String> set = of("a"); in testCreation_oneElement() local
73 Set<String> set = of("a", "b"); in testCreation_twoElements() local
78 Set<String> set = of("a", "b", "c"); in testCreation_threeElements() local
83 Set<String> set = of("a", "b", "c", "d"); in testCreation_fourElements() local
88 Set<String> set = of("a", "b", "c", "d", "e"); in testCreation_fiveElements() local
93 Set<String> set = of("a", "b", "c", "d", "e", "f"); in testCreation_sixElements() local
98 Set<String> set = of("a", "b", "c", "d", "e", "f", "g"); in testCreation_sevenElements() local
[all …]
DContiguousSetTest.java147 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testHeadSet() local
165 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testTailSet() local
181 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testSubSet() local
198 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testSubSet_outOfOrder() local
228 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testContains() local
244 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testContainsAll() local
303 ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testIntersection_empty() local
313 ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testIntersection() local
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DImmutableSortedSetTest.java103 SortedSet<String> set = of(); in testEmpty_comparator() local
108 SortedSet<String> set = of(); in testEmpty_headSet() local
113 SortedSet<String> set = of(); in testEmpty_tailSet() local
118 SortedSet<String> set = of(); in testEmpty_subSet() local
123 SortedSet<String> set = of(); in testEmpty_first() local
132 SortedSet<String> set = of(); in testEmpty_last() local
141 SortedSet<String> set = of("e"); in testSingle_comparator() local
146 SortedSet<String> set = of("e"); in testSingle_headSet() local
154 SortedSet<String> set = of("e"); in testSingle_tailSet() local
162 SortedSet<String> set = of("e"); in testSingle_subSet() local
[all …]
DAbstractImmutableSetTest.java58 Set<String> set = of(); in testCreation_noArgs() local
59 assertEquals(Collections.<String>emptySet(), set); in testCreation_noArgs() local
60 assertSame(of(), set); in testCreation_noArgs() local
64 Set<String> set = of("a"); in testCreation_oneElement() local
69 Set<String> set = of("a", "b"); in testCreation_twoElements() local
74 Set<String> set = of("a", "b", "c"); in testCreation_threeElements() local
79 Set<String> set = of("a", "b", "c", "d"); in testCreation_fourElements() local
84 Set<String> set = of("a", "b", "c", "d", "e"); in testCreation_fiveElements() local
89 Set<String> set = of("a", "b", "c", "d", "e", "f"); in testCreation_sixElements() local
94 Set<String> set = of("a", "b", "c", "d", "e", "f", "g"); in testCreation_sevenElements() local
[all …]
DSetsTest.java133 EnumSet<SomeEnum> set = EnumSet.of(SomeEnum.A, SomeEnum.D); in testNewEnumSet_enumSet() local
138 Set<SomeEnum> set = ImmutableSet.of(SomeEnum.B, SomeEnum.C); in testNewEnumSet_collection() local
143 Set<SomeEnum> set = ImmutableSet.of(SomeEnum.A, SomeEnum.B, SomeEnum.C); in testNewEnumSet_iterable() local
148 HashSet<Integer> set = Sets.newHashSet(); in testNewHashSetEmpty() local
153 HashSet<Integer> set = Sets.newHashSet(0, 1, 1); in testNewHashSetVarArgs() local
158 HashSet<Integer> set = Sets.newHashSet(SOME_COLLECTION); in testNewHashSetFromCollection() local
163 HashSet<Integer> set = Sets.newHashSet(SOME_ITERABLE); in testNewHashSetFromIterable() local
168 HashSet<Integer> set = Sets.newHashSetWithExpectedSize(0); in testNewHashSetWithExpectedSizeSmall() local
173 HashSet<Integer> set = Sets.newHashSetWithExpectedSize(1000); in testNewHashSetWithExpectedSizeLarge() local
178 HashSet<Integer> set = Sets.newHashSet(SOME_COLLECTION.iterator()); in testNewHashSetFromIterator() local
[all …]
DContiguousSetTest.java109 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testHeadSet() local
127 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testTailSet() local
143 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testSubSet() local
160 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testSubSet_outOfOrder() local
190 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testContains() local
206 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testContainsAll() local
265 ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testIntersection_empty() local
275 ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); in testIntersection() local
/external/harfbuzz_ng/src/
Dhb-set.cc43 hb_set_t *set; in hb_set_create() local
82 hb_set_reference (hb_set_t *set) in hb_set_reference()
94 hb_set_destroy (hb_set_t *set) in hb_set_destroy()
116 hb_set_set_user_data (hb_set_t *set, in hb_set_set_user_data()
135 hb_set_get_user_data (hb_set_t *set, in hb_set_get_user_data()
167 hb_set_clear (hb_set_t *set) in hb_set_clear()
183 hb_set_is_empty (const hb_set_t *set) in hb_set_is_empty()
200 hb_set_has (const hb_set_t *set, in hb_set_has()
216 hb_set_add (hb_set_t *set, in hb_set_add()
233 hb_set_add_range (hb_set_t *set, in hb_set_add_range()
[all …]
/external/icu/icu4c/source/common/
Duset.cpp42 uset_close(USet* set) { in uset_close()
47 uset_clone(const USet *set) { in uset_clone()
52 uset_isFrozen(const USet *set) { in uset_isFrozen()
57 uset_freeze(USet *set) { in uset_freeze()
62 uset_cloneAsThawed(const USet *set) { in uset_cloneAsThawed()
67 uset_set(USet* set, in uset_set()
73 uset_addAll(USet* set, const USet *additionalSet) { in uset_addAll()
78 uset_add(USet* set, UChar32 c) { in uset_add()
83 uset_addRange(USet* set, UChar32 start, UChar32 end) { in uset_addRange()
88 uset_addString(USet* set, const UChar* str, int32_t strLen) { in uset_addString()
[all …]
Duset_props.cpp35 UnicodeSet* set = new UnicodeSet(pat, *ec); in uset_openPattern() local
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec); in uset_openPatternOptions() local
71 uset_applyPattern(USet *set, in uset_applyPattern()
100 uset_applyIntPropertyValue(USet* set, in uset_applyIntPropertyValue()
106 uset_applyPropertyAlias(USet* set, in uset_applyPropertyAlias()
129 uset_toPattern(const USet* set, in uset_toPattern()
139 uset_closeOver(USet* set, int32_t attributes) { in uset_closeOver()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DSetExtensions.cs45 public static bool add<T>( this HashSet<T> set, T item ) in add()
51 public static void addAll<T>( this HashSet<T> set, IEnumerable<T> items ) in addAll()
59 public static void clear<T>( this HashSet<T> set ) in clear()
65 public static bool contains<T>( this HashSet<T> set, T value ) in contains()
71 public static bool remove<T>( this HashSet<T> set, T item ) in remove()
77 public static int size<T>( this HashSet<T> set ) in size()
83 public static T[] toArray<T>( this HashSet<T> set ) in toArray()
/external/v8/test/mjsunit/
Daccessor-map-sharing.js58 dp(obj1, "charlie", { set: setter }); property
60 dp(obj2, "charlie", { set: setter }); property
74 dp(obj1, "foxtrot", { get: getter, set: setter }); property
76 dp(obj2, "foxtrot", { get: getter, set: setter }); property
82 dp(obj1, "golf", { set: setter, configurable: true }); property
85 dp(obj2, "golf", { set: setter, configurable: true }); property
110 dp(obj1, "juliet", { set: setter, configurable: true, enumerable: false }); property
115 dp(obj2, "juliet", { set: setter, configurable: true, enumerable: false }); property
119 dp(obj1, "juliet", { set: setter, configurable: false, enumerable: true }); property
138 dp(obj1, "lima", { get: getter, set: setter }); property
[all …]
Dprimitive-keyed-access.js6 { set: function(v) { set = v; }}); method
8 { set: function(v) { set = v; }}); method
10 { set: function(v) { set = v; }}); method
12 var set; variable
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DUBJsonWriter.java418 public UBJsonWriter set (String name, byte value) throws IOException { in set() method in UBJsonWriter
424 public UBJsonWriter set (String name, short value) throws IOException { in set() method in UBJsonWriter
430 public UBJsonWriter set (String name, int value) throws IOException { in set() method in UBJsonWriter
436 public UBJsonWriter set (String name, long value) throws IOException { in set() method in UBJsonWriter
442 public UBJsonWriter set (String name, float value) throws IOException { in set() method in UBJsonWriter
448 public UBJsonWriter set (String name, double value) throws IOException { in set() method in UBJsonWriter
454 public UBJsonWriter set (String name, boolean value) throws IOException { in set() method in UBJsonWriter
460 public UBJsonWriter set (String name, char value) throws IOException { in set() method in UBJsonWriter
466 public UBJsonWriter set (String name, String value) throws IOException { in set() method in UBJsonWriter
472 public UBJsonWriter set (String name, byte[] value) throws IOException { in set() method in UBJsonWriter
[all …]
/external/lldb/source/Host/macosx/cfcpp/
DCFCMutableSet.cpp55 CFMutableSetRef set = get(); in GetCount() local
64 CFMutableSetRef set = get(); in GetCountOfValue() local
73 CFMutableSetRef set = get(); in GetValue() local
83 CFMutableSetRef set = get(); in AddValue() local
102 CFMutableSetRef set = get(); in RemoveValue() local
110 CFMutableSetRef set = get(); in RemoveAllValues() local
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/
DSphericalHarmonics.java42 public SphericalHarmonics set (final float values[]) { in set() method in SphericalHarmonics
48 public SphericalHarmonics set (final AmbientCubemap other) { in set() method in SphericalHarmonics
52 public SphericalHarmonics set (final Color color) { in set() method in SphericalHarmonics
56 public SphericalHarmonics set (float r, float g, float b) { in set() method in SphericalHarmonics
DDirectionalLight.java35 public DirectionalLight set (final DirectionalLight copyFrom) { in set() method in DirectionalLight
39 public DirectionalLight set (final Color color, final Vector3 direction) { in set() method in DirectionalLight
45 …public DirectionalLight set (final float r, final float g, final float b, final Vector3 direction)… in set() method in DirectionalLight
51 …public DirectionalLight set (final Color color, final float dirX, final float dirY, final float di… in set() method in DirectionalLight
57 …public DirectionalLight set (final float r, final float g, final float b, final float dirX, final … in set() method in DirectionalLight
/external/v8/test/mjsunit/es6/
Dpromise-internal-setter.js10 promise: {set: assertUnreachable}, property
11 reject: {set: assertUnreachable}, property
12 resolve: {set: assertUnreachable}, property
/external/v8/test/webkit/
Darray-defineOwnProperty.js76 Object.defineProperty(Array.prototype, "0", { set: function () { throw false; } }); method
77 Object.defineProperty(Array.prototype, "1", { set: function () { throw false; } }); method
79 Object.defineProperty(arrObj, "0", { set: function (x) { this.set = x === 42; } }); method
/external/mockito/cglib-and-asm/src/org/mockito/asm/
DItem.java141 void set(final int intVal) { in set() method in Item
152 void set(final long longVal) { in set() method in Item
163 void set(final float floatVal) { in set() method in Item
174 void set(final double doubleVal) { in set() method in Item
188 void set( in set() method in Item
/external/google-breakpad/src/client/linux/minidump_writer/
Dcpu_set_unittest.cc59 CpuSet set; in TEST() local
67 CpuSet set; in TEST() local
76 CpuSet set; in TEST() local
85 CpuSet set; in TEST() local
94 CpuSet set; in TEST() local
103 CpuSet set; in TEST() local
112 CpuSet set; in TEST() local
/external/bison/lib/
Dsigprocmask.c114 sigismember (const sigset_t *set, int sig) in sigismember()
130 sigemptyset (sigset_t *set) in sigemptyset()
137 sigaddset (sigset_t *set, int sig) in sigaddset()
157 sigdelset (sigset_t *set, int sig) in sigdelset()
178 sigfillset (sigset_t *set) in sigfillset()
205 sigpending (sigset_t *set) in sigpending()
222 sigprocmask (int operation, const sigset_t *set, sigset_t *old_set) in sigprocmask()
/external/protobuf/src/google/protobuf/
Dextension_set.h809 static inline const string& Get(int number, const ExtensionSet& set, in Get()
814 const string& value, ExtensionSet* set) { in Set()
817 static inline string* Mutable(int number, int index, ExtensionSet* set) { in Mutable()
822 ExtensionSet* set) { in Add()
826 ExtensionSet* set) { in Add()
830 GetRepeated(int number, const ExtensionSet& set) { in GetRepeated()
837 bool is_packed, ExtensionSet* set) { in MutableRepeated()
865 static inline ConstType Get(int number, const ExtensionSet& set, in Get()
870 ConstType value, ExtensionSet* set) { in Set()
885 static inline ConstType Get(int number, const ExtensionSet& set, int index) { in Get()
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/
DBaseShader.java52 …void set (final BaseShader shader, final int inputID, final Renderable renderable, final Attribute… in set() method
275 public final boolean set (final int uniform, final Matrix4 value) { in set() method in BaseShader
281 public final boolean set (final int uniform, final Matrix3 value) { in set() method in BaseShader
287 public final boolean set (final int uniform, final Vector3 value) { in set() method in BaseShader
293 public final boolean set (final int uniform, final Vector2 value) { in set() method in BaseShader
299 public final boolean set (final int uniform, final Color value) { in set() method in BaseShader
305 public final boolean set (final int uniform, final float value) { in set() method in BaseShader
311 public final boolean set (final int uniform, final float v1, final float v2) { in set() method in BaseShader
317 public final boolean set (final int uniform, final float v1, final float v2, final float v3) { in set() method in BaseShader
323 …public final boolean set (final int uniform, final float v1, final float v2, final float v3, final… in set() method in BaseShader
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DSets.java141 EnumSet<E> set = EnumSet.noneOf(elementType); in newEnumSet() local
178 HashSet<E> set = newHashSetWithExpectedSize(elements.length); in newHashSet() local
233 HashSet<E> set = newHashSet(); in newHashSet() local
269 Set<E> set = newConcurrentHashSet(); in newConcurrentHashSet() local
323 LinkedHashSet<E> set = newLinkedHashSet(); in newLinkedHashSet() local
360 TreeSet<E> set = newTreeSet(); in newTreeSet() local
517 public <S extends Set<E>> S copyInto(S set) { in copyInto()
564 @Override public <S extends Set<E>> S copyInto(S set) { in union()

12345678910>>...54