Searched defs:quote (Results 1 - 25 of 90) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dxml.rb15 def quote(text) method in class:XMLLexerTest
65 {say("PCDATA: " << quote($t.text))}
67 {say("CDATA: " << quote($t.text))}
69 {say("Comment: " << quote($t.text))}
/external/chromium_org/native_client_sdk/src/tools/lib/
H A Dquote.py8 def quote(input_str, specials, escape='\\'): function
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspaceanal.tcl157 # [quote {hello world}] == {'hello world'}
158 # [quote {hello world's}] == {'hello world''s'}
160 proc quote {txt} { procedure
614 if {$v=="" || ![string is double $v]} {set v [quote $v]}
/external/chromium_org/v8/test/webkit/resources/
H A Djson2-es5-compat.js204 function quote(string) { function
206 // If the string contains no control characters, no quote characters, and no
257 return quote(value);
324 partial.push(quote(k) + (gap ? ': ' : ':') + v);
336 partial.push(quote(k) + (gap ? ': ' : ':') + v);
/external/apache-http/src/org/apache/http/message/
H A DHeaderValueFormatter.java73 * @param quote <code>true</code> to always format with quoted values,
82 boolean quote)
92 * @param quote <code>true</code> to always format with quoted values,
101 boolean quote)
114 * @param quote <code>true</code> to always format with quoted values,
123 boolean quote)
133 * @param quote <code>true</code> to always format with a quoted value,
142 boolean quote)
80 formatElements(CharArrayBuffer buffer, HeaderElement[] elems, boolean quote) argument
99 formatHeaderElement(CharArrayBuffer buffer, HeaderElement elem, boolean quote) argument
121 formatParameters(CharArrayBuffer buffer, NameValuePair[] nvps, boolean quote) argument
140 formatNameValuePair(CharArrayBuffer buffer, NameValuePair nvp, boolean quote) argument
H A DBasicHeaderValueFormatter.java94 * @param quote <code>true</code> to always format with quoted values,
103 final boolean quote,
107 return formatter.formatElements(null, elems, quote).toString();
114 final boolean quote) {
131 formatHeaderElement(buffer, elems[i], quote);
163 * @param quote <code>true</code> to always format with quoted values,
172 boolean quote,
176 return formatter.formatHeaderElement(null, elem, quote).toString();
183 final boolean quote) {
200 doFormatValue(buffer, value, quote);
102 formatElements(final HeaderElement[] elems, final boolean quote, HeaderValueFormatter formatter) argument
112 formatElements(CharArrayBuffer buffer, final HeaderElement[] elems, final boolean quote) argument
171 formatHeaderElement(final HeaderElement elem, boolean quote, HeaderValueFormatter formatter) argument
181 formatHeaderElement(CharArrayBuffer buffer, final HeaderElement elem, final boolean quote) argument
259 formatParameters(final NameValuePair[] nvps, final boolean quote, HeaderValueFormatter formatter) argument
269 formatParameters(CharArrayBuffer buffer, NameValuePair[] nvps, boolean quote) argument
327 formatNameValuePair(final NameValuePair nvp, final boolean quote, HeaderValueFormatter formatter) argument
337 formatNameValuePair(CharArrayBuffer buffer, final NameValuePair nvp, final boolean quote) argument
394 doFormatValue(final CharArrayBuffer buffer, final String value, boolean quote) argument
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
H A Djson2.js209 function quote(string) { function
211 // If the string contains no control characters, no quote characters, and no
257 return quote(value);
324 partial.push(quote(k) + (gap ? ': ' : ':') + v);
336 partial.push(quote(k) + (gap ? ': ' : ':') + v);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DContentData.cpp50 PassOwnPtr<ContentData> ContentData::create(QuoteType quote) argument
52 return adoptPtr(new QuoteContentData(quote));
H A DContentData.h171 QuoteType quote() const { return m_quote; } function in class:blink::FINAL
172 void setQuote(QuoteType quote) { m_quote = quote; } argument
181 return static_cast<const QuoteContentData&>(data).quote() == quote();
185 QuoteContentData(QuoteType quote) argument
186 : m_quote(quote)
190 virtual PassOwnPtr<ContentData> cloneInternal() const OVERRIDE { return create(quote()); }
/external/chromium_org/third_party/WebKit/Source/platform/
H A DContentType.cpp50 size_t quote = strippedType.find('\"', start + 1); local
52 if (quote != kNotFound && end != kNotFound) {
53 start = quote;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtokiter.cpp57 * delimited by double or single quotes. The closing quote must match
58 * the opening quote. If a '#' is encountered, the rest of the line
71 UChar quote = 0; local
75 quote = c;
92 } else if ((quote != 0 && c == quote) ||
93 (quote == 0 && PatternProps::isWhiteSpace(c))) {
96 } else if (quote == 0 && c == '#') {
103 if (quote != 0) {
/external/icu/icu4c/source/test/intltest/
H A Dtokiter.cpp57 * delimited by double or single quotes. The closing quote must match
58 * the opening quote. If a '#' is encountered, the rest of the line
71 UChar quote = 0; local
75 quote = c;
92 } else if ((quote != 0 && c == quote) ||
93 (quote == 0 && PatternProps::isWhiteSpace(c))) {
96 } else if (quote == 0 && c == '#') {
103 if (quote != 0) {
/external/libcxx/test/input.output/iostream.format/quoted.manip/
H A Dquoted.pass.cpp79 std::string quote ( const char *p, char delim='"', char escape='\\' ) { function
83 ss >> s; // no quote
149 std::wstring quote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
153 ss >> s; // no quote
183 assert ( quote ( "Hi", '!' ) == "!Hi!" );
184 assert ( quote ( "Hi!", '!' ) == R"(!Hi\!!)" );
190 assert ( quote ( L"Hi", '!' ) == L"!Hi!" );
191 assert ( quote ( L"Hi!", '!' ) == LR"(!Hi\!!)" );
198 assert ( quote ( "" ) == "\"\"" );
199 assert ( quote (
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DStringIdItem.java77 public static String getReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int stringIndex, boolean quote) { argument
80 if (quote) {
98 boolean quote) {
102 return getReferenceAnnotation(dexFile, stringIndex, quote);
97 getOptionalReferenceAnnotation(@onnull DexBackedDexFile dexFile, int stringIndex, boolean quote) argument
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchromevox_json.js83 function quote(string) { function
85 // If the string contains no control characters, no quote characters, and
132 return quote(value);
197 partial.push(quote(k) + (gap ? ': ' : ':') + v);
208 partial.push(quote(k) + (gap ? ': ' : ':') + v);
/external/chromium_org/native_client_sdk/src/tools/lib/tests/
H A Dquote_test.py16 import quote namespace
26 sys.stdout.write('Invoking quote(%s, %s, %s)\n' %
31 return quote.quote(in_string, specials, *args, **kwargs)
41 return quote.unquote(in_string, specials, *args, **kwargs)
104 help='Special characters to quote (default is ":")')
105 parser.add_option('-q', '--quote', dest='quote', default='\\',
124 # NB: there are inputs x for which quote(unquote(x) != x, but
125 # there should be no input x for which unquote(quote(
[all...]
/external/clang/utils/
H A DFuzzTest98 def quote(str): function
106 'inputs' : ' '.join(quote(f) for f in input_files) }
/external/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp90 char quote = *pos; local
92 char *end = strchr(pos, quote);
/external/qemu/
H A Dgen-charmap.py75 def quote(s): function
93 disp = quote(m.group(1))
99 number = quote(m.group(1))
105 base = quote(m.group(1))
111 caps = quote(m.group(1))
117 fn = quote(m.group(1))
123 caps_fn = quote(m.group(1))
/external/chromium_org/third_party/icu/source/tools/pkgdata/
H A Dpkgtypes.c27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote) argument
38 if(quote < 0) { /* remove quotes */
45 } else if(quote > 0) { /* add quotes */
73 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quote) argument
88 if(quote < 0) { /* remove quotes */
95 } else if(quote > 0) { /* add quotes */
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONTokener.java225 * Return the characters up to the next close quote character.
229 * @param quote The quoting character, either
230 * <code>"</code>&nbsp;<small>(double quote)</small> or
231 * <code>'</code>&nbsp;<small>(single quote)</small>.
235 public String nextString(char quote) throws JSONException { argument
274 if (c == quote) {
/external/icu/icu4c/source/tools/pkgdata/
H A Dpkgtypes.c27 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote) argument
38 if(quote < 0) { /* remove quotes */
45 } else if(quote > 0) { /* add quotes */
73 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quote) argument
88 if(quote < 0) { /* remove quotes */
95 } else if(quote > 0) { /* add quotes */
/external/oprofile/libop/
H A Dop_xml_out.c179 char *quote; local
199 quote = "&amp;";
202 quote = "&lt;";
205 quote = "&gt;";
208 quote = "&quot;";
219 ret = snprintf(buf, size, "%s", quote);
/external/bison/src/
H A Dgraphviz.c36 quote (char const *name) function
55 quote (grammar_file));
74 fprintf (fout, " label=%s", quote (label));
81 char *q = quote (name);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderQuote.cpp34 RenderQuote::RenderQuote(Document* node, QuoteType quote) argument
36 , m_type(quote)
87 // Table of quotes from http://www.whatwg.org/specs/web-apps/current-work/multipage/rendering.html#quote
341 for (RenderQuote* quote = this; quote; quote = quote->m_next)
342 quote->updateDepth();
363 for (RenderQuote* quote = m_next; quote; quot
[all...]

Completed in 4365 milliseconds

1234