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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/message/
HeaderValueFormatter.java 73 * @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)
BasicHeaderValueFormatter.java 94 * @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);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/attr/
error_context.h 29 /* Quote a file name for including in an error message */
30 const char *(*quote) (struct error_context *, const char *); member in struct:error_context
41 # define quote(ctx, name) \ macro
42 ( ((ctx) && (ctx)->quote) ? (ctx)->quote((ctx), (name)) : (name) )
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/attr/
error_context.h 29 /* Quote a file name for including in an error message */
30 const char *(*quote) (struct error_context *, const char *); member in struct:error_context
41 # define quote(ctx, name) \ macro
42 ( ((ctx) && (ctx)->quote) ? (ctx)->quote((ctx), (name)) : (name) )
  /external/icu/icu4c/source/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) {
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
inout_typemaps.i 45 (cl::push (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) ACL_result),
46 (cl::setf (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) $in));
48 (cl::push (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) ACL_result),
49 (cl::setf (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) $in));
51 (cl::push (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) ACL_result),
52 (cl::setf (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) $in));
54 (cl::push (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) ACL_result),
55 (cl::setf (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) $in));
57 (cl::push (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) ACL_result),
58 (cl::setf (ff:fslot-value-typed (cl::quote $*in_fftype) :c $out) $in))
    [all...]
  /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/libedit/src/
tokenizer.c 81 quote_t quote; /* Quoting state */ local
141 tok->quote = Q_none;
158 tok->quote = Q_none;
185 * 2 Unmatched double quote
186 * 1 Unmatched single quote
214 switch (tok->quote) {
216 tok->quote = Q_single; /* Enter single quote
220 case Q_single: /* Exit single quote mode */
221 tok->quote = Q_none
    [all...]
  /libcore/luni/src/main/java/java/text/
Format.java 182 boolean quote = false;
190 quote = !quote;
191 } else if (ch == stop && !quote) {
207 boolean quote = false;
211 quote = !quote;
213 if (!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)
  /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/libcxx/test/std/experimental/string.view/string.view.nonmem/
quoted.pass.cpp 78 std::string quote ( const char *p, char delim='"', char escape='\\' ) { function
82 ss >> s; // no quote
142 std::wstring quote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
148 ss >> s; // no quote
178 assert ( quote ( "Hi", '!' ) == "!Hi!" );
179 assert ( quote ( "Hi!", '!' ) == R"(!Hi\!!)" );
185 assert ( quote ( L"Hi", '!' ) == L"!Hi!" );
186 assert ( quote ( L"Hi!", '!' ) == LR"(!Hi\!!)" );
193 assert ( quote ( "" ) == "\"\"" );
194 assert ( quote ( L"" ) == L"\"\"" )
    [all...]
  /external/libcxx/test/std/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 79 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 ( L"" ) == L"\"\"" )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 79 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 ( L"" ) == L"\"\"" )
    [all...]
  /system/core/libsysutils/src/
FrameworkListener.cpp 94 bool quote = false; local
129 if (quote)
130 quote = false;
132 quote = true;
140 if (!quote && *q == ' ') {
173 if (quote) {
  /external/v8/src/
prettyprinter.h 49 void PrintLiteral(Handle<Object> value, bool quote);
50 void PrintLiteral(const AstRawString* value, bool quote);
84 void PrintLiteralIndented(const char* info, Handle<Object> value, bool quote);
  /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-trace/trace-viewer/third_party/Paste/paste/
transaction.py 67 self.quote = lambda s: "'%s'" % s.replace("'","''")
69 self.quote = self.module.PgQuoteString
74 conn.__dict__['quote'] = self.quote
117 curr.execute("SELECT now(), %s" % conn.quote("B'n\\'gles"))
  /external/chromium-trace/trace-viewer/third_party/webapp2/tests/
extras_json_test.py 29 self.assertEqual(json.quote('<script>alert("hello")</script>'),
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
StringIdItem.java 77 public static String getReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int stringIndex, boolean quote) {
80 if (quote) {
98 boolean quote) {
102 return getReferenceAnnotation(dexFile, stringIndex, quote);
  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
json.py 95 def quote(value, *args, **kwargs): function
96 """Serializes a value to JSON and encodes it using urllib.quote.
100 return urllib.quote(encode(value, *args, **kwargs))
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
formatter.py 166 def quote(self, s): member in class:TextFormatter
173 return 'In object: %s' % self.emphasize(self.quote(repr(obj)))
175 return 'URL: %s' % self.quote(url)
182 return self.emphasize('In expression: %s' % self.quote(expr))
184 return 'Warning: %s' % self.quote(warning)
193 return ' ' + self.quote(source_line.strip())
196 '%s: %s' % (self.quote(etype), self.quote(evalue)))
239 def quote(self, s): member in class:HTMLFormatter
242 return '<pre>%s</pre>' % self.quote(s
    [all...]
  /external/lldb/source/Core/
InputReader.cpp 149 char quote = '\0'; local
162 if (isspace(ch) && (!quote || (quote == ch && p[-1] != '\\')))
164 // We have a space character or the terminating quote
166 quote = '\0';
168 else if (quote)
174 quote = ch;

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 91011>>