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

1 2 3 4 5 6 7 8 91011>>

  /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/boringssl/src/util/
embed_test_data.go 27 func quote(in []byte) string { func
112 fmt.Printf(" %s,\n", quote(data[i:i+chunk]))
133 fmt.Printf(" if (strcmp(path, %s) == 0) {\n", quote([]byte(arg)))
  /external/brotli/
configure-cmake 39 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 "${1#*=}")";
    [all...]
  /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/tensorflow/tensorflow/core/lib/strings/
proto_text_util.cc 41 const char quote = scanner->Peek(); local
42 if (quote != '\'' && quote != '"') return false;
47 .ScanEscapedUntil(quote)
  /external/clang/utils/
FuzzTest 98 def quote(str): function
106 'inputs' : ' '.join(quote(f) for f in input_files) }
  /external/icu/icu4c/source/test/intltest/
tokiter.cpp 59 * 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) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
quopri.py 35 def quote(c): function
36 """Quote a single character."""
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
83 c = quote(c)
201 print "-t: quote tabs"
  /external/ImageMagick/MagickWand/
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/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
WildcardMatcher.java 56 regex.append(Pattern.quote(String.valueOf(c)));
  /external/libcxx/test/std/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 90 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 ( L"a" ) == L"\"a\"" )
    [all...]
  /external/libcxx/test/std/strings/string.view/string.view.nonmem/
quoted.pass.cpp 80 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 ( L"" ) == L"\"\"" )
    [all...]
  /external/python/cpython2/Lib/
quopri.py 35 def quote(c): function
36 """Quote a single character."""
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
83 c = quote(c)
201 print "-t: quote tabs"
  /external/python/cpython3/Lib/
quopri.py 36 def quote(c): function
37 """Quote a single character."""
63 output.write(s[:-1] + quote(s[-1:]) + lineEnd)
65 output.write(quote(s) + lineEnd)
84 c = quote(c)
204 print("-t: quote tabs")
shlex.py 17 __all__ = ["shlex", "split", "quote"]
207 # In posix shells, only the quote itself or the escape
310 def quote(s): function
  /prebuilts/gdb/darwin-x86/lib/python2.7/
quopri.py 35 def quote(c): function
36 """Quote a single character."""
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
83 c = quote(c)
201 print "-t: quote tabs"
  /prebuilts/gdb/linux-x86/lib/python2.7/
quopri.py 35 def quote(c): function
36 """Quote a single character."""
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
83 c = quote(c)
201 print "-t: quote tabs"
  /prebuilts/go/darwin-x86/src/go/build/
read_test.go 13 const quote = "`" const
53 ` + quote + `x` + quote + `
54 _ /*comment*/ ` + quote + `x` + quote + `
55 a ` + quote + `x` + quote + `
  /prebuilts/go/linux-x86/src/go/build/
read_test.go 13 const quote = "`" const
53 ` + quote + `x` + quote + `
54 _ /*comment*/ ` + quote + `x` + quote + `
55 a ` + quote + `x` + quote + `
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.nonmem/
quoted.pass.cpp 80 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 ( L"" ) == L"\"\"" )
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/quoted.manip/
quoted.pass.cpp 90 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 ( L"a" ) == L"\"a\"" )
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.nonmem/
quoted.pass.cpp 80 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 ( L"" ) == L"\"\"" )
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 35 def quote(c): function
36 """Quote a single character."""
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
83 c = quote(c)
201 print "-t: quote tabs"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 35 def quote(c): function
36 """Quote a single character."""
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
83 c = quote(c)
201 print "-t: quote tabs"
  /system/core/logcat/
logcat_system.cpp 32 char quote = *cp++; local
33 delim = strchr(cp, quote);

Completed in 623 milliseconds

1 2 3 4 5 6 7 8 91011>>