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

1 2 34 5 6 7 8 91011>>

  /external/bison/src/
scan-code.l 40 #include <quote.h>
522 quote (text));
611 quote (text));
649 quote (text));
664 quote (text));
762 quote (effective_rule->content.sym->tag));
765 quote (rule->content.sym->tag));
787 cp, quote (effective_rule->content.sym->tag));
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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
confirmdiff.py 55 url = "file://%s" % urllib.quote(pretty_diff_file.name)
  /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/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/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/v8/src/
prettyprinter.cc 265 const bool quote = false; local
266 PrintLiteral(node->variable()->name(), quote);
574 void PrettyPrinter::PrintLiteral(Handle<Object> value, bool quote) {
578 if (quote) Print("\"");
582 if (quote) Print("\"");
612 void PrettyPrinter::PrintLiteral(const AstRawString* value, bool quote) {
613 PrintLiteral(value->string(), quote);
688 bool quote) {
691 PrintLiteral(value, quote);
  /dalvik/dx/src/com/android/multidex/
Path.java 56 for (String filePath : definition.split(Pattern.quote(File.pathSeparator))) {
  /external/chromium_org/build/android/buildbot/
bb_utils.py 36 return ' '.join(map(pipes.quote, command))
  /external/chromium_org/native_client_sdk/src/tools/
genhttpfs.py 74 name = urllib.quote(relname)
  /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

Completed in 934 milliseconds

1 2 34 5 6 7 8 91011>>