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

12 3 4 5 6 7 8 91011>>

  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
quoprimime.py 42 'quote',
110 def quote(c):
228 c = quote(c)
244 prev = quote(prev)
109 def quote(c): function
_parseaddr.py 13 'quote',
162 def quote(str): function
165 Turns backslash and double quote characters into quoted pairs. These
326 aslist.append('"%s"' % quote(self.getquote()))
377 quote = False
380 if quote:
382 quote = False
390 quote = True
398 """Get a quote-delimited fragment from self's field."""
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pipes.py 235 cmd = 'OUT=' + quote(outf) + '; ' + cmd
237 cmd = 'IN=' + quote(inf) + '; ' + cmd
239 cmd = cmd + ' <' + quote(inf)
241 cmd = cmd + ' >' + quote(outf)
257 rmcmd = rmcmd + ' ' + quote(file)
258 trapcmd = 'trap ' + quote(rmcmd + '; exit') + ' 1 2 3 13 14 15'
264 # Reliably quote a string as a single argument for /bin/sh
269 def quote(file): function
  /external/guice/extensions/jmx/src/com/google/inject/tools/jmx/
Manager.java 62 name.append("type=").append(quote(key.getTypeLiteral().toString()));
65 name.append(",annotation=").append(quote(annotation.toString())); method
71 .append(quote("@" + annotationType.getName()));
88 static String quote(String value) { method in class:Manager
90 return ObjectName.quote(value).replace(',', ';');
  /external/icu/android_icu4j/src/main/java/android/icu/impl/data/
TokenIterator.java 105 * quote must match the opening quote. If a '#' is encountered,
120 char quote = 0; local
124 quote = c;
148 } else if ((quote != 0 && c == quote) ||
149 (quote == 0 && PatternProps.isWhiteSpace(c))) {
151 } else if (quote == 0 && c == '#') {
158 if (quote != 0) {
159 throw new RuntimeException("Unterminated quote at "
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
TokenIterator.java 103 * quote must match the opening quote. If a '#' is encountered,
118 char quote = 0; local
122 quote = c;
146 } else if ((quote != 0 && c == quote) ||
147 (quote == 0 && PatternProps.isWhiteSpace(c))) {
149 } else if (quote == 0 && c == '#') {
156 if (quote != 0) {
157 throw new RuntimeException("Unterminated quote at "
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
CommandLineSupport.java 23 private static final char QUOTE = '"';
33 static String quote(final String arg) { method in class:CommandLineSupport
36 if (c == QUOTE || c == SLASH) {
41 if (arg.indexOf(BLANK) != -1 || arg.indexOf(QUOTE) != -1) {
42 escaped.insert(0, QUOTE).append(QUOTE);
55 static String quote(final List<String> args) { method in class:CommandLineSupport
62 result.append(quote(arg)); method
88 if (c == QUOTE) {
89 endChar = QUOTE;
    [all...]
  /external/llvm/tools/llvm-symbolizer/
llvm-symbolizer.cpp 120 char quote = *pos; local
122 const char *end = strchr(pos, quote);
  /external/parameter-framework/upstream/utility/test/
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/python/cpython2/Lib/email/
quoprimime.py 42 'quote',
110 def quote(c):
228 c = quote(c)
244 prev = quote(prev)
109 def quote(c): function
  /external/python/cpython2/Lib/
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
  /external/python/cpython3/Lib/email/
quoprimime.py 38 'quote',
123 def quote(c): function
176 # quote speacial characters
209 q = quote(line[-1])
216 q = soft_break + quote(line[-1])
  /frameworks/base/core/tests/coretests/src/android/util/
LocalLogTest.java 84 String msg = String.format("%s did not contain %s", quote(got), quote(want));
103 static String quote(String s) { method in class:LocalLogTest
  /prebuilts/gdb/darwin-x86/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/gdb/darwin-x86/lib/python2.7/
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/gdb/linux-x86/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/gdb/linux-x86/lib/python2.7/
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/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/darwin-x86/2.7.5/lib/python2.7/
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/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/
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
  /system/core/libsysutils/src/
FrameworkListener.cpp 106 bool quote = false; local
141 if (quote)
142 quote = false;
144 quote = true;
152 if (!quote && *q == ' ') {
185 if (quote) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
capsule.c 272 const char *quote; local
275 quote = "\"";
278 quote = "";
283 quote, name, quote, capsule);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
capsule.c 272 const char *quote; local
275 quote = "\"";
278 quote = "";
283 quote, name, quote, capsule);

Completed in 658 milliseconds

12 3 4 5 6 7 8 91011>>