HomeSort by relevance Sort by last modified time
    Searched full:escaped (Results 201 - 225 of 1174) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/v8/test/webkit/fast/js/
regexp-ranges-and-escaped-hyphens.js 52 // Similar to the above tests, but where the hyphen is escaped this is never a range.
67 // Test that an escaped hyphen can be used as a bound on a range.
  /external/harfbuzz_ng/test/api/
test-buffer.c 381 char *escaped; local
383 escaped = g_strescape (test->utf8, NULL);
384 g_test_message ("UTF-8 test #%d: %s", i, escaped);
385 g_free (escaped);
666 char *escaped; local
668 escaped = g_strescape (test->utf8, NULL);
669 g_test_message ("UTF-8 test #%d: %s", i, escaped);
670 g_free (escaped);
  /external/llvm/lib/Transforms/Scalar/
Reg2Mem.cpp 90 // Find the escaped instructions. But don't create stack slots for
103 // Demote escaped instructions
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
FixASCIIControlsReader.java 108 * Processes numeric escaped chars to find out if they are a control character.
110 * @return Returns the char directly or as replacement for the escaped sequence.
  /external/chromium_org/testing/gtest/test/
gtest-printers_test.cc 404 // Tests that C strings are escaped properly.
441 // Tests that wide C strings are escaped properly.
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-printers_test.cc 409 // Tests that C strings are escaped properly.
446 // Tests that wide C strings are escaped properly.
    [all...]
  /external/chromium_org/base/json/
json_value_serializer_unittest.cc 272 // unicode string json -> escaped ascii text
284 // escaped ascii text -> json
296 // hex string json -> escaped ascii text
308 // escaped ascii text -> json
318 // Test converting escaped regular chars
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
clike.js 63 var escaped = false, next, end = false;
65 if (next == quote && !escaped) {end = true; break;}
66 escaped = !escaped && next == "\\";
68 if (end || !(escaped || multiLineStrings))
javascript.js 64 var escaped = false, next;
66 if (next == end && !escaped)
68 escaped = !escaped && next == "\\";
70 return escaped;
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckerDocumentation.cpp 266 /// \param Escaped The list of escaped symbols.
269 /// \param Kind How the symbols have escaped.
272 const InvalidatedSymbols &Escaped,
283 const InvalidatedSymbols &Escaped,
  /external/chromium_org/net/http/
http_util.cc 35 // escaped char (the char following a '\\')
42 // Hit a backslash-escaped char. Need to skip over it.
486 std::string escaped;
487 escaped.reserve(2 + str.size());
494 escaped.push_back('"');
498 escaped.push_back('\\');
499 escaped.push_back(c);
501 escaped.push_back('"');
502 return escaped;
907 // * Does not detect when the final quote is escaped
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 257 /// after trigraph expansion and escaped-newline folding. In particular, this
281 /// includes a trigraph or an escaped newline) then this count includes bytes
302 /// character within the token. This handles trigraphs and escaped newlines.
431 // If this is not a trigraph and not a UCN or escaped newline, return
506 // If this is not a trigraph and not a UCN or escaped newline, return
537 // If this is not a trigraph and not a UCN or escaped newline, return
552 /// getEscapedNewLineSize - Return the size of the specified escaped newline,
553 /// or 0 if it is not an escaped newline. P[-1] is known to be a "\" on entry
557 /// SkipEscapedNewLines - If P points to an escaped newline (or a series of
558 /// them), skip over them and return the first non-escaped-newline found
    [all...]
Token.h 57 /// may be dirty (have trigraphs / escaped newlines).
77 NeedsCleaning = 0x08, // Contained an escaped newline or trigraph.
250 /// \brief Return true if this token has trigraphs or escaped newlines in it.
  /external/clang/lib/Lex/
Lexer.cpp 215 /// ""'s, and with escaped \ and " characters.
296 /// after trigraph expansion and escaped-newline folding. In particular, this
337 /// after trigraph expansion and escaped-newline folding. In particular, this
418 /// includes a trigraph or an escaped newline) then this count includes bytes
739 // If we have a character that may be a trigraph or escaped newline, use a
748 // Final detail: if we end up on an escaped newline, we want to return the
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java 698 boolean escaped = false;
703 // if it's an escaped hash string and not an actual encoding in string form
704 // we need to leave it escaped.
728 if (!escaped)
736 escaped = false;
738 else if (c == '\\' && !(escaped || quoted))
740 escaped = true;
745 if (c == ' ' && !escaped && !nonWhiteSpaceEncountered)
750 escaped = false;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 463 Have special meaning in URIs and must be escaped if not being used for
466 Unreserved and do not need to be escaped; can be, though, if desired
468 Have no use in URIs so must be escaped
470 Must be escaped
472 Must be escaped
474 Must be escaped
516 "using quote(): %s should be escaped to %s, not %s" %
584 "using quote(): not all characters escaped; %s" %
588 "using unquote(): not all characters escaped: "
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 463 Have special meaning in URIs and must be escaped if not being used for
466 Unreserved and do not need to be escaped; can be, though, if desired
468 Have no use in URIs so must be escaped
470 Must be escaped
472 Must be escaped
474 Must be escaped
516 "using quote(): %s should be escaped to %s, not %s" %
584 "using quote(): not all characters escaped; %s" %
588 "using unquote(): not all characters escaped: "
    [all...]
  /external/chromium_org/chrome/browser/history/
in_memory_url_index_types.h 43 // substrings that were originally escaped for navigation; for
44 // example, if the user searched for "a&p", the query would be escaped
47 // may not be directly navigable (which is why we escaped it to begin
  /external/chromium_org/remoting/tools/
zip2msi.py 124 So that the Win32 CommandLineToArgv function will turn the escaped result back
131 arg: the string to be escaped.
133 the escaped string.
  /external/chromium_org/tools/grit/grit/gather/
rc_unittest.py 272 escaped = rc.Section.Escape(original)
273 self.failUnless(escaped == 'Hello ""bingo""\\n How\\\\are\\\\you\\\\n?')
274 unescaped = rc.Section.UnEscape(escaped)
  /external/chromium_org/v8/src/
uri.h 222 // my $escaped = 1;
223 // $escaped = 0 if $c =~ m#[A-Za-z0-9@*_+./-]#;
224 // print $escaped ? "0, " : "1, ";
  /external/clang/lib/Format/
FormatToken.h 123 /// \brief Returns actual token start location without leading escaped
126 /// This can be different to Tok.getLocation(), which includes leading escaped
135 /// escaped newlines.
  /external/jsilver/src/com/google/clearsilver/jsilver/
JSilverOptions.java 230 * Only used for templates that are being <a href="http://go/autoescapecs">auto escaped</a>. If
232 * call&gt; commands are not auto escaped if they are assigned constant or escaped values. This is
  /external/llvm/include/llvm/Analysis/
PtrUseVisitor.h 64 /// \brief Is the pointer escaped at some point?
84 /// \brief Mark the pointer as escaped. Intended for use in a void return.
91 /// \brief Mark the pointer as escaped, and the visit as aborted. Intended
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V30.java 195 * QSAFE-CHAR must not contain DQUOTE, including escaped one (\").
212 * QSAFE-CHAR must not contain DQUOTE, including escaped one (\")
343 * ESCAPED-CHAR = "\\" / "\;" / "\," / "\n" / "\N")

Completed in 1580 milliseconds

1 2 3 4 5 6 7 891011>>