/external/jetty/src/java/org/eclipse/jetty/http/ |
MimeTypes.java | 316 boolean quote=false; 321 if (quote && state!=10) 324 quote=false; 333 quote=true; 355 quote=true; 365 if (!quote && (';'==b || ' '==b )|| 366 (quote && '"'==b ))
|
/external/pcre/dist/testdata/ |
testoutput17 | 38 " (?: # opening quote... 39 [^\\\x80-\xff\n\015"] # Anything except backslash and quote 42 )* " # closing quote 52 " (?: # opening quote... 53 [^\\\x80-\xff\n\015"] # Anything except backslash and quote 56 )* " # closing quote 89 " (?: # opening quote... 90 [^\\\x80-\xff\n\015"] # Anything except backslash and quote 93 )* " # closing quote 101 " (?: # opening quote.. [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...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
ConversationMessageData.java | 188 * parts. A quoted string starts and ends with a single quote. Actual single quotes 189 * within the string are escaped using a second single quote. So, for example, an 201 * single quotes with a single single quote. 230 characterPos += 1; // skip the second quote 668 * Generate a sqlite snippet to call the quote function on the columnName argument. 672 private static String quote(final String columnName) { method 673 return "quote(" + columnName + ")"; 689 final boolean quote, 692 final String groupConcatTerm = quote 693 ? makeGroupConcatString(quote(fullColumn) [all...] |
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/ |
request_test.py | 126 # Without quote ------------------------------------------------------- 140 # With quote, hard way ------------------------------------------------ 144 # We must store cookies quoted. To quote unicode, we need to encode it. 145 y = urllib.quote(x.encode('utf8')) 168 # With quote, easy way ------------------------------------------------ 171 quoted_value = urllib.quote(value.encode('utf8'))
|
/external/mksh/src/ |
eval.c | 66 #define IFS_QUOTE 4 /* beg.w/quote, become IFS_WORD unless "$@" */ 204 uint8_t quotep; /* saved value of quote (for ${..[%#]..}) */ 205 uint8_t quotew; /* saved value of quote (for ${..[+-=]..}) */ 221 int quote = 0; local 289 /* temporary quote */ 290 quote |= 2; 306 quote = 1; 309 quote = st->quotew; 423 st->quotew = st->quotep = quote; 638 st->quotew = quote = 0 [all...] |
/external/bison/lib/ |
argmatch.c | 37 #include "quote.h" 159 fprintf (stderr, "\n - %s", quote (arglist[i])); 164 fprintf (stderr, ", %s", quote (arglist[i]));
|
w32spawn.h | 104 CreateProcess(). We must quote the arguments since Windows CreateProcess() 113 - But 2*n+1 backslashes followed by a double quote become 114 n backslashes followed by a double quote (n >= 0):
|
/ndk/sources/host-tools/make-3.81/ |
ar.c | 233 Metacharacters can be quoted with backslashes if QUOTE is nonzero. */ 235 glob_pattern_p (const char *pattern, int quote) 248 if (quote)
|
/external/bison/src/ |
muscle-tab.c | 29 #include "quote.h" 450 _("%%define variable %s redefined"), quote (variable)); 491 "muscle_percent_define_get_loc", quote (variable)); 505 "muscle_percent_define_get_syncline", quote (variable)); 551 quote (variable)); 557 "muscle_percent_define_flag", quote (variable)); 610 quote (*variablep), quote_n (1, value)); 614 quote (*values)); 625 "muscle_percent_define_check_values", quote (*variablep));
|
/external/ceres-solver/include/ceres/internal/ |
disable_warnings.h | 39 // Ceres' public interface. To quote MSDN: "C4251 can be ignored "
|
/external/e2fsprogs/lib/ss/ |
ss.h | 13 * This quote is just too good to not pass on:
|
/external/icu/icu4c/source/test/testdata/ |
testtypes.txt | 32 testescape{ "tab:\t cr:\r ff:\f newline:\n backslash:\\\\ quote=\\\' doubleQuote=\\\" singlequoutes=''" }
|
/external/linux-tools-perf/src/tools/perf/util/ |
exec_cmd.c | 3 #include "quote.h"
|
/external/lldb/source/Interpreter/ |
Args.cpp | 197 // argument "Hello world!") we remember the first quote character 198 // we encounter and use that for the quote character. 250 // Quote characters 253 // We found a quote character while inside a quoted 254 // character argument. If it matches our current quote 260 // Clear the quote character and let parsing 267 arg_pos = arg_end + 1; // Skip the quote character 272 // different quote, skip it and keep going 278 // We found the start of a quote scope. 280 // the start of a quote scope like [all...] |
/external/strace/linux/aarch64/ |
syscallent1.h | 6 /* Quote from asm-generic/unistd.h:
|
/external/v8/src/ |
prettyprinter.cc | 265 const bool quote = false; local 266 PrintLiteral(node->variable()->name(), quote); 574 void PrettyPrinter::PrintLiteral(Handle<Object> value, bool quote) { 578 if (quote) Print("\""); 582 if (quote) Print("\""); 612 void PrettyPrinter::PrintLiteral(const AstRawString* value, bool quote) { 613 PrintLiteral(value->string(), quote); 688 bool quote) { 691 PrintLiteral(value, quote);
|
/external/v8/tools/ |
csvparser.js | 44 * A regex for matching a double quote.
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-test.py | 22 r += urllib.quote(chr(c))
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HtmlTree.java | 37 * well-formed blocks of text, for quote detection. 629 * segments, white space separators, line breaks, and quote marks. 674 // buffer because a logical new line may be followed by quote marks. 678 // results in correctly outputting any quote marks at the beginning of the 719 /** Increments the current quote depth of the text. */ 724 /** Decrements the current quote depth of the text. */ 732 * be appended before the text, as well as any quote marks that should 733 * follow the last newline if the quote depth is non-zero. 772 // takes care of any quote marks that we need to output if the quote [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
fnmatch.h | 42 #define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
fnmatch.h | 42 #define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars. */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
utils.py | 32 from email._parseaddr import quote namespace 259 s = urllib.quote(s, safe='') 297 new_params.append((name, '"%s"' % quote(value))) 314 value = quote(EMPTYSTRING.join(value))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
utils.py | 32 from email._parseaddr import quote namespace 259 s = urllib.quote(s, safe='') 297 new_params.append((name, '"%s"' % quote(value))) 314 value = quote(EMPTYSTRING.join(value))
|
/sdk/find_java2/src/ |
utils.h | 45 // As indicated in MSDN for CreateProcess, callers should double-quote the program name
|