Searched refs:quotes (Results 1 - 25 of 40) sorted by relevance

12

/external/nist-sip/java/gov/nist/core/
H A DNameValue.java57 private String quotes; field in class:NameValue
67 this.quotes = "";
85 quotes = "";
112 this.quotes = Separators.DOUBLE_QUOTE;
166 buffer.append(name).append(separator).append(quotes);
168 buffer.append(quotes);
177 return name + separator + quotes + quotes;
181 buffer.append(name).append(separator).append(quotes).append(quotes);
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Da_strex.c141 /* If we don't escape with quotes, signal we need quotes */
176 int type, unsigned char flags, char *quotes, char_io *io_ch, void *arg)
223 len = do_esc_char(utfbuf[i], (unsigned char)(flags | orflags), quotes, io_ch, arg);
228 len = do_esc_char(c, (unsigned char)(flags | orflags), quotes, io_ch, arg);
318 char quotes; local
320 quotes = 0;
367 len = do_buf(str->data, str->length, type, flags, &quotes, io_ch, NULL);
370 if(quotes) outlen += 2;
372 if(quotes
175 do_buf(unsigned char *buf, int buflen, int type, unsigned char flags, char *quotes, char_io *io_ch, void *arg) argument
[all...]
/external/openssl/crypto/asn1/
H A Da_strex.c141 /* If we don't escape with quotes, signal we need quotes */
176 int type, unsigned char flags, char *quotes, char_io *io_ch, void *arg)
223 len = do_esc_char(utfbuf[i], (unsigned char)(flags | orflags), quotes, io_ch, arg);
228 len = do_esc_char(c, (unsigned char)(flags | orflags), quotes, io_ch, arg);
318 char quotes; local
320 quotes = 0;
367 len = do_buf(str->data, str->length, type, flags, &quotes, io_ch, NULL);
370 if(quotes) outlen += 2;
372 if(quotes
175 do_buf(unsigned char *buf, int buflen, int type, unsigned char flags, char *quotes, char_io *io_ch, void *arg) argument
[all...]
/external/chromium/base/
H A Dstring_tokenizer.h117 // Set the characters to regard as quotes. By default, this is empty. When
122 void set_quote_chars(const str& quotes) { quotes_ = quotes; } argument
186 // Implementation of GetNext() for when we have to take quotes into account.
/external/chromium_org/base/strings/
H A Dstring_tokenizer.h118 // Set the characters to regard as quotes. By default, this is empty. When
123 void set_quote_chars(const str& quotes) { quotes_ = quotes; } argument
187 // Implementation of GetNext() for when we have to take quotes into account.
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
H A Dreset.css35 blockquote, q { quotes: "" ""; }
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCPPTarget.java70 * when surrounded by double-quotes.
99 * will be able to use this 1-to-1 mapping. Expect single quotes
116 * will be able to use this 1-to-1 mapping. Expect double quotes
H A DTarget.java159 * Expect single quotes around the incoming literal.
198 * is the translation 'a\n"' -> "a\n\"". Expect single quotes
199 * around the incoming literal. Just flip the quotes and replace
200 * double quotes with \"
275 * double-quotes around it as well. Example String in memory:
300 if ( c!='\'' && // don't escape single quotes in strings for java
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleRareInheritedData.h116 RefPtr<QuotesData> quotes; member in class:WebCore::StyleRareInheritedData
H A DStyleRareInheritedData.cpp209 && QuotesData::equals(quotes.get(), o.quotes.get())
H A DRenderStyle.cpp583 if (!QuotesData::equals(rareInheritedData->quotes.get(), other->rareInheritedData->quotes.get()))
710 if (QuotesData::equals(rareInheritedData->quotes.get(), q.get()))
712 rareInheritedData.access()->quotes = q;
/external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
H A Dsmartypants.php82 $convert_quot = 0; # should we translate &quot; entities into normal quotes?
90 # q : quotes
91 # b : backtick quotes (``double'' only)
92 # B : backtick quotes (``double'' and `single')
158 # Don't mess with quotes inside tags.
181 # Note: backticks need to be processed before quotes.
231 $do_backticks; # should we educate ``backticks'' -style quotes?
238 # smarten ``backticks'' -style quotes
245 # Special case to handle quotes at the very end of $text when preceded by
267 # Don't mess with quotes insid
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPUtilsImpl.java74 * @param quotes
75 * The characters to be used as quotes around array items that
84 String separator, String quotes, boolean allowCommas) throws XMPException
93 if (quotes == null || quotes.length() == 0)
95 quotes = "\"";
117 // Make sure the open and close quotes are a legitimate pair.
118 char openQuote = quotes.charAt(0);
119 char closeQuote = checkQuotes(quotes, openQuote);
249 // internal quotes tha
83 catenateArrayItems(XMPMeta xmp, String schemaNS, String arrayName, String separator, String quotes, boolean allowCommas) argument
872 checkQuotes(String quotes, char openQuote) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPUtils.java49 * @param quotes
50 * The characters to be used as quotes around array items that
58 String separator, String quotes, boolean allowCommas) throws XMPException
61 .catenateArrayItems(xmp, schemaNS, arrayName, separator, quotes, allowCommas);
57 catenateArrayItems(XMPMeta xmp, String schemaNS, String arrayName, String separator, String quotes, boolean allowCommas) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderQuote.cpp80 // Table of quotes from http://www.whatwg.org/specs/web-apps/current-work/multipage/rendering.html#quote
253 // FIXME: The default quotes should be the fancy quotes for "en".
291 if (const QuotesData* customQuotes = style()->quotes())
294 if (const QuotesData* quotes = quotesDataForLanguage(style()->locale()))
295 return quotes;
/external/smack/src/org/xbill/DNS/
H A DTokenizer.java35 private static String quotes = "\""; field in class:Tokenizer
285 delimiters = quotes;
/external/linux-tools-perf/config/
H A Dutilities.mak51 # single-quotes, so be wary of the characters
67 # delimited by shell single-quotes, so be wary
84 # single-quotes.
/external/bison/data/
H A Dglr.cc36 # (and c.m4 strips one level of quotes). This is a PITA, and
37 # explains why there are so many levels of quotes.
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
H A Dcss_checker.py157 { 'desc': 'Use single quotes (\') instead of double quotes (") in '
/external/e2fsprogs/lib/blkid/
H A Dread.c145 * in case it is inside quotes, or escaped.
258 printf("unbalanced quotes at: %s\n", *value));
/external/chromium_org/chrome/browser/resources/web_dev_style/
H A Dcss_checker.py289 { 'desc': 'Use single quotes (\') instead of double quotes (") in '
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1282 const bool quotes = isa<VarDecl>(DR->getDecl()); local
1283 if (quotes) {
1300 if (quotes)
1302 return quotes;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilderCustom.cpp1302 HANDLE_INHERIT_AND_INITIAL(quotes, Quotes);
1305 RefPtr<QuotesData> quotes = QuotesData::create(); local
1314 quotes->addPair(std::make_pair(startQuote, endQuote));
1316 state.style()->setQuotes(quotes);
/external/chromium_org/chrome/installer/mac/
H A Dpkg-dmg1370 # This stuff needs double-quotes for interpolations to work.
1375 print RESOURCE (' // Descriptive text, curly quotes are 0xD2 and 0xD3'.
1386 // If straight quotes are used ("), remember to escape them (\").
1388 // 0xD2 and 0xD3 are curly double-quotes ("), 0xD4 and 0xD5 are curly
1389 // single quotes ('), 0xD5 is also the apostrophe.
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcss.js378 "presentation-level", "punctuation-trim", "quotes", "rendering-intent",

Completed in 821 milliseconds

12