Searched defs:equalsIgnoreCase (Results 1 - 6 of 6) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMTestFramework.java154 boolean equalsIgnoreCase(String expected, String actual); method in interface:DOMTestFramework
156 boolean equalsIgnoreCase(Collection expected, Collection actual); method in interface:DOMTestFramework
158 boolean equalsIgnoreCase(List expected, List actual); method in interface:DOMTestFramework
H A DDOMTestInnerClass.java145 public boolean equalsIgnoreCase(String expected, String actual) { method in class:DOMTestInnerClass
146 return test.equalsIgnoreCase(expected, actual);
149 public boolean equalsIgnoreCase(Collection expected, Collection actual) { method in class:DOMTestInnerClass
150 return test.equalsIgnoreCase(expected, actual);
153 public boolean equalsIgnoreCase(List expected, List actual) { method in class:DOMTestInnerClass
154 return test.equalsIgnoreCase(expected, actual);
H A DJUnitTestCaseAdapter.java239 if (!expected.equalsIgnoreCase(actual)) {
262 if(actualString.equalsIgnoreCase(expectedString)) {
284 if(!expectedString.equalsIgnoreCase(actualString)) {
337 if(expected.equalsIgnoreCase(actual)) {
338 assertTrue(assertID, !expected.equalsIgnoreCase(actual));
372 public boolean equalsIgnoreCase(String expected, String actual) { method in class:JUnitTestCaseAdapter
373 return expected.equalsIgnoreCase(actual);
376 public boolean equalsIgnoreCase(Collection expected, Collection actual) { method in class:JUnitTestCaseAdapter
391 if(actualString.equalsIgnoreCase(expectedString)) {
401 public boolean equalsIgnoreCase(Lis method in class:JUnitTestCaseAdapter
[all...]
H A DDOMTestCase.java283 * Asserts that expected.equalsIgnoreCase(actual) is true
336 * Asserts that expected.equalsIgnoreCase(actual) is true
549 * Asserts that expected.equalsIgnoreCase(actual) is false
566 * Asserts that expected.equalsIgnoreCase(actual) is false
791 public boolean equalsIgnoreCase(String expected, String actual) { method in class:DOMTestCase
792 return framework.equalsIgnoreCase(expected, actual);
804 public boolean equalsIgnoreCase(Collection expected, Collection actual) { method in class:DOMTestCase
805 return framework.equalsIgnoreCase(expected, actual);
817 public boolean equalsIgnoreCase(List expected, List actual) { method in class:DOMTestCase
818 return framework.equalsIgnoreCase(expecte
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DHttpCookie.java674 boolean isLocalDomain = ".local".equalsIgnoreCase(domain);
688 domain.equalsIgnoreCase(host + ".local"))) {
696 return host.equalsIgnoreCase(domain);
704 //return (H.indexOf('.') == -1 && D.equalsIgnoreCase(domain));
705 return D.equalsIgnoreCase(domain) && ((domain.startsWith(".") && isFullyQualifiedDomainName(domain, 1))
712 host.equalsIgnoreCase(domain.substring(1)));
763 return equalsIgnoreCase(getName(), other.getName()) &&
764 equalsIgnoreCase(getDomain(), other.getDomain()) &&
1152 private static boolean equalsIgnoreCase(String s, String t) { method in class:HttpCookie
1155 return s.equalsIgnoreCase(
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DString.java941 * @see #equalsIgnoreCase(String)
1068 public boolean equalsIgnoreCase(String anotherString) { method in class:String

Completed in 5774 milliseconds