Searched refs:string (Results 276 - 300 of 643) sorted by relevance

<<11121314151617181920>>

/openjdk9/hotspot/test/native/gc/shared/
H A Dtest_memset_with_concurrent_readers.cpp25 #include <string.h>
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeUtility.java70 * byte[] bytes = string.getBytes("iso-8859-1");
395 * The given Unicode string is examined for non US-ASCII
396 * characters. If the string contains only US-ASCII characters,
397 * it is returned as-is. If the string contains non US-ASCII
401 * string containing only ASCII characters. <p>
423 * @param text unicode string
424 * @return Unicode string containing only US-ASCII characters
436 * The given Unicode string is examined for non US-ASCII
437 * characters. If the string contains only US-ASCII characters,
438 * it is returned as-is. If the string contain
625 encodeWord(String string, String charset, String encoding, boolean encodingWord) argument
672 doEncode(String string, boolean b64, String jcharset, int avail, String prefix, boolean first, boolean encodingWord, StringBuilder buf) argument
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/name/
H A DNameImpl.java248 * @return a string for the local name.
260 * @return the prefix as a string.
270 * @return the uri as a string.
441 public static NameImpl createSOAP11Name(String string) { argument
442 return new SOAP1_1Name(string, null);
444 public static NameImpl createSOAP12Name(String string) { argument
445 return new SOAP1_2Name(string, null);
/openjdk9/jdk/src/java.base/share/native/libjimage/
H A Djimage.cpp32 #include <string.h>
82 * The resulting string does/should not have to be released. All strings are
96 * name, a version string and the name of a class/resource, return location
120 // If the concatenated string is too long for the buffer, return not found
/openjdk9/jdk/src/java.base/share/native/libzip/zlib/
H A Dgzguts.h48 # include <string.h>
/openjdk9/jdk/src/java.base/unix/native/libnet/
H A DSocketInputStream.c27 #include <string.h>
/openjdk9/jdk/src/java.base/unix/native/libjava/
H A Dcanonicalize_md.c32 #include <string.h>
/openjdk9/jdk/src/java.base/unix/native/libnio/ch/
H A DDatagramDispatcher.c37 #include <string.h>
/openjdk9/jdk/src/java.base/windows/native/libjava/
H A Djni_util_md.c27 #include <string.h>
/openjdk9/jdk/src/jdk.crypto.cryptoki/unix/native/libj2pkcs11/
H A Dp11_md.c63 #include <string.h>
/openjdk9/jdk/src/jdk.crypto.ec/share/native/libsunec/impl/
H A Dsecitem.c56 #include <string.h>
/openjdk9/jdk/src/java.smartcardio/unix/native/libj2pcsc/
H A Dpcsc_md.c28 #include <string.h>
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/
H A DJSpinner.java195 * @return the string "SpinnerUI"
1348 public Object stringToValue(String string) throws ParseException { argument
1349 return string;
1362 String string, AttributeSet attrs) throws
1364 if (string != null && (offset + length) ==
1368 string);
1375 string.length(),
1380 super.replace(fb, offset, length, string, attrs);
1384 String string, AttributeSet attr)
1386 replace(fb, offset, 0, string, att
1361 replace(FilterBypass fb, int offset, int length, String string, AttributeSet attrs) argument
1383 insertString(FilterBypass fb, int offset, String string, AttributeSet attr) argument
[all...]
/openjdk9/jdk/src/java.desktop/unix/native/libawt/awt/
H A Dawt_Mlib.c27 #include <string.h>
/openjdk9/jdk/src/java.instrument/unix/native/libinstrument/
H A DEncodingSupport_md.c28 #include <string.h>
H A DFileSystemSupport_md.c27 #include <string.h>
68 with a slash. It may be the empty string. */
102 This way we iterate through the whole pathname string only once. */
/openjdk9/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DoutStream.h78 jdwpError outStream_writeString(PacketOutputStream *stream, char *string);
H A DVirtualMachineImpl.c699 jstring string; local
701 string = JNI_FUNC_PTR(env,NewStringUTF)(env, cstring);
705 (void)outStream_writeObjectRef(env, out, string);
807 countPaths(char *string) { argument
809 char *pos = string;
824 writePaths(PacketOutputStream *out, char *string) { argument
831 buf = jvmtiAllocate((int)strlen(string)+1);
833 npaths = countPaths(string);
841 pos = string;
/openjdk9/jdk/test/java/lang/invoke/VarHandles/
H A DVarHandleTestReflection.java40 String string; field in class:VarHandleTestReflection
51 findVarHandle(VarHandleTestReflection.class, "string", String.class);
/openjdk9/jdk/src/jdk.security.auth/unix/native/libjaas/
H A DUnix.c33 #include <string.h>
/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DListOperator.java602 public void remove(final String string) { argument
606 ((List) getSource()).remove(string);
650 public void replaceItem(final String string, final int i) { argument
654 ((List) getSource()).replaceItem(string, i);
700 * @param comparator specifies string comparision algorithm.
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/font/
H A DTextLayout.java151 * TextLayout layout = new TextLayout("This is a string", font, frc);
362 * @param string the text to display
371 public TextLayout(String string, Font font, FontRenderContext frc) { argument
377 if (string == null) {
378 throw new IllegalArgumentException("Null string passed to TextLayout constructor.");
381 if (string.length() == 0) {
382 throw new IllegalArgumentException("Zero length string passed to TextLayout constructor.");
390 char[] text = string.toCharArray();
395 ? new AttributedString(string)
396 : new AttributedString(string, attribute
419 TextLayout(String string, Map<? extends Attribute,?> attributes, FontRenderContext frc) argument
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java1079 ParseException.wrongType(scanner, entry.fullName (), "primitive or string", entryName (entry.type ()));
1087 ParseException.wrongType (scanner, entry.fullName (), "primitive or string (except " + any + ')', any);
1118 public static String overrideName (String string) argument
1120 String name = (String)overrideNames.get (string);
1121 return (name == null) ? string : name;
1127 // If entry is string, expression value must be string
1220 String string = (String)(e.value()) ;
1227 if (string.length () > max.intValue ())
1228 ParseException.stringTooLong (scanner, string, ma
1651 parseString(String string) argument
[all...]
/openjdk9/hotspot/src/share/vm/classfile/
H A DbytecodeAssembler.cpp72 idx, cp->symbol_at(entry._u.string));
129 u2 cpool_index = _cp->string(sym);
/openjdk9/jdk/test/com/sun/crypto/provider/CICO/
H A DCICOSkipTest.java267 public LengthLimitException(String string) { argument
268 super(string);

Completed in 309 milliseconds

<<11121314151617181920>>