/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
ContentData.h | 162 QuoteType quote() const { return m_quote; } function in class:WebCore::QuoteContentData 163 void setQuote(QuoteType quote) { m_quote = quote; } 172 return static_cast<const QuoteContentData&>(data).quote() == quote(); 176 QuoteContentData(QuoteType quote) 177 : m_quote(quote) 181 virtual PassOwnPtr<ContentData> cloneInternal() const { return create(quote()); }
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
Utils.java | 134 char quote = selector.charAt(pos); local 136 int end = selector.length() - 2; // quote and ] 142 if (selector.charAt(pos) == quote) 144 // skip one quote in value
|
/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...] |
/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
|
/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."""
|
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/ |
_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."""
|
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))
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
AVT.java | 272 String quote = lookahead; local 274 // Consume stuff 'till next quote 277 while (!lookahead.equals(quote))
|
/external/chromium_org/native_client_sdk/src/tools/ |
create_nmf.py | 23 import quote namespace 554 unquoted = quote.unquote(kv, ':')
|
/external/linux-tools-perf/util/ |
config.c | 55 int quote = 0, comment = 0, space = 0; local 64 if (quote) 71 if (isspace(c) && !quote) { 75 if (!quote) { 111 quote = 1-quote;
|
/external/v8/src/ |
scanner.cc | 690 uc32 quote = c0_; local 691 Advance(); // consume quote 694 while (c0_ != quote && c0_ >= 0 705 if (c0_ != quote) return Token::ILLEGAL; 708 Advance(); // consume quote
|
/frameworks/base/core/java/android/text/ |
BidiFormatter.java | 812 char quote = lastChar; local 844 char quote = lastChar; local [all...] |
/frameworks/support/v4/java/android/support/v4/text/ |
BidiFormatter.java | 802 char quote = lastChar; local 834 char quote = lastChar; local [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
util.c | 169 ** the quote characters. The conversion is done in-place. If the 170 ** input does not begin with a quote character, then this routine 185 char quote; local 188 quote = z[0]; 189 switch( quote ){ 193 case '[': quote = ']'; break; /* For MS SqlServer compatibility */ 197 if( z[i]==quote ){ 198 if( z[i+1]==quote ){ 199 z[j++] = quote;
|
/external/chromium_org/v8/src/ |
scanner.cc | 696 uc32 quote = c0_; local 697 Advance(); // consume quote 700 while (c0_ != quote && c0_ >= 0 710 if (c0_ != quote) return Token::ILLEGAL; 713 Advance(); // consume quote [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowTime.java | 434 //We start a literal, which we need to quote 454 protected String quote(String str, boolean insideQuotes) { method in class:ShadowTime.Strftime 482 buf.append(quote("%" + firstChar, oldInside)); 489 buf.append(quote("%" + firstChar, oldInside));
|
/libcore/json/src/main/java/org/json/ |
JSONObject.java | 711 public static String quote(String data) { method in class:JSONObject
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/ |
EncoderUtil.java | 132 return quote(displayName); 154 return quote(localPart); 176 return name + "=" + quote(value); 500 private static String quote(String str) { method in class:EncoderUtil
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
rfc822.py | 468 # XXX Should fix unquote() and quote() to be really conformant. 482 def quote(s): function 696 quote = 0 699 if quote == 1: 701 quote = 0 709 quote = 1 717 """Get a quote-delimited fragment from self's field.""" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
rfc822.py | 468 # XXX Should fix unquote() and quote() to be really conformant. 482 def quote(s): function 696 quote = 0 699 if quote == 1: 701 quote = 0 709 quote = 1 717 """Get a quote-delimited fragment from self's field.""" [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
SourceProcessor.java | 78 * @param path the path to quote 81 public static String quote(String path) { method in class:SourceProcessor
|
/cts/libs/json/src/com/android/json/stream/ |
JsonReader.java | 620 int quote = nextNonWhitespace(); local 621 switch (quote) { 625 name = nextString((char) quote); 798 * Returns the string up to but not including {@code quote}, unescaping any 799 * character escape sequences encountered along the way. The opening quote 800 * should have already been read. This consumes the closing quote, but does 803 * @param quote either ' or ". 807 private String nextString(char quote) throws IOException { 815 if (c == quote) { [all...] |
/external/bison/lib/ |
quotearg.c | 1 /* quotearg.c - quote arguments for output 30 #include "quote.h" 63 /* Quote the characters indicated by this bit vector even if the 67 /* The left quote for custom_quoting_style. */ 70 /* The right quote for custom_quoting_style. */ 135 0 (the default) and 1 (which means to quote the character even if 304 will quote 'like this', and clocale_quoting_style will 305 quote "like this". You should always include translations 724 /* Preallocate a slot 0 buffer, so that the caller can always quote 932 /* The quoting option used by the functions of quote.h. * 960 quote (char const *arg) function [all...] |
/external/chromium_org/chrome/browser/extensions/api/web_request/ |
form_data_parser.cc | 210 // inside |literal|. Those must be excluded from the quote and the backslash 407 static const char quote[] = OPEN_QUOTE; local 420 // Find all "\\E" in |literal| and exclude them from the \Q...\E quote. 425 result.append(quote); 429 // Finish the last \Q...\E quote.
|