OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:flatString
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
RopeByteStringSubstringTest.java
92
ByteString
flatString
= ByteString.copyFromUtf8(testString);
93
assertEquals(classUnderTest + " string must equal the flat string",
flatString
, unicode);
95
flatString
.hashCode(), unicode.hashCode());
RopeByteStringTest.java
110
ByteString
flatString
= ByteString.copyFromUtf8(testString);
111
assertEquals(classUnderTest + " string must equal the flat string",
flatString
, unicode);
113
flatString
.hashCode(), unicode.hashCode());
/frameworks/base/services/java/com/android/server/location/
LocationBlacklist.java
127
String
flatString
;
129
flatString
= Settings.Secure.getStringForUser(mContext.getContentResolver(), key,
132
if (
flatString
== null) {
135
String[] splitStrings =
flatString
.split(",");
Completed in 237 milliseconds