Home
last modified time | relevance | path

Searched refs:quoted (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
DNativeDaemonEvent.java213 boolean quoted = false; in unescapeArgs()
217 quoted = true; in unescapeArgs()
222 char terminator = quoted ? '\"' : ' '; in unescapeArgs()
234 if (!quoted) { in unescapeArgs()
253 quoted = true; in unescapeArgs()
256 quoted = false; in unescapeArgs()
263 ", length=" + length + ", quoted=" + quoted); in unescapeArgs()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DUtilsTest.java164 String quoted = "\"This is a wug.\""; in testUnquote() local
169 assertEquals(unquoted, Utils.unquote(quoted)); in testUnquote()
170 assertEquals(quoted, Utils.unquote(twiceQuoted)); in testUnquote()
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DDatePicker.java235 boolean quoted = false; in reorderPickers()
242 quoted = !quoted; in reorderPickers()
245 if (!quoted) { in reorderPickers()
/frameworks/base/services/core/java/com/android/server/signedconfig/
DSignedConfig.java145 private static CharSequence quoted(Object s) { in quoted() method in SignedConfig
173 "Config key " + key + " contains unsupported value " + quoted(value)); in parsePerSdkConfig()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DClock.java405 boolean quoted = false; in getSmallTime()
410 quoted = !quoted; in getSmallTime()
412 if (!quoted && c == 'a') { in getSmallTime()
/frameworks/av/media/libstagefright/httplive/
DM3UParser.cpp809 bool quoted = false; in FindNextUnquoted() local
814 quoted = !quoted; in FindNextUnquoted()
815 } else if (c == what && !quoted) { in FindNextUnquoted()
/frameworks/base/libs/androidfw/
DResourceTypes.cpp5958 char quoted = 0; in collectString() local
5967 if (quoted == 0 && isspace16(c) in collectString()
5971 if (c == '"' && (quoted == 0 || quoted == '"')) { in collectString()
5974 if (c == '\'' && (quoted == 0 || quoted == '\'')) { in collectString()
5994 if (quoted == 0) { in collectString()
5995 quoted = *p; in collectString()
5997 quoted = 0; in collectString()