Home
last modified time | relevance | path

Searched refs:thisName (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
DRFC822Name.java193 String thisName = name.toLowerCase(Locale.ENGLISH); in constrains() local
194 if (inName.equals(thisName)) { in constrains()
196 } else if (thisName.endsWith(inName)) { in constrains()
203 int inNdx = thisName.lastIndexOf(inName); in constrains()
204 if (thisName.charAt(inNdx-1) == '@' ) { in constrains()
210 } else if (inName.endsWith(thisName)) { in constrains()
212 if (thisName.indexOf('@') != -1) { in constrains()
214 } else if (thisName.startsWith(".")) { in constrains()
217 int ndx = inName.lastIndexOf(thisName); in constrains()
DDNSName.java204 String thisName = name.toLowerCase(Locale.ENGLISH); in constrains() local
205 if (inName.equals(thisName)) in constrains()
207 else if (thisName.endsWith(inName)) { in constrains()
208 int inNdx = thisName.lastIndexOf(inName); in constrains()
209 if (thisName.charAt(inNdx-1) == '.' ) in constrains()
213 } else if (inName.endsWith(thisName)) { in constrains()
214 int ndx = inName.lastIndexOf(thisName); in constrains()
/libcore/luni/src/test/java/libcore/dalvik/system/
DDelegateLastClassLoaderTest.java96 private ClassLoader createClassLoader(String parentName, String thisName) { in createClassLoader() argument
97 return createClassLoader(parentName, thisName, true); in createClassLoader()
100 private ClassLoader createClassLoader(String parentName, String thisName, in createClassLoader() argument
103 File thisPath = resourcesMap.get(thisName); in createClassLoader()