Searched refs:thisName (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DRFC822Name.java193 String thisName = name.toLowerCase(Locale.ENGLISH);
194 if (inName.equals(thisName)) {
196 } else if (thisName.endsWith(inName)) {
203 int inNdx = thisName.lastIndexOf(inName);
204 if (thisName.charAt(inNdx-1) == '@' ) {
210 } else if (inName.endsWith(thisName)) {
211 /* if thisName contains @, then they had to match exactly */
212 if (thisName.indexOf('@') != -1) {
214 } else if (thisName.startsWith(".")) {
217 int ndx = inName.lastIndexOf(thisName);
[all...]
H A DDNSName.java204 String thisName = name.toLowerCase(Locale.ENGLISH);
205 if (inName.equals(thisName))
207 else if (thisName.endsWith(inName)) {
208 int inNdx = thisName.lastIndexOf(inName);
209 if (thisName.charAt(inNdx-1) == '.' )
213 } else if (inName.endsWith(thisName)) {
214 int ndx = inName.lastIndexOf(thisName);
/openjdk7/jdk/test/javax/management/modelmbean/
H A DDescriptorSupportSerialTest.java91 String thisName = Thread.currentThread().getName();
92 if (!thisName.equals(name)) {
94 name + " should be " + thisName);
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCardPermission.java239 String thisName = getName();
240 if (thisName.equals("*")) {
243 if (thisName.equals(other.getName())) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DMenuComponent.java391 String thisName = getName();
392 return (thisName != null? thisName : "");
H A DComponent.java8075 String thisName = getName();
8076 String str = (thisName != null? thisName : "") + "," + x + "," + y + "," + width + "x" + height;
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosRoundsTest.java58 String thisName = TreePosRoundsTest.class.getName();
59 File thisFile = new File(testSrc, thisName + ".java");
63 "-processor", thisName,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassWriter.java341 String thisName; field in class:ClassWriter
621 thisName = name;
H A DFrame.java784 s = OBJECT | cw.addType(cw.thisName);
827 inputLocals[i++] = OBJECT | cw.addType(cw.thisName);
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DDescriptorSupport.java919 String thisName = (String)(this.getFieldValue("name"));
922 if ((thisName == null) || (thisDescType == null) ||
923 (thisName.equals("")) || (thisDescType.equals(""))) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageReader.java891 Utf8Entry thisName;
894 thisName = (Utf8Entry) ic_name.getRef();
907 thisName = null;
909 thisName = ConstantPool.getUtf8Entry(name);
912 new InnerClass(thisClass, outerClass, thisName, flags);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java173 Identifier thisName = getLocalName();
174 if (thisName != idNull) {
180 if (thisName.equals(outerName))
181 env.error(where, "inner.redefined", thisName);

Completed in 100 milliseconds