/external/libexif/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/linux-tools-perf/src/tools/perf/util/ |
alias.c | 73 return error("unclosed quote");
|
config.c | 58 int quote = 0, comment = 0, space = 0; local 67 if (quote) 74 if (isspace(c) && !quote) { 78 if (!quote) { 114 quote = 1-quote;
|
/external/llvm/utils/lit/tests/ |
shtest-shell.py | 22 # CHECK: shell parser error on: 'echo "missing quote'
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
networkconfig.h | 29 const char *value, bool quote);
|
/ndk/sources/host-tools/make-3.81/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
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
incpath.h | 34 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
headers.py | 15 def _formatparam(param, value=None, quote=1): 18 This will quote the value if needed or if quote is true. 21 if quote or tspecials.search(value):
|
util.py | 46 from urllib import quote namespace 60 url += quote(environ.get('SCRIPT_NAME') or '/') 66 from urllib import quote namespace 67 path_info = quote(environ.get('PATH_INFO',''),safe='/;=,')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
headers.py | 15 def _formatparam(param, value=None, quote=1): 18 This will quote the value if needed or if quote is true. 21 if quote or tspecials.search(value):
|
util.py | 46 from urllib import quote namespace 60 url += quote(environ.get('SCRIPT_NAME') or '/') 66 from urllib import quote namespace 67 path_info = quote(environ.get('PATH_INFO',''),safe='/;=,')
|
/external/clang/include/clang/Driver/ |
Job.h | 62 /// \param Quote - Should separate arguments be quoted. 64 virtual void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote, 112 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote, 151 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote, 181 bool Quote, CrashReportInfo *CrashInfo = nullptr) const override;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pipes.py | 80 self.assertEqual(pipes.quote(''), "''") 81 self.assertEqual(pipes.quote(safeunquoted), safeunquoted) 82 self.assertEqual(pipes.quote('test file name'), "'test file name'") 84 self.assertEqual(pipes.quote('test%sname' % u), 87 self.assertEqual(pipes.quote("test%s'name'" % u),
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pipes.py | 80 self.assertEqual(pipes.quote(''), "''") 81 self.assertEqual(pipes.quote(safeunquoted), safeunquoted) 82 self.assertEqual(pipes.quote('test file name'), "'test file name'") 84 self.assertEqual(pipes.quote('test%sname' % u), 87 self.assertEqual(pipes.quote("test%s'name'" % u),
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
UnicodeCompressor.java | 97 * quote defined window 99 * quote defined window 112 * switch to Unicode mode. Alternative to above: just quote 119 * C. If next character not in non-compressible region, quote Unicode 132 * quote Unicode 3 6 9 12 138 * defined quote window 2 4 6 8 179 * quote Unicode 3 6 9 12 441 // quote from unicode 469 // add quote Unicode tag 482 // it or quote from i [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
_parseaddr.py | 13 'quote', 162 def quote(str): function 165 Turns backslash and double quote characters into quoted pairs. These 326 aslist.append('"%s"' % quote(self.getquote())) 377 quote = False 380 if quote: 382 quote = False 390 quote = True 398 """Get a quote-delimited fragment from self's field."""
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
_parseaddr.py | 13 'quote', 162 def quote(str): function 165 Turns backslash and double quote characters into quoted pairs. These 326 aslist.append('"%s"' % quote(self.getquote())) 377 quote = False 380 if quote: 382 quote = False 390 quote = True 398 """Get a quote-delimited fragment from self's field."""
|
/frameworks/base/core/java/android/text/format/ |
DateFormat.java | 67 public static final char QUOTE = '\''; 392 if (c == QUOTE) { 403 if (i + 1 < len && s.charAt(i + 1) == QUOTE) { 408 // skip leading quote 414 if (c == QUOTE) { 416 // QUOTEQUOTE -> QUOTE 417 if (i + 1 < len && s.charAt(i + 1) == QUOTE) { 450 if (c == QUOTE) { 595 if (i + 1 < len && s.charAt(i + 1) == QUOTE) { 602 // delete leading quote [all...] |
/external/pcre/dist/testdata/ |
testoutput14 | 171 " (?: # opening quote... 172 [^\\\x80-\xff\n\015"] # Anything except backslash and quote 175 )* " # closing quote 185 " (?: # opening quote... 186 [^\\\x80-\xff\n\015"] # Anything except backslash and quote 189 )* " # closing quote 222 " (?: # opening quote... 223 [^\\\x80-\xff\n\015"] # Anything except backslash and quote 226 )* " # closing quote 234 " (?: # opening quote.. [all...] |
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/ |
JSONTokener.java | 225 * Return the characters up to the next close quote character. 229 * @param quote The quoting character, either 230 * <code>"</code> <small>(double quote)</small> or 231 * <code>'</code> <small>(single quote)</small>. 235 public String nextString(char quote) throws JSONException { 274 if (c == quote) {
|
/external/libvorbis/doc/ |
05-comment.tex | 21 \begin{quote} 24 \end{quote} 70 \begin{quote} 75 \end{quote} 183 \begin{quote} 189 \end{quote}
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
ICalendarTest.java | 115 "FOO;PARAM1=\"param1\"\";PARAM=quote-before-param:value"); 116 assertNull("Invalid quote before param value", component.getFirstProperty("FOO")); 125 "FOO;PARAM=text-not-allowed\"before-quote:value"); 126 assertNull("Invalid quote in param value", component.getFirstProperty("FOO")); 130 "FOO;PARAM=\"missing-end-quote:value"); 131 assertNull("missing-end-quote", component.getFirstProperty("FOO"));
|
/external/apache-harmony/support/src/test/resources/tests/resources/ |
hyts_htmltest.html | 9 <quote>A Seemingly Non Important String</quote>
|