/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
winnt.rh | 7 #define __TEXT(quote) L##quote 9 #define __TEXT(quote) quote 12 #define TEXT(quote) __TEXT(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));
|
/libcore/luni/src/main/java/java/util/regex/ |
Pattern.java | 58 * <tr> <td> \ </td> <td>Quote the following metacharacter (so {@code \.} matches a literal {@code .}).</td> </tr> 59 * <tr> <td> \Q </td> <td>Quote all following metacharacters until {@code \E}.</td> </tr> 404 icuPattern = quote(pattern); 434 public static String quote(String string) { method in class:Pattern
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
CSSTokenizer-in.cpp | 362 static inline CharacterType* checkAndSkipString(CharacterType* currentCharacter, int quote, CheckStringValidationMode mode) 368 if (UNLIKELY(*currentCharacter == quote)) { 522 size_t CSSTokenizer::peekMaxStringLen(SrcCharacterType* src, UChar quote) 528 // input string (possibly including terminating quote if any). 529 SrcCharacterType* end = checkAndSkipString(src, quote, SkipInvalid); 534 inline bool CSSTokenizer::parseStringInternal(SrcCharacterType*& src, DestCharacterType*& result, UChar quote) 537 if (UNLIKELY(*src == quote)) { 567 inline void CSSTokenizer::parseString(CharacterType*& result, CSSParserString& resultString, UChar quote) 571 if (UNLIKELY(!parseStringInternal(currentCharacter<CharacterType>(), result, quote))) { 574 UChar* result16 = allocateStringBuffer16((result - start) + peekMaxStringLen(currentCharacter<CharacterType>(), quote)); 582 parseStringInternal(currentCharacter<CharacterType>(), result16, quote); local 672 UChar quote; local [all...] |
/external/chromium_org/build/ |
env_dump.py | 35 envsetup_cmd = ' '.join(map(pipes.quote, args))
|
/external/chromium_org/native_client_sdk/src/tools/lib/ |
quote.py | 8 def quote(input_str, specials, escape='\\'): function
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-shape.cc | 119 char quote = 0; local 123 quote = **pp; 136 if (quote) 142 if (*pp == end || **pp != quote)
|
/external/harfbuzz_ng/src/ |
hb-shape.cc | 119 char quote = 0; local 123 quote = **pp; 136 if (quote) 142 if (*pp == end || **pp != quote)
|
/external/jsilver/src/org/clearsilver/jni/ |
JNI.java | 72 Pattern.quote(File.pathSeparator));
|
/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...] |
/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))
|
_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/darwin-x86/2.7.5/lib/python2.7/ |
quopri.py | 35 def quote(c): function 36 """Quote a single character.""" 63 output.write(s[:-1] + quote(s[-1]) + lineEnd) 65 output.write(quote(s) + lineEnd) 83 c = quote(c) 201 print "-t: quote tabs"
|
/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))
|
_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/ |
quopri.py | 35 def quote(c): function 36 """Quote a single character.""" 63 output.write(s[:-1] + quote(s[-1]) + lineEnd) 65 output.write(quote(s) + lineEnd) 83 c = quote(c) 201 print "-t: quote tabs"
|
/external/mksh/src/ |
eval.c | 203 uint8_t quotep; /* saved value of quote (for ${..[%#]..}) */ 204 uint8_t quotew; /* saved value of quote (for ${..[+-=]..}) */ 220 int quote = 0; local 288 /* temporary quote */ 289 quote |= 2; 295 quote = 1; 298 quote = st->quotew; 410 st->quotew = st->quotep = quote; 626 st->quotew = quote = 0; 667 word = quote ? IFS_WORD : IFS_IWS [all...] |
/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),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 43 # Match any flavor of string; the terminating quote is optional 262 quote = ch 263 if str[i-1:i+2] == quote * 3: 264 quote = quote * 3 266 w = len(quote) - 1 275 if str[i-1:i+w] == quote:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 43 # Match any flavor of string; the terminating quote is optional 262 quote = ch 263 if str[i-1:i+2] == quote * 3: 264 quote = quote * 3 266 w = len(quote) - 1 275 if str[i-1:i+w] == quote:
|
/external/bison/lib/ |
argmatch.c | 37 #include "quote.h" 159 fprintf (stderr, "\n - %s", quote (arglist[i])); 164 fprintf (stderr, ", %s", quote (arglist[i]));
|
/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) {
|
/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):
|
/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):
|