HomeSort by relevance Sort by last modified time
    Searched full:escaped (Results 276 - 300 of 1175) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_error.h 69 * The expression contained an invalid escaped character, or a trailing
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
regex_error.h 74 * The expression contained an invalid escaped character, or a trailing
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex_error.h 73 * The expression contained an invalid escaped character, or a trailing
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
AdtUtilsTest.java 124 assertEquals("\\\\u25C0", AdtUtils.replaceUnicodeEscapes("\\\\u25C0")); // escaped
  /external/chromium_org/content/common/
database_identifier_unittest.cc 202 {"http_escaped%3Dfun.com_0", "http", "escaped%3dfun.com", 0,
203 GURL("http://escaped%3dfun.com"), false},
  /external/chromium_org/extensions/browser/
file_highlighter.cc 22 // over any escaped quotes. If no next quote is found, |index| is set to
29 i += 2; // if we find an escaped character, skip it.
  /external/chromium_org/net/http/
http_util.cc 485 std::string escaped; local
486 escaped.reserve(2 + str.size());
493 escaped.push_back('"');
497 escaped.push_back('\\');
498 escaped.push_back(c);
500 escaped.push_back('"');
501 return escaped;
907 // * Does not detect when the final quote is escaped
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Data.java 264 * value is not escaped. {@code EscapeMode.ESCAPE_IS_CONSTANT} if value is a string or
275 * explicitly called if populating the HDF with pre-escaped or trusted values.
  /external/jsmn/
jsmn.c 119 /* Allowed escaped symbols */
123 /* Allows escaped symbol \uXXXX */
  /external/markdown/docs/
using_as_module.txt 104 that the user's HTML tags are either replaced, removed or escaped. (They can
122 * To escape HTML, set ``safe_mode="escape"``. The HTML will be escaped and
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java 86 // Two source ids, of them escaped
205 // Escaped source ID
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep292.py 103 (?P<escaped>@{2}) |
119 (?P<escaped>@{2}) |
test_strptime.py 131 # regex syntax is escaped.
134 "%s does not have re characters escaped properly" %
179 # escaped properly.
188 " properly escaped")
373 # Make sure all characters that have regex significance are escaped.
376 # escaped.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep292.py 103 (?P<escaped>@{2}) |
119 (?P<escaped>@{2}) |
test_strptime.py 131 # regex syntax is escaped.
134 "%s does not have re characters escaped properly" %
179 # escaped properly.
188 " properly escaped")
373 # Make sure all characters that have regex significance are escaped.
376 # escaped.
  /frameworks/base/core/java/android/net/
UrlQuerySanitizer.java 763 * Parse an escaped parameter-value pair. The default implementation
768 * @param parameter an escaped parameter
769 * @param value an unsanitzied escaped value
829 * Unescape an escaped string.
837 * @param string the escaped string
841 // Early exit if no escaped characters.
  /external/chromium_org/url/
url_canon_unittest.cc 165 // Valid canonical input should get passed through & escaped.
246 // Don't re-escape something already escaped. Note that it will
303 // Spaces and some other characters should be escaped.
315 // escaped UTF-8 (the invalid character should be replaced with the
318 // ...This is the same as previous but with with escaped.
323 // Test that fullwidth escaped values are properly name-prepped,
325 // ...%41 in fullwidth = 'A' (also as escaped UTF-8 input)
328 // ...%00 in fullwidth should fail (also as escaped UTF-8 input)
442 // Mixed UTF-8 and escaped UTF-8 (narrow case) and UTF-16 and escaped
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 610 // Returns true iff the given atom (specified by escaped and pattern)
612 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
613 if (escaped) { // "\\p" where p is pattern_char.
698 // expression. The regex atom is defined as c if escaped is false,
705 bool escaped, char c, char repeat, const char* regex,
722 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
741 const bool escaped = *regex == '\\'; local
742 if (escaped)
749 escaped, regex[0], regex[1], regex + 2, str);
754 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-printers_test.cc 405 // Tests that C strings are escaped properly.
440 // Tests that wide C strings are escaped properly.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
cppinternals.info 102 an initial pass to strip out trigraphs and escaped newlines, but handles
209 sequences of escaped newlines, deferring to `handle_newline' to handle
213 trigraphs and backlash-escaped newlines. Trigraphs are processed before
216 is possible for the trigraph `??/' to introduce an escaped newline.
218 Escaped newlines are tedious because theoretically they can occur
227 introducing an escaped newline, or the `?' introducing the trigraph
228 sequence that represents the `\' of an escaped newline. If it
230 any potential escaped newlines before checking whether the number has
235 `+=' token; it needs to be prepared for an escaped newline of some
237 the first character after any intervening escaped newlines
    [all...]
  /external/chromium_org/net/base/
escape_unittest.cc 94 // Spaces are plus escaped like web forms.
109 // Most of the character space we care about, un-escaped
115 // Escaped
134 // Most of the character space we care about, un-escaped
140 // Escaped
  /external/chromium_org/tools/grit/grit/
util.py 190 # Matches characters that should be HTML-escaped. This is <, > and &, but only
226 '''Returns 'text' with <, > and & (and optionally ") escaped to named HTML
248 The only exception is that &nbsp; will not be escaped if 'replace_nbsp' is
272 '''Returns the provided cdata in either escaped format or <![CDATA[xxx]]>
274 is escaped for inclusion in an XML element's body.
  /external/clang/lib/AST/
CommentLexer.cpp 231 /// Handles newlines escaped with backslash or trigraph for backslahs.
240 // We found a newline, check if it is escaped.
248 // We found an escaped newline.
251 return CurPtr; // Not an escaped newline.
257 /// Very dumb, does not handle escaped newlines or trigraphs.
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 213 protected String escaped() throws ParseException { method in class:URLParser
215 dbg_enter("escaped");
229 throw createParseException("escaped");
233 dbg_leave("escaped");
728 retval.append(escaped()); method
  /external/smack/src/org/xbill/DNS/
Name.java 221 boolean escaped = false;
227 if (escaped) {
244 escaped = false;
246 escaped = true;
266 if (escaped)

Completed in 958 milliseconds

<<11121314151617181920>>