HomeSort by relevance Sort by last modified time
    Searched refs:quote (Results 1 - 25 of 324) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/host-tools/sed-4.2.1/lib/
quote.h 0 /* quote.h - prototypes for quote.c
21 char const *quote (char const *name);
quote.c 0 /* quote.c - quote arguments for output
24 #include "quote.h"
37 quote (char const *name) function
  /external/apache-http/src/org/apache/http/message/
HeaderValueFormatter.java 68 * @param quote <code>true</code> to always format with quoted values,
77 boolean quote)
87 * @param quote <code>true</code> to always format with quoted values,
96 boolean quote)
109 * @param quote <code>true</code> to always format with quoted values,
118 boolean quote)
128 * @param quote <code>true</code> to always format with a quoted value,
137 boolean quote)
BasicHeaderValueFormatter.java 89 * @param quote <code>true</code> to always format with quoted values,
98 final boolean quote,
102 return formatter.formatElements(null, elems, quote).toString();
109 final boolean quote) {
126 formatHeaderElement(buffer, elems[i], quote);
158 * @param quote <code>true</code> to always format with quoted values,
167 boolean quote,
171 return formatter.formatHeaderElement(null, elem, quote).toString();
178 final boolean quote) {
195 doFormatValue(buffer, value, quote);
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tokiter.cpp 56 * delimited by double or single quotes. The closing quote must match
57 * the opening quote. If a '#' is encountered, the rest of the line
70 UChar quote = 0; local
74 quote = c;
91 } else if ((quote != 0 && c == quote) ||
92 (quote == 0 && uprv_isRuleWhiteSpace(c))) {
95 } else if (quote == 0 && c == '#') {
102 if (quote != 0) {
  /external/icu4c/test/intltest/
tokiter.cpp 57 * 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/bison/lib/
quote.h 0 /* quote.h - prototypes for quote.c
23 /* The quoting options used by quote_n and quote. Its type is incomplete,
44 char const *quote (char const *arg);
  /external/chromium_org/native_client_sdk/src/tools/tests/
quote_test.py 16 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='\\',
106 help='Quote or escape character (default is "\")')
124 # NB: there are inputs x for which quote(unquote(x) != x, bu
    [all...]
  /external/oprofile/libpopt/
poptparse.c 60 char quote = '\0'; local
72 if (quote == *src) {
73 quote = '\0';
74 } else if (quote != '\0') {
81 if (*src != quote) *buf++ = '\\';
97 quote = *src;
  /libcore/luni/src/main/java/java/text/
Format.java 180 boolean lastQuote = false, quote = false;
187 quote = !quote;
189 } else if (ch == stop && !quote) {
204 boolean quote = false;
208 quote = !quote;
210 if (!quote) {
  /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/chromium_org/ui/keyboard/resources/layouts/
symbol-altkeys.js 30 '"': ['\u201C', // Left double quote
31 '\u201D', // Right double quote
33 '\u00AB', // Left double angle quote
34 '\u00BB'], // Right double angle quote
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ContentType.cpp 50 size_t quote = strippedType.find('\"', start + 1); local
52 if (quote != notFound && end != notFound)
53 start = quote;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nturl2path.py 47 # No drive specifier, just convert slashes and quote the name
54 return urllib.quote('/'.join(components))
60 drive = urllib.quote(comp[0].upper())
65 path = path + '/' + urllib.quote(comp)
pipes.py 233 cmd = 'OUT=' + quote(outf) + '; ' + cmd
235 cmd = 'IN=' + quote(inf) + '; ' + cmd
237 cmd = cmd + ' <' + quote(inf)
239 cmd = cmd + ' >' + quote(outf)
255 rmcmd = rmcmd + ' ' + quote(file)
256 trapcmd = 'trap ' + quote(rmcmd + '; exit') + ' 1 2 3 13 14 15'
262 # Reliably quote a string as a single argument for /bin/sh
267 def quote(file): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nturl2path.py 47 # No drive specifier, just convert slashes and quote the name
54 return urllib.quote('/'.join(components))
60 drive = urllib.quote(comp[0].upper())
65 path = path + '/' + urllib.quote(comp)
pipes.py 233 cmd = 'OUT=' + quote(outf) + '; ' + cmd
235 cmd = 'IN=' + quote(inf) + '; ' + cmd
237 cmd = cmd + ' <' + quote(inf)
239 cmd = cmd + ' >' + quote(outf)
255 rmcmd = rmcmd + ' ' + quote(file)
256 trapcmd = 'trap ' + quote(rmcmd + '; exit') + ' 1 2 3 13 14 15'
262 # Reliably quote a string as a single argument for /bin/sh
267 def quote(file): function
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
CodeGenerator.java 58 sb.append(INDENT + ".setContentTitle(" + quote(CONTENT_TITLE) + ")");
60 sb.append(INDENT + ".setContentText(" + quote(CONTENT_TEXT) + ")");
62 sb.append(INDENT + ".setSubText(" + quote(SUB_TEXT) + ")");
66 sb.append(INDENT + ".setContentInfo(" + quote(CONTENT_INFO) + ")");
99 sb.append(STYLE_INDENT + ".bigText(" + quote(BIG_TEXT) + ")");
105 sb.append(STYLE_INDENT + ".addLine(" + quote(line) + ")");
110 sb.append(STYLE_INDENT + ".setBigContentTitle(" + quote(BIG_CONTENT_TITLE) + ")");
112 sb.append(STYLE_INDENT + ".setSummaryText(" + quote(SUMMARY_TEXT) + ")");
120 ".addAction(" + icon.getValueInt() + ", " + quote(text) + ", " + intentName + ")");
123 private static String quote(EditableItem text) method in class:CodeGenerator
127 private static String quote(String text) { method in class:CodeGenerator
    [all...]
  /external/qemu/
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/
op_xml_out.c 179 char *quote; local
199 quote = "&amp;";
202 quote = "&lt;";
205 quote = "&gt;";
208 quote = "&quot;";
219 ret = snprintf(buf, size, "%s", quote);
  /system/core/libsysutils/src/
FrameworkListener.cpp 87 bool quote = false; local
123 if (quote)
124 quote = false;
126 quote = true;
134 if (!quote && *q == ' ') {
167 if (quote) {
  /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;
test8.c 107 ** the quote characters. The conversion is done in-place. If the
108 ** input does not begin with a quote character, then this routine
119 int quote; local
122 quote = z[0];
123 switch( quote ){
127 case '[': quote = ']'; break; /* For MS SqlServer compatibility */
131 if( z[i]==quote ){
132 if( z[i+1]==quote ){
133 z[j++] = quote;
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 15 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/third_party/WebKit/Source/core/rendering/
RenderQuote.cpp 34 RenderQuote::RenderQuote(Document* node, QuoteType quote)
36 , m_type(quote)
80 // Table of quotes from http://www.whatwg.org/specs/web-apps/current-work/multipage/rendering.html#quote
334 for (RenderQuote* quote = this; quote; quote = quote->m_next)
335 quote->updateDepth();
356 for (RenderQuote* quote = m_next; quote; quote = quote->m_next
    [all...]

Completed in 944 milliseconds

1 2 3 4 5 6 7 8 91011>>