OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:stringequals
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/core/java/android/text/util/
Rfc822Token.java
180
private static boolean
stringEquals
(String a, String b) {
193
return (
stringEquals
(mName, other.mName) &&
194
stringEquals
(mAddress, other.mAddress) &&
195
stringEquals
(mComment, other.mComment));
/external/chromium_org/tools/grit/grit/extern/
tclib.py
88
if
StringEquals
(self.__presentation, other.__presentation,
90
if not strict or (
StringEquals
(self.__original, other.__original,
92
StringEquals
(self.__example, other.__example,
/external/chromium_org/v8/src/
runtime.js
55
if (IS_STRING(this) && IS_STRING(y)) return %
StringEquals
(this, y);
71
if (IS_STRING(y)) return %
StringEquals
(x, y);
111
return %
StringEquals
(this, x);
runtime.h
172
F(
StringEquals
, 2, 1) \
/external/v8/src/
runtime.js
55
if (IS_STRING(this) && IS_STRING(y)) return %
StringEquals
(this, y);
71
if (IS_STRING(y)) return %
StringEquals
(x, y);
103
return %
StringEquals
(this, x);
runtime.h
159
F(
StringEquals
, 2, 1) \
/art/runtime/mirror/
object_test.cc
340
TEST_F(ObjectTest,
StringEquals
) {
Completed in 2516 milliseconds