HomeSort by relevance Sort by last modified time
    Searched refs:quote (Results 76 - 100 of 391) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/code_coverage/
croc_scan_test.py 96 '\'\'\'multi-line string, single-quote', # 9 exe
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
macurl2path.py 76 component = urllib.quote(component[:31], safe='') # We want to quote slashes
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macurl2path.py 76 component = urllib.quote(component[:31], safe='') # We want to quote slashes
  /external/bison/src/
files.c 27 #include <quote.h>
355 quote (*file_name));
365 quote (*file_name));
reader.c 24 #include <quote.h>
137 quote (merge_function->name), type,
209 quote (sym->tag));
scan-gram.l 41 #include <quote.h>
222 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
250 complain_at (*loc, _("invalid identifier: %s"), quote (yytext));
355 quote (yytext));
442 | The initial quote is already eaten. |
468 | The initial quote is already eaten. |
568 /* Quote only if escaping won't make the character visible. */
570 p = quote (p);
783 complain_at (loc, _("integer out of range: %s"), quote (number));
885 token_end = quote (token_end)
    [all...]
main.c 47 #include <quote.h>
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONObject.java 72 * quote)</small>.</li>
73 * <li>Strings do not need to be quoted at all if they do not begin with a quote
74 * or single quote, and if they do not contain leading or trailing spaces,
516 throw new JSONException("JSONObject[" + quote(key) +
542 throw new JSONException("JSONObject[" + quote(key) +
561 throw new JSONException("JSONObject[" + quote(key) +
596 throw new JSONException("JSONObject[" + quote(key) +
614 throw new JSONException("JSONObject[" + quote(key) +
1128 public static String quote(String string) { method in class:JSONObject
1334 sb.append(quote(o.toString())); method
1388 sb.append(quote(o.toString())); method
1403 sb.append(quote(o.toString())); method
1551 writer.write(quote(k.toString())); method
    [all...]
JSONWriter.java 211 this.writer.write(JSONObject.quote(s));
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
help2man 528 my $quote = /\W/ ? '"' : '';
529 print ".SH $quote$_$quote\n";
  /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
  /external/mksh/src/
eval.c 202 uint8_t quotep; /* saved value of quote (for ${..[%#]..}) */
203 uint8_t quotew; /* saved value of quote (for ${..[+-=]..}) */
219 int quote = 0; local
287 /* temporary quote */
288 quote |= 2;
294 quote = 1;
297 quote = st->quotew;
410 st->quotew = st->quotep = quote;
643 st->quotew = quote = 0;
701 quote = st->quotep
    [all...]
  /external/lldb/source/DataFormatters/
CXXFormatterFunctions.cpp 184 char quote = '"',
189 if (quote != 0)
190 stream.Printf("%c",quote);
245 if (quote != 0)
246 stream.Printf("%c",quote);
922 char quote = '"')
946 dest.Printf("%c%c",prefix_token,quote);
951 dest.Printf("%c",quote);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AidlProcessor.java 110 commandList.add(quote("-p" + projectTarget.getPath(IAndroidTarget.ANDROID_AIDL))); //$NON-NLS-1$
118 commandList.add(quote("-I" + f.getLocation().toOSString())); //$NON-NLS-1$
126 commandList.add(quote("-I" + aidlFile.getAbsolutePath())); //$NON-NLS-1$
185 commands[index] = quote(osSourcePath);
186 commands[index + 1] = quote(data.getOutput().getLocation().toOSString());
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java 91 * <tr> <td>{@code ''}</td> <td>single quote</td> <td>(Literal)</td> <td>{@code 'o''clock'}:o'clock</td> </tr>
264 boolean quote = false;
280 quote = !quote;
283 if (!quote
306 if (quote) {
307 throw new IllegalArgumentException("Unterminated quote");
516 boolean quote = false;
538 quote = !quote;
    [all...]
  /external/libvorbis/doc/
05-comment.tex 21 \begin{quote}
24 \end{quote}
70 \begin{quote}
75 \end{quote}
183 \begin{quote}
189 \end{quote}
  /external/chromium_org/build/android/buildbot/
bb_utils.py 36 return ' '.join(map(pipes.quote, command))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/
buildbot.py 86 return urllib.quote(self._name)
198 return "%s/%s" % (self._builder.results_url(), urllib.quote(results_directory))
289 json_url = "%s/json/builders/%s/builds/%s?filter=1" % (self.buildbot_url, urllib.quote(builder.name()), build_number)
360 builder_page_url = "%s/builders/%s?numbuilds=100" % (self.buildbot_url, urllib2.quote(builder.name()))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
path.py 112 # FIXME: web browsers don't appear to blindly quote every character
116 return urllib.quote(path, safe='/+:')
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 267 quote = '"'
269 quote = ''
271 encoded = quote + re.sub(_escape, r'\\\1', argument) + quote
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-test.py 22 r += urllib.quote(chr(c))
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/
EncoderUtil.java 132 return quote(displayName);
154 return quote(localPart);
176 return name + "=" + quote(value);
500 private static String quote(String str) { method in class:EncoderUtil
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 620 int quote = nextNonWhitespace(); local
621 switch (quote) {
625 name = nextString((char) quote);
798 * Returns the string up to but not including {@code quote}, unescaping any
799 * character escape sequences encountered along the way. The opening quote
800 * should have already been read. This consumes the closing quote, but does
803 * @param quote either ' or ".
807 private String nextString(char quote) throws IOException {
815 if (c == quote) {
    [all...]
  /external/chromium_org/tools/valgrind/
scan-build.py 98 self._waterfall._root_url, urllib.quote(self._name), build_num)
158 assert builder == urllib.quote(last_builder)

Completed in 1209 milliseconds

1 2 34 5 6 7 8 91011>>