/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
H A D | 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/catapult/third_party/webapp2/webapp2_extras/ |
H A D | 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/v8/test/webkit/resources/ |
H A D | json2-es5-compat.js | 204 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/ImageMagick/MagickWand/ |
H A D | script-token.c | 66 % 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 D | 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) 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 D | 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); 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-trace/catapult/third_party/Paste/paste/ |
H A D | proxy.py | 34 from six.moves.urllib.parse import quote namespace 105 path_info = quote(environ['PATH_INFO']) 231 path = quote(path)
|
H A D | translogger.py | 10 from six.moves.urllib.parse import quote namespace 54 req_uri = quote(environ.get('SCRIPT_NAME', '')
|
H A D | cgiapp.py | 10 from six.moves.urllib.parse import quote namespace 73 quote(environ.get('SCRIPT_NAME', '')) 74 + quote(environ.get('PATH_INFO', '')))
|
/external/chromium-trace/catapult/third_party/uritemplate/uritemplate/ |
H A D | __init__.py | 25 from urllib.parse import quote namespace 27 from urllib import quote namespace 58 return quote(str(value)[:prefix], safe) 59 return quote(str(value), safe)
|
/external/guice/extensions/jmx/src/com/google/inject/tools/jmx/ |
H A D | Manager.java | 62 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 D | 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/libcxx/test/std/experimental/string.view/string.view.nonmem/ |
H A D | 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 ( [all...] |
/external/libcxx/test/std/input.output/iostream.format/quoted.manip/ |
H A D | 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 ( [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
H A D | StringIdItem.java | 77 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-trace/catapult/third_party/Paste/paste/util/ |
H A D | quoting.py | 8 from six.moves.urllib.parse import quote, unquote namespace 80 url_quote = quote
|
/external/clang/utils/ |
H A D | FuzzTest | 98 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 D | CommandLineSupport.java | 33 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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ |
H A D | compat.py | 55 from boto.vendored.six.moves.urllib.parse import parse_qs, quote, unquote, \ 56 urlparse, urlsplit namespace
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/ |
H A D | JSONTokener.java | 225 * Return the characters up to the next close quote character. 229 * @param quote The quoting character, either 230 * <code>"</code> <small>(double quote)</small> or 231 * <code>'</code> <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 D | pkgtypes.c | 27 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/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
H A D | XMLElement.java | 108 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 D | llvm-symbolizer.cpp | 118 char quote = *pos; local 120 char *end = strchr(pos, quote);
|
/external/parameter-framework/upstream/utility/test/ |
H A D | utility.cpp | 140 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/autotest/site_utils/ |
H A D | brillo_common.py | 170 def quote(val): function in function:_get_command 174 '-t', quote(test_name)] 178 cmd += ['-m', quote(moblab.hostname)] 180 cmd += ['-A', quote(arg_str)]
|