Searched refs:trimmed (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvFill.java74 String trimmed = line.trim();
75 if (!trimmed.startsWith(functionPrefix)) {
78 int index = trimmed.indexOf('(', functionPrefix.length());
82 name = trimmed.substring(functionPrefix.length(), index);
83 int index2 = trimmed.indexOf(')', index);
87 args = trimmed.substring(index+1, index2);
89 String tail = trimmed.substring(index2+1).trim();
106 trimmed = line.replaceAll("\\s","");
107 if (!trimmed.equals(expected.replaceAll("\\s",""))) {
198 String trimmed
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsUrl.java76 DnsUrl[] trimmed = new DnsUrl[i];
77 System.arraycopy(urls, 0, trimmed, 0, i);
78 return trimmed;
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbServiceLocator.java112 String[] trimmed = new String[numRecords];
113 System.arraycopy(txtRecords, 0, trimmed, 0, numRecords);
114 records = trimmed;
173 SrvRecord[] trimmed = new SrvRecord[numRecords];
174 System.arraycopy(srvRecords, 0, trimmed, 0, numRecords);
175 srvRecords = trimmed;
H A DConfig.java800 private static String trimmed(String s) { method in class:Config
819 String value = trimmed(line.substring(j + 1));
891 nameVector.addElement(trimmed(line.substring(j + 1)));
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapURL.java159 String[] trimmed = new String[i];
160 System.arraycopy(urls, 0, trimmed, 0, i);
161 return trimmed;
H A DServiceLocator.java163 SrvRecord[] trimmed = new SrvRecord[numRecords];
164 System.arraycopy(srvRecords, 0, trimmed, 0, numRecords);
165 srvRecords = trimmed;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethodData.java174 String trimmed = name.substring(prefix.length());
177 throw new InternalError("duplicate reasons: " + trapReasonName[value] + " " + trimmed);
179 trapReasonName[value] = trimmed;

Completed in 39 milliseconds