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

1 2 3 4 56 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
BinaryDictionaryUtils.java 84 Pattern.quote(dictName), Matcher.quoteReplacement(newDictName));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_rfc822.py 248 eq(rfc822.quote('foo\\wacky"name'), 'foo\\\\wacky\\"name')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_rfc822.py 248 eq(rfc822.quote('foo\\wacky"name'), 'foo\\\\wacky\\"name')
  /external/bison/src/
scan-code.c 691 #include <quote.h>
    [all...]
scan-gram.c     [all...]
  /external/chromium_org/build/android/buildbot/
bb_run_bot.py 42 diff.append('- %s=%s' % (key, pipes.quote(d1[key])))
44 diff.append('+ %s=%s' % (key, pipes.quote(d2[key])))
bb_device_status_check.py 171 (urllib.quote('Device Offline'),
172 urllib.quote('Buildbot: %s %s\n'
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 21 import static java.util.regex.Pattern.quote;
498 String firstLine = quote(e.getClass().getName() + ": " + e.getMessage());
  /frameworks/base/core/java/android/util/
JsonReader.java 652 int quote = nextNonWhitespace(); local
653 switch (quote) {
657 name = nextString((char) quote);
870 * Returns the string up to but not including {@code quote}, unescaping any
871 * character escape sequences encountered along the way. The opening quote
872 * should have already been read. This consumes the closing quote, but does
875 * @param quote either ' or ".
879 private String nextString(char quote) throws IOException {
887 if (c == quote) {
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
copy-acl.c 543 error (0, errno, "%s", quote (src_name));
547 error (0, errno, _("preserving permissions for %s"), quote (dst_name));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
full_lambda.hpp 25 # include <boost/mpl/quote.hpp>
272 BOOST_PP_CAT(quote,i_)<F,Tag>
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 663 int quote = peekCharacter(); local
665 if (quote == '"') {
667 } else if (quote == '\'') {
916 int quote = peekCharacter(); local
918 if (quote == '"' || quote == '\'') {
920 entityValue = readValue((char) quote, true, false, ValueContext.ENTITY_DECLARATION);
921 if (peekCharacter() == quote) {
    [all...]
  /external/chromium_org/v8/test/webkit/resources/
json2-es5-compat.js 204 function quote(string) { function
206 // 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/blktrace/btreplay/doc/
btreplay.tex 189 \begin{quote}
193 \end{quote}
197 \begin{quote}
202 \end{quote}
206 \begin{quote}
212 \end{quote}
217 \begin{quote}
232 \begin{quote}
236 \end{quote}
237 \end{quote}
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rfc822.py 468 # XXX Should fix unquote() and quote() to be really conformant.
482 def quote(s): function
696 quote = 0
699 if quote == 1:
701 quote = 0
709 quote = 1
717 """Get a quote-delimited fragment from self's field."""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rfc822.py 468 # XXX Should fix unquote() and quote() to be really conformant.
482 def quote(s): function
696 quote = 0
699 if quote == 1:
701 quote = 0
709 quote = 1
717 """Get a quote-delimited fragment from self's field."""
    [all...]
  /external/chromium_org/third_party/markdown/
blockprocessors.py 68 parser.blockprocessors['quote'] = BlockQuoteProcessor(parser)
308 quote = sibling
311 quote = util.etree.SubElement(parent, 'blockquote')
315 self.parser.parseChunk(quote, block)
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 714 final char quote = currentToken.length() > 0 ? currentToken.charAt(0) local
716 if (quote != '\"' && quote != '\'') {
721 currentToken.charAt(currentToken.length() - 1) != quote) {
722 throw parseException("String missing ending quote.");
    [all...]
  /external/smack/src/org/xbill/DNS/
Record.java 401 byteArrayToString(byte [] array, boolean quote) {
403 if (quote)
416 if (quote)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
message.py 39 def _formatparam(param, value=None, quote=True):
42 This will quote the value if needed or if quote is true. If value is a
54 # BAW: Please check this. I think that if quote is set it should
56 if quote or tspecials.search(value):
57 return '%s="%s"' % (param, utils.quote(value))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
message.py 39 def _formatparam(param, value=None, quote=True):
42 This will quote the value if needed or if quote is true. If value is a
54 # BAW: Please check this. I think that if quote is set it should
56 if quote or tspecials.search(value):
57 return '%s="%s"' % (param, utils.quote(value))
  /external/chromium_org/chrome/browser/extensions/api/web_request/
form_data_parser.cc 212 // inside |literal|. Those must be excluded from the quote and the backslash
404 static const char quote[] = "\\Q"; local
416 // Find all "\\E" in |literal| and exclude them from the \Q...\E quote.
421 result.append(quote);
425 // Finish the last \Q...\E quote.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
SearchConfig.js 68 var quotedPattern = "\"(([^\\\\\"]|\\\\.)+)\""; // Inside double quotes: any symbol except double quote and backslash or any symbol escaped with a backslash.
  /external/chromium_org/v8/tools/
csvparser.js 44 * A regex for matching a double quote.
  /external/clang/utils/
FuzzTest 98 def quote(str): function
106 'inputs' : ' '.join(quote(f) for f in input_files) }

Completed in 1331 milliseconds

1 2 3 4 56 7 8 91011>>