/external/apache-http/src/org/apache/http/message/ |
D | BasicHeaderValueFormatter.java | 98 final boolean quote, in formatElements() argument 102 return formatter.formatElements(null, elems, quote).toString(); in formatElements() 109 final boolean quote) { in formatElements() argument 126 formatHeaderElement(buffer, elems[i], quote); in formatElements() 167 boolean quote, in formatHeaderElement() argument 171 return formatter.formatHeaderElement(null, elem, quote).toString(); in formatHeaderElement() 178 final boolean quote) { in formatHeaderElement() argument 195 doFormatValue(buffer, value, quote); in formatHeaderElement() 202 formatNameValuePair(buffer, elem.getParameter(i), quote); in formatHeaderElement() 255 final boolean quote, in formatParameters() argument [all …]
|
D | HeaderValueFormatter.java | 77 boolean quote) in formatElements() argument 96 boolean quote) in formatHeaderElement() argument 118 boolean quote) in formatParameters() argument 137 boolean quote) in formatNameValuePair() argument
|
/external/icu4c/test/intltest/ |
D | tokiter.cpp | 70 UChar quote = 0; in nextToken() local 74 quote = c; in nextToken() 91 } else if ((quote != 0 && c == quote) || in nextToken() 92 (quote == 0 && uprv_isRuleWhiteSpace(c))) { in nextToken() 95 } else if (quote == 0 && c == '#') { in nextToken() 102 if (quote != 0) { in nextToken()
|
/external/bison/m4/ |
D | quote.m4 | 1 # quote.m4 serial 4 9 AC_LIBSOURCES([quote.c, quote.h]) 10 AC_LIBOBJ([quote]) 12 dnl Prerequisites of lib/quote.c.
|
/external/qemu/ |
D | gen-charmap.py | 75 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/oprofile/libop/ |
D | op_xml_out.c | 179 char *quote; in xml_quote() local 199 quote = "&"; in xml_quote() 202 quote = "<"; in xml_quote() 205 quote = ">"; in xml_quote() 208 quote = """; in xml_quote() 219 ret = snprintf(buf, size, "%s", quote); in xml_quote()
|
/external/oprofile/libpopt/ |
D | poptparse.c | 60 char quote = '\0'; in poptParseArgvString() local 72 if (quote == *src) { in poptParseArgvString() 73 quote = '\0'; in poptParseArgvString() 74 } else if (quote != '\0') { in poptParseArgvString() 81 if (*src != quote) *buf++ = '\\'; in poptParseArgvString() 97 quote = *src; in poptParseArgvString()
|
/external/markdown/tests/misc/ |
D | blockquote-hr.txt | 5 > Block quote with horizontal lines. 9 > > Double block quote. 13 > > End of the double block quote.
|
D | benchmark.dat | 9 blank-block-quote:0.010000:0.000000 30 lazy-block-quote:0.050000:0.000000 40 multi-paragraph-block-quote:0.070000:0.000000
|
D | lazy-block-quote.txt | 1 > Line one of lazy block quote. 2 Line two of lazy block quote.
|
D | lists5.txt | 1 > This is a test of a block quote 7 > With a list item inside the quote
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
D | 15.10.4.1-1.js | 91 msg = status + quote(prop); 104 return (statprefix + quote(regexp) + statsuffix); 108 function quote(text) function
|
D | 15.10.4.1-2.js | 97 msg = status + quote(prop); 110 return (statprefix + quote(regexp) + statsuffix); 114 function quote(text) function
|
D | 15.10.4.1-3.js | 103 msg = status + quote(prop); 117 return (statprefix + quote(regexp) + statmiddle + flag + statsuffix); 121 function quote(text) function
|
D | 15.10.4.1-4.js | 109 msg = status + quote(prop); 123 return (statprefix + quote(regexp) + statmiddle + flag + statsuffix); 127 function quote(text) function
|
D | regress-57631.js | 121 return (statprefix + quote(regexp) + statsuffix + quote(flag)); 125 function quote(text) function
|
/external/icu4c/tools/pkgdata/ |
D | pkgtypes.c | 27 …kg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote) in pkg_writeCharListWrap() argument 38 if(quote < 0) { /* remove quotes */ in pkg_writeCharListWrap() 45 } else if(quote > 0) { /* add quotes */ in pkg_writeCharListWrap() 73 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quote) in pkg_writeCharList() argument 88 if(quote < 0) { /* remove quotes */ in pkg_writeCharList() 95 } else if(quote > 0) { /* add quotes */ in pkg_writeCharList()
|
/external/bison/src/ |
D | scan-gram.l | 261 complain_at (*loc, _("invalid directive: %s"), quote (yytext)); 321 complain_at (*loc, _("invalid character: %s"), quote (yytext)); 454 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext)); 456 complain_at (*loc, _("invalid null character: %s"), quote (yytext)); 465 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext)); 467 complain_at (*loc, _("invalid null character: %s"), quote (yytext)); 486 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext)); 488 complain_at (*loc, _("invalid null character: %s"), quote (yytext)); 493 complain_at (*loc, _("unrecognized escape sequence: %s"), quote (yytext)); 891 complain_at (loc, _("integer out of range: %s"), quote (text)); in handle_action_dollar() [all …]
|
/external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/ |
D | mkskel.tpu | 6 ! changing backslash (\) to doubled backslash (\\) and quote (") 7 ! to backslash quote (\"). For each line, insert space+space+quote 8 ! at the beginning and quote+comma at the end. Bracket the updated
|
/external/webkit/Source/WebCore/platform/ |
D | ContentType.cpp | 50 size_t quote = strippedType.find('\"', start + 1); in parameter() local 52 if (quote != notFound && end != notFound) in parameter() 53 start = quote; in parameter()
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/LexicalConventions/ |
D | lexical-001.js | 41 var quote = "'"; variable 144 return (statprefix + quote + msg + quote);
|
/external/llvm/test/Assembler/ |
D | 2008-10-14-QuoteInName.ll | 1 ; RUN: llvm-as < %s | llvm-dis | grep "quote" 3 @"a\22quote" = global i32 0
|
/external/webkit/PerformanceTests/SunSpider/hosted/ |
D | json2.js | 209 function quote(string) { function 257 return quote(value); 324 partial.push(quote(k) + (gap ? ': ' : ':') + v); 336 partial.push(quote(k) + (gap ? ': ' : ':') + v);
|
/external/webkit/LayoutTests/fast/js/resources/ |
D | json2-es5-compat.js | 200 function quote(string) { function 253 return quote(value); 320 partial.push(quote(k) + (gap ? ': ' : ':') + v); 332 partial.push(quote(k) + (gap ? ': ' : ':') + v);
|
/external/webkit/Source/WebCore/rendering/style/ |
D | ContentData.cpp | 55 return quote() == other.quote(); in dataEquivalent()
|