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

1 2 3 4 5

  /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))}
  /ndk/sources/host-tools/sed-4.2.1/lib/
quote.c 0 /* quote.c - quote arguments for output
24 #include "quote.h"
37 quote (char const *name) function
  /external/chromium_org/native_client_sdk/src/tools/
quote.py 8 def quote(input_str, specials, escape='\\'): function
  /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/chromium_org/third_party/sqlite/src/tool/
spaceanal.tcl 155 # Quote a string for use in an SQL query. Examples:
157 # [quote {hello world}] == {'hello world'}
158 # [quote {hello world's}] == {'hello world''s'}
160 proc quote {txt} { procedure
614 if {$v=="" || ![string is double $v]} {set v [quote $v]}
  /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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/hosted/
json2.js 209 function quote(string) { function
211 // 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/chromium_org/third_party/WebKit/Source/platform/
ContentType.cpp 50 size_t quote = strippedType.find('\"', start + 1); local
52 if (quote != kNotFound && end != kNotFound) {
53 start = quote;
  /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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
util.py 46 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='/;=,')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
util.py 46 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/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/clang/utils/
FuzzTest 98 def quote(str): function
106 'inputs' : ' '.join(quote(f) for f in input_files) }
  /external/llvm/tools/llvm-symbolizer/
llvm-symbolizer.cpp 80 char quote = *pos; local
82 char *end = strchr(pos, quote);
  /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))
  /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"
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/
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"
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/bison/src/
graphviz.c 36 quote (char const *name) function
55 quote (grammar_file));
74 fprintf (fout, " label=%s", quote (label));
81 char *q = quote (name);
  /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;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
quoprimime.py 42 'quote',
110 def quote(c):
228 c = quote(c)
244 prev = quote(prev)
109 def quote(c): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 42 'quote',
110 def quote(c):
228 c = quote(c)
244 prev = quote(prev)
109 def quote(c): function
  /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) {

Completed in 536 milliseconds

1 2 3 4 5