Searched defs:set (Results 276 - 300 of 363) sorted by relevance

<<1112131415

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DBase64Data.java67 * Unused when {@link #dataHandler} is set.
107 public void set(byte[] data, int len, String mimeType, boolean cloneByRef) { method in class:Base64Data
123 public void set(byte[] data, int len, String mimeType) { method in class:Base64Data
124 set(data,len,mimeType,false);
134 public void set(byte[] data,String mimeType) { method in class:Base64Data
135 set(data,data.length,mimeType,false);
143 public void set(DataHandler data) { method in class:Base64Data
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/streaming/
H A DXMLStreamReaderFactory.java110 public static void set(XMLStreamReaderFactory f) { method in class:XMLStreamReaderFactory
277 pool.set(null);
283 pool.set(r);
412 * Handles Woodstox's XIF but set properties to do the string interning.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DXMLHTTPBindingCodec.java102 public AcceptContentType set(Packet p, ContentType c) { method in class:XMLHTTPBindingCodec.AcceptContentType
151 ? _adaptingContentType.set(packet, ct)
158 ? _adaptingContentType.set(packet, ct)
169 return _adaptingContentType.set(packet, encode(mds, out));
172 return _adaptingContentType.set(packet, super.encode(packet, out));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicy.java60 * Constant represents list of assertion sets with single empty assertion set. This represents the content of
418 * Adds single alternative to the internal alternatives set of the policy object.
420 * @param set assertion set (policy alternative) object to be added. May be {@code null}; in such case the method
425 private boolean add(final AssertionSet set) { argument
426 if (set == null) {
430 if (this.assertionSets.contains(set)) {
433 this.assertionSets.add(set);
434 this.vocabulary.addAll(set.getVocabulary());
440 * Adds all alternatives from the input collection of assertion sets to the policy object's internal set o
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DTokenList.java99 i.set(i.next().toString());
126 public String set(int index, String o) { method in class:TokenList
128 return super.set(index, o);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java432 public A set(int index, A element) { method in class:List
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbytes.h35 void set(byte* ptr_, size_t len_) { ptr = ptr_; len = len_; } function in struct:bytes
36 void set(const char* str) { ptr = (byte*)str; len = strlen(str); } function in struct:bytes
59 res.set(ptr, len);
91 void init() { allocated = 0; b.set(null, 0); }
102 void set(bytes& src) { set(src.ptr, src.len); } function in struct:fillbytes
104 void set(byte* ptr, size_t len) { function in struct:fillbytes
105 b.set(ptr, len);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPolicyNodeImpl.java215 * Adds an expectedPolicy to the expected policy set.
216 * If this is the original expected policy set initialized
217 * by the constructor, then the expected policy set is cleared
296 Set<PolicyNodeImpl> set = new HashSet<PolicyNodeImpl>();
297 getPolicyNodes(depth, set);
298 return set;
302 * Add all nodes at depth depth to set and return the Set.
305 private void getPolicyNodes(int depth, Set<PolicyNodeImpl> set) { argument
308 set.add(this);
311 node.getPolicyNodes(depth, set);
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerOutputStream.java311 * Marshals the contents of a set on the output stream without
317 public void putSet(DerValue[] set) throws IOException { argument
321 for (i = 0; i < set.length; i++)
322 set[i].encode(bytes);
328 * Marshals the contents of a set on the output stream. Sets
330 * set elements be sorted into ascending lexicographical order
337 public void putOrderedSetOf(byte tag, DerEncoder[] set) throws IOException { argument
338 putOrderedSet(tag, set, lexOrder);
342 * Marshals the contents of a set on the output stream. Sets
344 * set element
351 putOrderedSet(byte tag, DerEncoder[] set) argument
373 putOrderedSet(byte tag, DerEncoder[] set, Comparator<byte[]> order) argument
[all...]
H A DSignatureFileVerifier.java130 * used to set the raw bytes of the .SF file when it
606 // returns true if set contains signer
607 static boolean contains(CodeSigner[] set, CodeSigner signer) argument
609 for (int i = 0; i < set.length; i++) {
610 if (set[i].equals(signer))
616 // returns true if subset is a subset of set
617 static boolean isSubSet(CodeSigner[] subset, CodeSigner[] set) argument
620 if (set == subset)
625 if (!contains(set, subset[i]))
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUCharacterProperty.java240 * Stable set of characters, won't change.
357 public void upropsvec_addPropertyStarts(UnicodeSet set) { argument
364 set.add(propsVectorsResult.start);
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DCustomized.java56 protected void set(V v) { method in class:Customized.MyFutureTask
58 super.set(v);
164 task.set(99L);
182 task.set(99L);
/openjdk7/jdk/test/javax/management/descriptor/
H A DDescriptorTest.java205 This is simply an alternating set of field names and corresponding
384 return set(d.getFieldNames());
390 return set(d.getFields());
417 set(testFieldValues)) {
419 return set(d.getFieldValues((String[]) null));
652 static <T> Set<T> set(T[] values) { method in class:DescriptorTest
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DCurve.java38 void set(float[] points, int type) { method in class:Curve
41 set(points[0], points[1],
47 set(points[0], points[1],
56 void set(float x1, float y1, method in class:Curve
73 void set(float x1, float y1, method in class:Curve
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmMemoryMeta.java164 public SnmpValue set(SnmpValue x, long var, Object data) method in class:JvmMemoryMeta
341 // Implements the "set" method defined in "SnmpMibGroup".
346 public void set(SnmpMibSubRequest req, int depth) method in class:JvmMemoryMeta
348 objectserver.set(this,req,depth);
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMessageHeader.java327 public synchronized void set(int i, String k, String v) { method in class:MessageHeader
390 public synchronized void set(String k, String v) { method in class:MessageHeader
/openjdk7/jdk/src/share/classes/sun/reflect/generics/parser/
H A DSignatureParser.java110 // Match c against a "set" of characters
111 private boolean matches(char c, char... set) { argument
112 for (char e : set) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXNETProtocol.java182 // Fix for 6735584: req.data[2] must be set to 0 when only one property is changed
202 * Helper function to set/reset one state in NET_WM_STATE
205 * @param state State atom to be set/reset
206 * @param reset Indicates operation, 'set' if false, 'reset' if true
208 private void setStateHelper(XWindowPeer window, XAtom state, boolean set) { argument
213 requestState(window, state, set);
217 if (!set) {
267 final static int _NET_WM_STATE_ADD =1; /* add/set property */
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSModelImpl.java275 * A set of namespace schema information information items (of type
623 * [annotations]: a set of annotations if it exists, otherwise an empty
801 public void set(Object o) { method in class:XSModelImpl.XSNamespaceItemListIterator
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DContextStack.java191 tempContext.set(newCode,type);
225 it.set(newCode,element);
387 public void set(int code, ContextElement element) { method in class:TypeContext
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java138 // The top bit is only set when all info bits are set:
142 // The not_bottom_bit must be set when any other info bit is set:
206 public void set(CellTypeState cts) { method in class:CellTypeState
221 // If the top bit is set, we don't need to do any more work.
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListSelectionModel.java264 private void set(int r) { method in class:DefaultListSelectionModel
268 value.set(r);
287 The case (r < minIndex) is not possible because r'th value was set.
289 and in this case we need to search for the first value set above it.
300 The case (r > maxIndex) is not possible because r'th value was set.
302 and in this case we need to search for the first value set below it.
322 If we have cleared the whole selection, set the minIndex and maxIndex
323 to their cannonical values so that the next set command always works
399 set(i);
412 * that no values are cleared if they would later be set
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java175 private void set(int r) { method in class:OptionListModel
179 value.set(r);
202 The case (r < minIndex) is not possible because r'th value was set.
204 and in this case we need to search for the first value set above it.
215 The case (r > maxIndex) is not possible because r'th value was set.
217 and in this case we need to search for the first value set below it.
237 If we have cleared the whole selection, set the minIndex and maxIndex
238 to their cannonical values so that the next set command always works
312 set(i);
324 * that no values are cleared if they would later be set
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DField.java46 * set access operation, but throws an {@code IllegalArgumentException} if a
711 * <p>The field is set to the possibly unwrapped and widened new value.
714 * the field's value is set according to the preceding rules.
733 public void set(Object obj, Object value) method in class:Field
741 getFieldAccessor(obj).set(obj, value);
747 * {@code set(obj, zObj)},
766 * @see Field#set
783 * {@code set(obj, bObj)},
802 * @see Field#set
819 * {@code set(ob
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpURLConnection.java78 * of this field, as it allows larger content lengths to be set.
127 * instead of this method as it allows larger content lengths to be set.
146 throw new IllegalStateException ("Chunked encoding streaming mode set");
171 * <P> The content length set by invoking this method takes precedence
172 * over any value set by {@link #setFixedLengthStreamingMode(int)}.
192 "Chunked encoding streaming mode set");
233 throw new IllegalStateException ("Can't set streaming mode: already connected");
236 throw new IllegalStateException ("Fixed length streaming mode set");
287 * This field is set by the <code>setInstanceFollowRedirects</code>
323 * @param set
331 setFollowRedirects(boolean set) argument
[all...]

Completed in 139 milliseconds

<<1112131415