Searched refs:set (Results 1 - 25 of 1621) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-set.cc27 #include "hb-set-private.hh"
43 hb_set_t *set; local
45 if (!(set = hb_object_create<hb_set_t> ()))
48 set->clear ();
50 return set;
75 * @set: a set.
82 hb_set_reference (hb_set_t *set) argument
84 return hb_object_reference (set);
89 * @set
94 hb_set_destroy(hb_set_t *set) argument
116 hb_set_set_user_data(hb_set_t *set, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
135 hb_set_get_user_data(hb_set_t *set, hb_user_data_key_t *key) argument
167 hb_set_clear(hb_set_t *set) argument
183 hb_set_is_empty(const hb_set_t *set) argument
200 hb_set_has(const hb_set_t *set, hb_codepoint_t codepoint) argument
216 hb_set_add(hb_set_t *set, hb_codepoint_t codepoint) argument
233 hb_set_add_range(hb_set_t *set, hb_codepoint_t first, hb_codepoint_t last) argument
250 hb_set_del(hb_set_t *set, hb_codepoint_t codepoint) argument
267 hb_set_del_range(hb_set_t *set, hb_codepoint_t first, hb_codepoint_t last) argument
286 hb_set_is_equal(const hb_set_t *set, const hb_set_t *other) argument
302 hb_set_set(hb_set_t *set, const hb_set_t *other) argument
318 hb_set_union(hb_set_t *set, const hb_set_t *other) argument
334 hb_set_intersect(hb_set_t *set, const hb_set_t *other) argument
350 hb_set_subtract(hb_set_t *set, const hb_set_t *other) argument
366 hb_set_symmetric_difference(hb_set_t *set, const hb_set_t *other) argument
381 hb_set_invert(hb_set_t *set) argument
397 hb_set_get_population(const hb_set_t *set) argument
413 hb_set_get_min(const hb_set_t *set) argument
429 hb_set_get_max(const hb_set_t *set) argument
446 hb_set_next(const hb_set_t *set, hb_codepoint_t *codepoint) argument
466 hb_set_next_range(const hb_set_t *set, hb_codepoint_t *first, hb_codepoint_t *last) argument
[all...]
H A Dhb-set.h54 hb_set_reference (hb_set_t *set);
57 hb_set_destroy (hb_set_t *set);
60 hb_set_set_user_data (hb_set_t *set,
67 hb_set_get_user_data (hb_set_t *set,
73 hb_set_allocation_successful (const hb_set_t *set);
76 hb_set_clear (hb_set_t *set);
79 hb_set_is_empty (const hb_set_t *set);
82 hb_set_has (const hb_set_t *set,
88 hb_set_add (hb_set_t *set,
92 hb_set_add_range (hb_set_t *set,
[all...]
/openjdk10/nashorn/test/script/basic/
H A DJDK-8026302.js33 set "foo"(x) {},
35 set bar(x) {},
37 set ":"(x) {},
39 set 12(x) {},
41 set 1.8e-8(x) {}
47 print(desc.set);
H A DJDK-8019810.js31 Function("return (void ({ set each (x2)y }));");
34 return (void ({ set each (x2)y }));
H A DJDK-8015354.js33 set: function(v) {
34 throw "set called";
42 set: function(v) {
43 throw "set called";
H A DNASHORN-459.js34 set: function(x) { print('in setter ' + x); },
44 set: function(x) { print('setter foo'); },
54 set: undefined,
60 set: undefined
H A DJDK-8026264.js33 set ":"(x){},
35 set ""(x){}
43 if (desc.set.name != ':') {
44 fail("setter name is expected to be ':' got " + desc.set.name);
52 if (desc.set.name != '') {
53 fail("setter name is expected to be '' got " + desc.set.name);
H A DNASHORN-217.js35 set class(x) { print('class ' + x); },
36 set in(x) { print('in ' + x); },
37 set typeof(x) { print('typeof ' + x); },
39 set 14(x) { print("14 " + x); },
41 set 'foo prop'(x) { print('foo prop ' + x); }
/openjdk10/nashorn/test/script/nosecurity/parsernegativetests/
H A Drepeatedproperty.js30 var obj1 = { foo: 34, set foo(x) { } };
31 var obj2 = { foo: 34, set foo(x) { } };
33 var obj4 = { set bar(x) { }, set bar(x) {} };
/openjdk10/jdk/test/java/util/Calendar/
H A DBug6645263.java35 cal.set(Calendar.YEAR, 2007);
36 cal.set(Calendar.MONTH, Calendar.NOVEMBER);
37 cal.set(Calendar.WEEK_OF_MONTH, 4);
38 cal.set(Calendar.DAY_OF_WEEK, 1);
43 cal.set(Calendar.DAY_OF_MONTH, 1);
/openjdk10/jdk/test/java/util/EnumSet/
H A DSmallEnumIteratorRemoveResilience.java31 * @summary EnumSet's iterator.remove() can be resilient to set's modification.
44 final Set<SmallEnum> set = EnumSet.noneOf(SmallEnum.class);
46 set.add(SmallEnum.e0);
47 set.add(SmallEnum.e1);
49 final Iterator<SmallEnum> iterator = set.iterator();
51 int size = set.size();
55 checkSetAfterRemoval(set, size, element);
57 size = set.size();
60 set.remove(element);
61 checkSetAfterRemoval(set, siz
75 checkSetAfterRemoval(final Set<SmallEnum> set, final int origSize, final SmallEnum removedElement) argument
[all...]
H A DLargeEnumIteratorRemoveResilience.java31 * @summary EnumSet's iterator.remove() can be resilient to set's modification.
55 final Set<LargeEnum> set = EnumSet.noneOf(LargeEnum.class);
57 set.add(LargeEnum.e2D);
58 set.add(LargeEnum.e42);
60 final Iterator<LargeEnum> iterator = set.iterator();
62 int size = set.size();
66 checkSetAfterRemoval(set, size, element);
68 size = set.size();
71 set.remove(element);
72 checkSetAfterRemoval(set, siz
86 checkSetAfterRemoval(final Set<LargeEnum> set, final int origSize, final LargeEnum removedElement) argument
[all...]
/openjdk10/hotspot/test/compiler/gcbarriers/
H A DG1CrashTest.java38 static Object[] set = new Object[11]; field in class:G1CrashTest
44 if (j > set.length / 2) {
45 Object[] oldKeys = set;
46 set = new Object[2 * set.length - 1];
57 int index = hash % set.length;
58 Object cur = set[index];
60 set[index] = key;
73 index += set.length;
74 cur = set[inde
[all...]
/openjdk10/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/
H A DNoInterruptUnixTerminal.java28 getSettings().set("intr undef");
33 getSettings().set("intr ^C");
/openjdk10/jdk/test/java/lang/ThreadLocal/
H A DMemoryLeak.java35 t.set(new Object());
36 t.set(null);
/openjdk10/nashorn/test/src/jdk/nashorn/api/scripting/test/resources/
H A Dgettersetter.js32 set: function(n) { v = n; }
37 set: function(n) { x = n; }
/openjdk10/jdk/test/java/beans/XMLEncoder/
H A Djava_util_Collections_SynchronizedSet.java40 Set<String> set = Collections.singleton("string");
41 return Collections.synchronizedSet(set);
45 Set<String> set = Collections.emptySet();
46 return Collections.synchronizedSet(set);
H A Djava_util_Collections_UnmodifiableSet.java40 Set<String> set = Collections.singleton("string");
41 return Collections.unmodifiableSet(set);
45 Set<String> set = Collections.emptySet();
46 return Collections.unmodifiableSet(set);
H A Djava_util_Collections_SynchronizedSortedSet.java41 SortedSet<String> set = new TreeSet<String>();
42 set.add("string");
43 return Collections.synchronizedSortedSet(set);
47 SortedSet<String> set = new TreeSet<String>();
48 return Collections.synchronizedSortedSet(set);
H A Djava_util_Collections_UnmodifiableSortedSet.java41 SortedSet<String> set = new TreeSet<String>();
42 set.add("string");
43 return Collections.unmodifiableSortedSet(set);
47 SortedSet<String> set = new TreeSet<String>();
48 return Collections.unmodifiableSortedSet(set);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DSignatureInfo.java30 protected boolean hasIterated; // need this because iterate cannot be called in constructor (set is virtual!)
41 protected abstract void set(int size, int /*BasicType*/ type); method in class:SignatureInfo
43 public void doBool() { set(BasicTypeSize.getTBooleanSize(), BasicType.getTBoolean()); }
44 public void doChar() { set(BasicTypeSize.getTCharSize(), BasicType.getTChar()); }
45 public void doFloat() { set(BasicTypeSize.getTFloatSize(), BasicType.getTFloat()); }
46 public void doDouble() { set(BasicTypeSize.getTDoubleSize(), BasicType.getTDouble()); }
47 public void doByte() { set(BasicTypeSize.getTByteSize(), BasicType.getTByte()); }
48 public void doShort() { set(BasicTypeSize.getTShortSize(), BasicType.getTShort()); }
49 public void doInt() { set(BasicTypeSize.getTIntSize(), BasicType.getTInt()); }
50 public void doLong() { set(BasicTypeSiz
[all...]
/openjdk10/jdk/test/java/util/BitSet/
H A DAnd.java36 a.set(0);
37 a.set(70);
38 b.set(40);
/openjdk10/jdk/src/jdk.net/share/classes/jdk/net/
H A DSockets.java38 * Defines static methods to set and get socket options defined by the
41 * {@link java.net.DatagramSocket} can be set this way, as well as additional
45 * the complete set of options available (per socket type) on the
49 * may require a security permission before being set or get.
78 * @throws SecurityException if a security manager is set and the
103 * @throws SecurityException if a security manager is set and the
132 * @throws SecurityException if a security manager is set and the
157 * @throws SecurityException if a security manager is set and the
185 * @throws SecurityException if a security manager is set and the
211 * @throws SecurityException if a security manager is set an
[all...]
/openjdk10/jdk/src/java.base/share/native/libjimage/
H A Dendian.hpp44 // calls to get. To set a value, then use one of the overloaded set calls.
50 // endian->set(value, 1);
61 virtual void set(u2& x, u2 y) = 0;
62 virtual void set(u4& x, u4 y) = 0;
63 virtual void set(u8& x, u8 y) = 0;
64 virtual void set(s2& x, s2 y) = 0;
65 virtual void set(s4& x, s4 y) = 0;
66 virtual void set(s8& x, s8 y) = 0;
82 // set platfor
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMultiHashtable.java44 * Associates the specified key with a set of values. If the map previously
45 * contained a mapping for the key, the value is added to the set.
47 * @param value value to be added to a set that is associated with the specified key
48 * @return the set that is associated with the specified key.
53 Set<V> set = map.computeIfAbsent(key, k -> new HashSet<>());
54 set.add(value);
55 return set;
61 * Maps a key to a value in a set that is associated with the specified key.
62 * The mapping is performed by evaluating whether an item in the set equals
66 * @param value value in a set tha
[all...]

Completed in 182 milliseconds

1234567891011>>