/external/parameter-framework/utility/ |
NaiveTokenizer.cpp | 47 // Check if the first character is a quote 49 // If so, move forward and set the separator to that quote
|
NaiveTokenizer.h | 39 * quote (either single (') or double (")), the next token will be all the 40 * characters (including spaces) until the next identical quote.
|
/libcore/luni/src/main/java/java/text/ |
Format.java | 182 boolean quote = false; 190 quote = !quote; 191 } else if (ch == stop && !quote) { 207 boolean quote = false; 211 quote = !quote; 213 if (!quote) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pipes.py | 233 cmd = 'OUT=' + quote(outf) + '; ' + cmd 235 cmd = 'IN=' + quote(inf) + '; ' + cmd 237 cmd = cmd + ' <' + quote(inf) 239 cmd = cmd + ' >' + quote(outf) 255 rmcmd = rmcmd + ' ' + quote(file) 256 trapcmd = 'trap ' + quote(rmcmd + '; exit') + ' 1 2 3 13 14 15' 262 # Reliably quote a string as a single argument for /bin/sh 267 def quote(file): function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/ |
dump.py | 7 # future enhancements, you should normally quote any identifier that 54 ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pipes.py | 233 cmd = 'OUT=' + quote(outf) + '; ' + cmd 235 cmd = 'IN=' + quote(inf) + '; ' + cmd 237 cmd = cmd + ' <' + quote(inf) 239 cmd = cmd + ' >' + quote(outf) 255 rmcmd = rmcmd + ' ' + quote(file) 256 trapcmd = 'trap ' + quote(rmcmd + '; exit') + ' 1 2 3 13 14 15' 262 # Reliably quote a string as a single argument for /bin/sh 267 def quote(file): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/ |
dump.py | 7 # future enhancements, you should normally quote any identifier that 54 ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names))
|
/system/core/adb/ |
adb_utils.cpp | 48 // Escape any ' in the string (before we single-quote the whole thing). 50 // close the existing single-quoted string, escape a single single-quote, and start
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
QuotedStringTokenizer.java | 167 case 2: // Single Quote 192 case 3: // Double Quote 273 /** Quote a string. 275 * embedded delimiters, quote characters or the 277 * @param s The string to quote. 278 * @param delim the delimiter to use to quote the string 295 quote(b,s); method 304 /** Quote a string. 306 * embeded delimiters, quote characters or the 308 * @param s The string to quote 311 public static String quote(String s) method in class:QuotedStringTokenizer 319 quote(b,s); method 341 public static void quote(Appendable buffer, String input) method in class:QuotedStringTokenizer 396 quote(buf,s); method [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/ |
XMPPathParser.java | 279 pos.stepEnd++; // Absorb the '=', remember the quote. 280 char quote = pos.path.charAt(pos.stepEnd); local 281 if (quote != '\'' && quote != '"') 284 "Invalid quote in array selector", XMPError.BADXPATH); 287 pos.stepEnd++; // Absorb the leading quote. 290 if (pos.path.charAt(pos.stepEnd) == quote) 292 // check for escaped quote 294 || pos.path.charAt(pos.stepEnd + 1) != quote) 305 throw new XMPException("No terminating quote for array selector" [all...] |
/external/icu/icu4c/source/i18n/ |
decimalformatpattern.cpp | 176 // 2=suffix, 3=prefix in quote, 4=suffix in quote. Subpart 0 is 378 // A quote outside quotes indicates either the opening 379 // quote or two quotes, which is a quote literal. That is, 380 // we have the first quote in 'do' or o''clock. 384 affix->append(kQuote); // Encode quote 387 subpart += 2; // open quote 462 case 3: // Prefix subpart, in quote 463 case 4: // Suffix subpart, in quote [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_urllib.py | 453 """Tests for urllib.quote() and urllib.quote_plus() 479 # Make sure quote() does not quote letters, digits, and "_,.-" 484 result = urllib.quote(do_not_quote) 486 "using quote(): %s != %s" % (do_not_quote, result)) 493 self.assertEqual(urllib.quote.func_defaults[0], '/') 498 result = urllib.quote(quote_by_default, safe=quote_by_default) 500 "using quote(): %s != %s" % (quote_by_default, result)) 514 result = urllib.quote(char) 516 "using quote(): %s should be escaped to %s, not %s" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_urllib.py | 453 """Tests for urllib.quote() and urllib.quote_plus() 479 # Make sure quote() does not quote letters, digits, and "_,.-" 484 result = urllib.quote(do_not_quote) 486 "using quote(): %s != %s" % (do_not_quote, result)) 493 self.assertEqual(urllib.quote.func_defaults[0], '/') 498 result = urllib.quote(quote_by_default, safe=quote_by_default) 500 "using quote(): %s != %s" % (quote_by_default, result)) 514 result = urllib.quote(char) 516 "using quote(): %s should be escaped to %s, not %s" [all...] |
/external/bison/po/ |
en@boldquot.header | 4 # and double quote (0x22). These substitutes look strange; see
|
en@quot.header | 4 # and double quote (0x22). These substitutes look strange; see
|
/external/bison/runtime-po/ |
en@boldquot.header | 4 # and double quote (0x22). These substitutes look strange; see
|
en@quot.header | 4 # and double quote (0x22). These substitutes look strange; see
|
/external/bison/src/ |
graphviz.c | 36 quote (char const *name) function 55 quote (grammar_file)); 74 fprintf (fout, " label=%s", quote (label)); 81 char *q = quote (name);
|
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/ |
extras_json_test.py | 29 self.assertEqual(json.quote('<script>alert("hello")</script>'),
|
/external/e2fsprogs/po/ |
en@boldquot.header | 4 # and double quote (0x22). These substitutes look strange; see
|
en@quot.header | 4 # and double quote (0x22). These substitutes look strange; see
|
/external/elfutils/src/po/ |
en@boldquot.header | 4 # and double quote (0x22). These substitutes look strange; see
|
en@quot.header | 4 # and double quote (0x22). These substitutes look strange; see
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/ |
TestDataElements_testtypes.java | 133 " quote=\\\' doubleQuote=\\\" singlequoutes=''",
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
Quoter.java | 51 Utility.appendToRule(output, (int)-1, true, false, quoteBuffer); // close previous quote
|