Searched defs:strings (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/langtools/test/tools/javac/foreach/
H A DGenericIterator.java36 void main(String [] strings) { argument
/openjdk7/hotspot/test/compiler/6930043/
H A DTest6930043.java58 public static void main(String[] strings) { argument
/openjdk7/jdk/src/share/sample/nio/chatserver/
H A DNameReader.java102 String[] strings = name.split(NEWLINE, 2);
103 client.setUserName(strings[0].trim());
104 sendRemainingParts(client, strings);
113 * @param strings the messages to append to the buffer
115 private void sendRemainingParts(Client client, String[] strings) { argument
116 for (int i = 1; i < strings.length; ++i) {
117 client.appendMessage(strings[i]);
/openjdk7/hotspot/src/share/vm/code/
H A DicBuffer.hpp53 CodeStrings strings) { _size = size; _ic_site = NULL; }
52 initialize(int size, CodeStrings strings) argument
H A Dstubs.cpp104 CodeStrings strings; local
105 if (s != NULL) commit(code_size, strings);
122 CodeStrings strings; local
123 stub_initialize(s, requested_size, strings);
140 CodeStrings strings; local
141 stub_initialize(s, requested_size, strings);
150 void StubQueue::commit(int committed_code_size, CodeStrings& strings) { argument
155 stub_initialize(s, committed_size, strings);
H A Dstubs.hpp76 CodeStrings& strings) { ShouldNotCallThis(); } // called to initialize/specify the stub's size
110 CodeStrings& strings) = 0; // called after creation (called twice if allocated via (request, commit))
139 CodeStrings& strings) { cast(self)->initialize(size, strings); } \
179 CodeStrings& strings) { assert(size % CodeEntryAlignment == 0, "size not aligned"); _stub_interface->initialize(s, size, strings); }
209 CodeStrings& strings); // commit the previously requested stub - unlocks the queue
75 initialize(int size, CodeStrings& strings) argument
178 stub_initialize(Stub* s, int size, CodeStrings& strings) argument
H A DcodeBlob.hpp195 void set_strings(CodeStrings& strings) { argument
196 _strings.assign(strings);
/openjdk7/jdk/test/java/awt/DataFlavor/MissedHtmlAndRtfBug/
H A DMissedHtmlAndRtfBug.java97 private String concatStrings(String[] strings) { argument
99 for (int i = 0; i < strings.length; i++) {
100 result.append(strings[i]);
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DStaticStringsHash.java35 * StaticStringsHash takes an array of constant strings and
43 * <li> length() - works well when all strings are different length.</li>
44 * <li> charAt(n) - works well when one offset into all strings is different.</li>
47 * After constructing an instance over the set of strings, the
57 * is an index into the <code>strings</code> array.
62 /** The set of strings upon which the hash info is created */
63 public String[] strings = null; field in class:StaticStringsHash
69 * into the strings[] array. */
90 * @param strings the set of strings upo
94 StaticStringsHash(String[] strings) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotation.java42 private java.util.List strings; field in class:Annotation
56 strings = new ArrayList();
59 strings.add(tok.nextToken());
86 for (int i = 0; i < strings.size(); i++) {
87 String s = (String) strings.get(i);
113 for (Iterator iter = strings.iterator(); iter.hasNext(); ) {
155 String result = "Annotation: lowAddr: " + getLowAddress() + " highAddr: " + getHighAddress() + " strings: " + strings.size();
156 for (int i = 0; i < strings.size(); i++) {
157 result += "\n" + (String) strings
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.hpp56 CodeStrings& strings) { _size = size; DEBUG_ONLY(_strings.assign(strings);) }
134 AbstractInterpreter::code()->commit((*_masm)->code()->pure_insts_size(), (*_masm)->code()->strings());
55 initialize(int size, CodeStrings& strings) argument
/openjdk7/jdk/src/macosx/native/jobjc/src/runtime-additions/java/com/apple/jobjc/
H A DUtils.java43 public Strings strings() { method in class:Utils
/openjdk7/hotspot/test/compiler/6942326/
H A DTest.java36 static String[] strings = new String[1024]; field in class:Test
234 strings[i * 2] = new String(b.toCharArray());
235 strings[i * 2 + 1] = new String(a.toCharArray());
257 v += strings[s].indexOf(strings[s + 1]);
259 if (s >= strings.length) s = 0;
340 v += tc.indexOf(strings[s]);
342 if (s >= strings.length) s = 0;
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DCommonUI.java324 public static String stringFromStringArray(String strings[], String delim) argument
332 for(int i = 0; i < strings.length; i++)
334 string = string + strings[i];
341 public static String stringFromStringArray(String strings[]) argument
343 return stringFromStringArray(strings, "");
354 String strings[] = new String[numTokens];
357 strings[index++] = st.nextToken();
358 return strings;
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DArguments.java60 private boolean strings; field in class:Arguments
105 // -strings - output strings with -name output
178 } else if ((arg.compareTo("-strings") == 0)
180 strings = true;
368 return strings;
/openjdk7/jdk/test/javax/management/descriptor/
H A DDescriptorTest.java176 if (!strings(dnames).equals(strings(testFieldNames)))
177 return "descriptor names changed: " + strings(dnames);
250 if (!strings(foundNames).equals(strings(names))) {
252 strings(foundNames) + ", expected " + strings(names);
382 strings(testFieldNames)) {
388 strings(testFieldStrings)) {
648 static Set<String> strings(Strin method in class:DescriptorTest
[all...]
/openjdk7/jdk/src/share/npt/
H A Dutf.c432 static char *strings[] = { local
444 while ( strings[i] != NULL ) {
455 str = strings[i];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassReader.java159 private final String[] strings; field in class:ClassReader
162 * Maximum length of the strings contained in the constant pool of the
198 strings = new String[n];
352 String s = strings[i];
355 s = strings[i] = readUTF(index + 2,
477 char[] c = new char[maxStringLength]; // buffer used to read strings
1937 String s = strings[item];
1942 return strings[item] = readUTF(index + 2, readUnsignedShort(index), buf);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalog.java1107 public void unknownEntry(Vector strings) { argument
1108 if (strings != null && strings.size() > 0) {
1109 String keyword = (String) strings.elementAt(0);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java44 * A mutable set of Unicode characters and multicharacter strings. Objects of this class
110 * <td valign="top">The character 'a' and the multicharacter strings &quot;ab&quot; and
301 TreeSet strings = new TreeSet(); field in class:UnicodeSet
374 strings = (TreeSet)other.strings.clone();
479 * @param includeStrings if false, doesn't include the strings.
526 if (includeStrings && strings.size() > 0) {
527 Iterator it = strings.iterator();
661 strings.add(s);
676 throw new IllegalArgumentException("Can't use zero-length strings i
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java81 private StringTable strings; field in class:VM
119 // VM version strings come from Abstract_VM_Version class
588 if (strings == null) {
589 strings = StringTable.getTheTable();
591 return strings;
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectionImpl.java382 +", signature=" + strings(signature));
448 +", signature=" + strings(signature));
691 +", attributes="+ strings(attributes));
846 +", signature="+strings(signature));
1786 private static String strings(final String[] strs) { method in class:RMIConnectionImpl
H A DRMIConnector.java713 + strings(signature));
753 + ", signature=" + strings(signature));
923 + strings(attributes));
1012 + ", signature=" + strings(signature));
2223 The strings below encode the following two Java classes,
2576 private static String strings(final String[] strs) { method in class:RMIConnector
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp520 CodeStrings& strings() { return _strings; } function in class:CodeBuffer
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_xembed_server.c851 char **strings; local
855 strings = backtrace_symbols (array, size);
860 fprintf (stderr, "%s\n", strings[i]);
862 free (strings);

Completed in 449 milliseconds

12