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

12345

/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/brotli/
H A Dconfigure-cmake39 quote() { function
89 CMAKE_ARGS="$CMAKE_ARGS -D${VAR_UC_NAME}=$(quote "$2")"
91 CMAKE_ARGS="$CMAKE_ARGS -D${VAR_UC_NAME}=$(quote "${VAR_VALUE}")"
187 CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_INSTALL_BINDIR=$(quote "${1#*=}")";;
189 CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_INSTALL_BINDIR=$(quote "$2")"; shift;;
191 CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_INSTALL_SBINDIR=$(quote "${1#*=}")";;
193 CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_INSTALL_SBINDIR=$(quote "$2")"; shift;;
195 CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_INSTALL_LIBEXECDIR=$(quote "${1#*=}")";;
197 CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_INSTALL_LIBEXECDIR=$(quote "$2")"; shift;;
199 CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_INSTALL_SYSCONFDIR=$(quote "
[all...]
/external/tensorflow/tensorflow/core/lib/strings/
H A Dproto_text_util.cc41 const char quote = scanner->Peek(); local
42 if (quote != '\'' && quote != '"') return false;
47 .ScanEscapedUntil(quote)
/external/ImageMagick/MagickWand/
H A Dscript-token.c66 % quotes will also preserve backslashes unless escaping a double quote,
70 % For example Quoting the quote chars:
361 quote,
379 quote='\0';
411 /* quote character */
419 quote=c;
422 if (c == quote)
425 quote='\0';
433 /* escape char (preserve in quotes - unless escaping the same quote) */
436 if ( state==IN_QUOTE && quote
357 quote, local
[all...]
/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/guice/extensions/jmx/src/com/google/inject/tools/jmx/
H A DManager.java62 name.append("type=").append(quote(key.getTypeLiteral().toString()));
65 name.append(",annotation=").append(quote(annotation.toString()));
71 .append(quote("@" + annotationType.getName()));
88 static String quote(String value) { method in class:Manager
90 return ObjectName.quote(value).replace(',', ';');
/external/icu/icu4c/source/test/intltest/
H A Dtokiter.cpp59 * delimited by double or single quotes. The closing quote must match
60 * the opening quote. If a '#' is encountered, the rest of the line
73 UChar quote = 0; local
77 quote = c;
94 } else if ((quote != 0 && c == quote) ||
95 (quote == 0 && PatternProps::isWhiteSpace(c))) {
98 } else if (quote == 0 && c == '#') {
105 if (quote != 0) {
/external/libcxx/test/std/strings/string.view/string.view.nonmem/
H A Dquoted.pass.cpp80 std::string quote ( const char *p, char delim='"', char escape='\\' ) { function
84 ss >> s; // no quote
144 std::wstring quote ( const wchar_t *p, wchar_t delim='"', wchar_t escape='\\' ) { function
150 ss >> s; // no quote
180 assert ( quote ( "Hi", '!' ) == "!Hi!" );
181 assert ( quote ( "Hi!", '!' ) == R"(!Hi\!!)" );
187 assert ( quote ( L"Hi", '!' ) == L"!Hi!" );
188 assert ( quote ( L"Hi!", '!' ) == LR"(!Hi\!!)" );
195 assert ( quote ( "" ) == "\"\"" );
196 assert ( quote (
[all...]
/external/python/cpython2/Lib/wsgiref/
H A Dutil.py46 from urllib import quote namespace
60 url += quote(environ.get('SCRIPT_NAME') or '/')
66 from urllib import quote namespace
67 path_info = quote(environ.get('PATH_INFO',''),safe='/;=,')
/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/clang/utils/
H A DFuzzTest98 def quote(str): function
106 'inputs' : ' '.join(quote(f) for f in input_files) }
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
H A DCommandLineSupport.java33 static String quote(final String arg) { method in class:CommandLineSupport
55 static String quote(final List<String> args) { method in class:CommandLineSupport
62 result.append(quote(arg));
/external/libcxx/test/std/input.output/iostream.format/quoted.manip/
H A Dquoted.pass.cpp90 std::basic_string<CharT, Traits> quote ( const CharT *p, char delim='"', char escape='\\' ) { function
96 ss >> s; // no quote
145 assert ( quote ( "Hi", '!' ) == "!Hi!" );
146 assert ( quote ( "Hi!", '!' ) == R"(!Hi\!!)" );
152 assert ( quote ( L"Hi", '!' ) == L"!Hi!" );
153 assert ( quote ( L"Hi!", '!' ) == LR"(!Hi\!!)" );
160 assert ( quote ( "" ) == "\"\"" );
161 assert ( quote ( L"" ) == L"\"\"" );
162 assert ( quote ( "a" ) == "\"a\"" );
163 assert ( quote (
[all...]
/external/python/cpython2/Lib/
H A Dquopri.py35 def quote(c): function
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
83 c = quote(c)
201 print "-t: quote tabs"
H A Dpipes.py233 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
/external/python/cpython3/Lib/
H A Dquopri.py36 def quote(c): function
63 output.write(s[:-1] + quote(s[-1:]) + lineEnd)
65 output.write(quote(s) + lineEnd)
84 c = quote(c)
204 print("-t: quote tabs")
/external/python/cpython3/Lib/wsgiref/
H A Dutil.py46 from urllib.parse import quote namespace
60 url += quote(environ.get('SCRIPT_NAME') or '/', encoding='latin1')
66 from urllib.parse import quote namespace
67 path_info = quote(environ.get('PATH_INFO',''), safe='/;=,', encoding='latin1')
/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.c29 const char *pkg_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quote) argument
40 if(quote < 0) { /* remove quotes */
47 } else if(quote > 0) { /* add quotes */
75 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quote) argument
90 if(quote < 0) { /* remove quotes */
97 } else if(quote > 0) { /* add quotes */
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
H A DXMLElement.java108 private void quote(final String text) throws IOException { method in class:XMLElement
160 quote(value);
220 quote(text);
/external/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp120 char quote = *pos; local
122 const char *end = strchr(pos, quote);
/external/parameter-framework/upstream/utility/test/
H A Dutility.cpp140 auto quote = [](std::string toQuote) { return '"' + toQuote + '"'; }; variable
142 GIVEN ("A title: " + quote(test.title)) {
146 WHEN ("Appending to: " + quote(test.initial)) {
148 THEN ("Result should be:\n" + quote(test.result)) {
/external/python/cpython2/Lib/email/
H A Dquoprimime.py42 'quote',
110 def quote(c):
228 c = quote(c)
244 prev = quote(prev)
109 def quote(c): function
/external/python/cpython3/Lib/email/
H A Dquoprimime.py38 'quote',
123 def quote(c): function
176 # quote speacial characters
209 q = quote(line[-1])
216 q = soft_break + quote(line[-1])

Completed in 781 milliseconds

12345