Searched refs:string (Results 201 - 225 of 495) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DFigure.java257 private String resolveString(String string) { argument
263 for (int i = 0; i < string.length(); i++) {
264 char c = string.charAt(i);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DMethodGen.java40 // -catching Exception throws a string which should be in a properties file.
45 // -D56554 <klr> Port bounded string checks from toJava to toJavaPortable
46 // -D58549 <klr> bounded string checks on in/inout parms throw BAD_PARAM
493 // Step 1.b. Check string bounds <d56554 - klr>
494 // begin <d56554> in/inout string bounds check
504 StringEntry string = (StringEntry)parmType;
505 if (string.maxSize () != null)
514 Util.parseExpression (string.maxSize ()) + "))");
521 // end <d56554> in/inout string bounds check
585 // Step 4.b. Check string bound
[all...]
/openjdk7/hotspot/agent/src/os/bsd/
H A Dsalibelf.c28 #include <string.h>
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConnectorImpl.java338 String string = name() + " (defaults: ";
344 string += ", ";
346 string += argument.toString();
349 return string + ")";
451 * @return <code>true</code> if value is a string
460 * Return the string representation of the <code>value</code>
534 * Return the string representation of the <code>value</code>
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSpinner.java195 * @return the string "SpinnerUI"
1320 public Object stringToValue(String string) throws ParseException { argument
1321 return string;
1334 String string, AttributeSet attrs) throws
1336 if (string != null && (offset + length) ==
1340 string);
1347 string.length(),
1352 super.replace(fb, offset, length, string, attrs);
1356 String string, AttributeSet attr)
1358 replace(fb, offset, 0, string, att
1333 replace(FilterBypass fb, int offset, int length, String string, AttributeSet attrs) argument
1355 insertString(FilterBypass fb, int offset, String string, AttributeSet attr) argument
[all...]
/openjdk7/hotspot/src/share/vm/libadt/
H A Dset.cpp38 #include <string.h>
65 // Create a string with a printable representation of a set.
66 // The caller must deallocate the string.
73 uint len = 128; // Total string space
74 char *buf = NEW_C_HEAP_ARRAY(char,len, mtCompiler);// Some initial string space
76 register char *s = buf; // Current working string pointer
88 len <<= 1; // Double string size
95 s += strlen(s); // Advance working string
103 len <<= 1; // Double string size
/openjdk7/hotspot/src/os/solaris/fix_empty_sec_hdr_flags/
H A Dfix_empty_sec_hdr_flags.c40 #include <string.h>
51 char * elf_ident; /* ELF identity string */
57 Elf_Data * shstrtab; /* ELF section header string table */
104 /* get the section header string table */
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c31 #include <string.h>
699 void ReportErrorMessage2(char * format, char * string, jboolean always) { argument
701 * The format argument must be a printf format string with one %s
702 * argument, which is passed the string argument.
707 size = strlen(format) + strlen(string);
709 sprintf(message, (const char *)format, string);
718 fprintf(stderr, (const char *)format, string);
729 void ReportSysErrorMessage2(char * format, char * string, jboolean always) { argument
757 size = strlen(format) + strlen(string) + strlen(errtext);
759 sprintf(message, (const char *)format, string, errtex
[all...]
/openjdk7/jdk/make/tools/fix_empty_sec_hdr_flags/
H A Dfix_empty_sec_hdr_flags.c40 #include <string.h>
51 char * elf_ident; /* ELF identity string */
57 Elf_Data * shstrtab; /* ELF section header string table */
104 /* get the section header string table */
/openjdk7/jdk/src/share/back/
H A DVirtualMachineImpl.c658 jstring string; local
660 string = JNI_FUNC_PTR(env,NewStringUTF)(env, cstring);
664 (void)outStream_writeObjectRef(env, out, string);
765 countPaths(char *string) { argument
767 char *pos = string;
782 writePaths(PacketOutputStream *out, char *string) { argument
789 buf = jvmtiAllocate((int)strlen(string)+1);
791 npaths = countPaths(string);
799 pos = string;
H A DoutStream.h77 jdwpError outStream_writeString(PacketOutputStream *stream, char *string);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeUtility.java70 * byte[] bytes = string.getBytes("iso-8859-1");
388 * The given Unicode string is examined for non US-ASCII
389 * characters. If the string contains only US-ASCII characters,
390 * it is returned as-is. If the string contains non US-ASCII
394 * string containing only ASCII characters. <p>
416 * @param text unicode string
417 * @return Unicode string containing only US-ASCII characters
429 * The given Unicode string is examined for non US-ASCII
430 * characters. If the string contains only US-ASCII characters,
431 * it is returned as-is. If the string contain
616 encodeWord(String string, String charset, String encoding, boolean encodingWord) argument
663 doEncode(String string, boolean b64, String jcharset, int avail, String prefix, boolean first, boolean encodingWord, StringBuffer buf) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/name/
H A DNameImpl.java242 * @return a string for the local name.
253 * @return the prefix as a string.
262 * @return the uri as a string.
395 public static NameImpl createSOAP11Name(String string) { argument
396 return new SOAP1_1Name(string, null);
398 public static NameImpl createSOAP12Name(String string) { argument
399 return new SOAP1_2Name(string, null);
/openjdk7/jdk/src/solaris/instrument/
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. */
/openjdk7/jdk/src/solaris/native/com/sun/security/auth/module/
H A DSolaris.c32 #include <string.h>
H A DUnix.c37 #include <string.h>
/openjdk7/jdk/src/solaris/native/java/io/
H A Dcanonicalize_md.c32 #include <string.h>
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DDatagramDispatcher.c37 #include <string.h>
/openjdk7/jdk/src/solaris/npt/
H A Dutf_md.c28 #include <string.h>
/openjdk7/jdk/src/windows/native/common/
H A Djni_util_md.c27 #include <string.h>
/openjdk7/jdk/src/share/native/sun/misc/
H A DVM.c26 #include <string.h>
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dsecitem.c55 #include <string.h>
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java150 * 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...]
/openjdk7/corba/src/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...]

Completed in 101 milliseconds

1234567891011>>