OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:anotherString
(Results
1 - 9
of
9
) sorted by null
/external/apache-xml/src/main/java/org/apache/xml/utils/
XMLString.java
146
* @param
anotherString
the object to compare this <code>String</code>
153
public abstract boolean equals(String
anotherString
);
176
* @param
anotherString
the <code>String</code> to compare this
185
public abstract boolean equalsIgnoreCase(String
anotherString
);
190
* @param
anotherString
the <code>String</code> to be compared.
196
* @exception java.lang.NullPointerException if <code>
anotherString
</code>
199
public abstract int compareTo(XMLString
anotherString
);
XMLStringDefault.java
212
* @param
anotherString
the <code>String</code> to compare this
221
public boolean equalsIgnoreCase(String
anotherString
)
223
return m_str.equalsIgnoreCase(
anotherString
);
229
* @param
anotherString
the <code>String</code> to be compared.
235
* @exception java.lang.NullPointerException if <code>
anotherString
</code>
238
public int compareTo(XMLString
anotherString
)
240
return m_str.compareTo(
anotherString
.toString());
/external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForFSB.java
370
* @param
anotherString
Object to compare this to
376
public boolean equals(String
anotherString
)
381
if (n ==
anotherString
.length())
389
if (fsb.charAt(i) !=
anotherString
.charAt(j))
444
* @param
anotherString
the <code>String</code> to compare this
453
public boolean equalsIgnoreCase(String
anotherString
)
455
return (m_length ==
anotherString
.length())
456
? str().equalsIgnoreCase(
anotherString
) : false;
469
* @exception java.lang.NullPointerException if <code>
anotherString
</code>
XString.java
399
* @param
anotherString
the <code>String</code> to compare this
408
public boolean equalsIgnoreCase(String
anotherString
)
410
return str().equalsIgnoreCase(
anotherString
);
423
* @exception java.lang.NullPointerException if <code>
anotherString
</code>
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_plistlib.py
26
<key>
anotherString
</key>
105
anotherString
="<hello & 'hi' there!>",
/art/runtime/arch/mips64/
quick_entrypoints_mips64.S
[
all
...]
/external/python/cpython2/Lib/test/
test_plistlib.py
26
<key>
anotherString
</key>
105
anotherString
="<hello & 'hi' there!>",
/external/fonttools/Tests/misc/
plistlib_test.py
51
anotherString
="<hello & 'hi' there!>",
/external/python/cpython3/Lib/test/
test_plistlib.py
113
anotherString
="<hello & 'hi' there!>",
Completed in 1266 milliseconds