/frameworks/base/core/java/android/util/ |
JsonReader.java | 649 int quote = nextNonWhitespace(); local 650 switch (quote) { 654 name = nextString((char) quote); 867 * Returns the string up to but not including {@code quote}, unescaping any 868 * character escape sequences encountered along the way. The opening quote 869 * should have already been read. This consumes the closing quote, but does 872 * @param quote either ' or ". 876 private String nextString(char quote) throws IOException { 884 if (c == quote) { [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
copy-acl.c | 543 error (0, errno, "%s", quote (src_name)); 547 error (0, errno, _("preserving permissions for %s"), quote (dst_name));
|
/libcore/xml/src/main/java/org/kxml2/io/ |
KXmlParser.java | 657 int quote = peekCharacter(); local 659 if (quote == '"') { 661 } else if (quote == '\'') { 905 int quote = peekCharacter(); local 907 if (quote == '"' || quote == '\'') { 909 entityValue = readValue((char) quote, true, false, ValueContext.ENTITY_DECLARATION); [all...] |
/external/blktrace/btreplay/doc/ |
btreplay.tex | 189 \begin{quote} 193 \end{quote} 197 \begin{quote} 202 \end{quote} 206 \begin{quote} 212 \end{quote} 217 \begin{quote} 232 \begin{quote} 236 \end{quote} 237 \end{quote} [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
TextFormat.java | 714 final char quote = currentToken.length() > 0 ? currentToken.charAt(0) local 716 if (quote != '\"' && quote != '\'') { 721 currentToken.charAt(currentToken.length() - 1) != quote) { 722 throw parseException("String missing ending quote."); [all...] |
/external/smack/src/org/xbill/DNS/ |
Record.java | 401 byteArrayToString(byte [] array, boolean quote) { 403 if (quote) 416 if (quote)
|
/external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/ |
buildbot.py | 70 return urllib.quote(self._name) 230 return "%s/%s" % (self._builder.results_url(), urllib.quote(results_directory)) 374 path = urllib.quote("json/builders/%s/builds/%s" % (builder.name(),
|
/external/bison/src/ |
scan-gram.c | [all...] |
/external/clang/utils/ |
FuzzTest | 98 def quote(str): function 106 'inputs' : ' '.join(quote(f) for f in input_files) }
|
/external/v8/tools/ |
csvparser.js | 44 * A regex for matching a double quote.
|
/external/webkit/Source/WebCore/inspector/front-end/ |
TextViewer.js | [all...] |
/ndk/sources/host-tools/sed-4.2.1/ |
bootstrap.sh | 128 ${CC} -DHAVE_CONFIG_H -I.. -I. -c quote.c || exit 1
|
bootstrap.sh.in | 128 ${CC} -DHAVE_CONFIG_H -I.. -I. -c quote.c || exit 1
|
/cts/libs/vogar-expect/src/vogar/ |
ExpectationStore.java | 167 pattern = Pattern.compile(".*" + Pattern.quote(reader.nextString()) + ".*", PATTERN_FLAGS);
|
/cts/tests/tests/security/src/android/security/cts/ |
ListeningPortsTest.java | 207 pattern = Pattern.quote(pattern);
|
/external/chromium/net/http/ |
http_util.cc | 24 // Return the index of the closing quote of the string, if any. 31 // start points to either the start quote or the last 370 // Single quote mark isn't actually part of quoted-text production, 386 // No terminal quote mark. 415 std::string HttpUtil::Quote(const std::string& str) { 752 // Verify that the equals sign we found wasn't inside of quote marks. 755 return valid_ = false; // Malformed, quote appears before equals sign 776 // * Does not detect when the final quote is escaped
|
/external/grub/docs/ |
help2man | 82 # Provide replacement `quote-regex' operator for pre-5.005. 486 my $quote = /\W/ ? '"' : ''; 487 print ".SH $quote$_$quote\n";
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-dbus-new-signals.py | 25 r += urllib.quote(chr(c))
|
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfoSource.java | 306 return classPath.split(Pattern.quote(separator));
|
/ndk/sources/host-tools/make-3.81/glob/ |
glob.c | 305 int __glob_pattern_p __P ((const char *pattern, int quote)); 1169 Metacharacters can be quoted with backslashes if QUOTE is nonzero. */ 1171 __glob_pattern_p (pattern, quote) 1173 int quote; 1186 if (quote && p[1] != '\0') [all...] |
/packages/apps/Email/tests/src/com/android/email/mail/transport/ |
MockTransport.java | 130 expect("^" + Pattern.quote(literal) + "$", responses);
|
/packages/apps/Mms/src/com/android/mms/util/ |
SmileyParser.java | 167 patternString.append(Pattern.quote(s));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
CompiledResourcesMonitor.java | 125 String [] pathArray = pathWithoutExtension.split(Pattern.quote(File.separator));
|
/system/core/adb/ |
commandline.c | 510 /** duplicate string and quote all \ " ( ) chars + space character. */ 932 int quote; local [all...] |
/external/linux-tools-perf/ |
Android.mk | 66 util/quote.c \
|