HomeSort by relevance Sort by last modified time
    Searched refs:escaped (Results 51 - 75 of 202) sorted by null

1 23 4 5 6 7 8 9

  /external/iptables/iptables/
ip6tables-restore.c 119 int quote_open = 0, escaped = 0, param_len = 0; local
128 if (escaped) {
130 escaped = 0;
133 escaped = 1;
iptables-restore.c 118 int quote_open = 0, escaped = 0, param_len = 0; local
127 if (escaped) {
129 escaped = 0;
132 escaped = 1;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-ssa-alias.h 38 /* Nonzero if the points-to set includes the local escaped solution by
40 unsigned int escaped : 1;
42 /* Nonzero if the points-to set includes the IPA escaped solution by
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SegmentedString.cpp 88 ASSERT(!escaped());
142 ASSERT(!escaped());
143 ASSERT(!s.escaped());
  /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)
  /bionic/libc/dns/nameser/
ns_name.c 229 int c, n, escaped, e = 0; local
232 escaped = 0;
238 if (escaped) {
250 escaped = 0;
280 escaped = 0;
282 escaped = 1;
  /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...]
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
MoreKeysResources.java 215 final String escaped = escapeNonAscii(res.mValue); local
216 if (escaped.length() == 0) {
219 formatter.outElement(String.format("\"%s\",", escaped));
  /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/chromium_org/v8/test/webkit/fast/regex/
toString.js 54 // This string passes "^\/$" to the RegExp, so the '/' is escaped in the re!
59 // These strings match two backslashes (the second with the '/' escaped).
  /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/tools/gn/
ninja_build_writer.cc 259 std::string escaped = EscapeString(phony_name, ninja_escape, NULL); local
261 out_ << "build " << escaped << ": phony "; local
  /external/linux-tools-perf/perf-3.12.0/tools/perf/config/
utilities.mak 20 # Usage: escaped-text = $(call escape-nl,text[,escape])
36 # Usage: text = $(call unescape-nl,escaped-text[,escape])
90 # Usage: single-quoted-and-escaped-text = $(call shell-sq,text)
120 # processes the resulting escaped text, it transforms
  /external/smack/src/org/xbill/DNS/
Name.java 221 boolean escaped = false;
227 if (escaped) {
244 escaped = false;
246 escaped = true;
266 if (escaped)
Record.java 340 boolean escaped = false;
362 if (escaped) {
377 escaped = false;
380 escaped = true;
  /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...]
  /external/chromium_org/third_party/icu/source/test/intltest/
dtfmtrtts.cpp 79 UnicodeString escaped; local
80 escape(str,escaped);
81 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status) + ", str=" + escaped);
  /external/icu/icu4c/source/test/intltest/
dtfmtrtts.cpp 77 UnicodeString escaped; local
78 escape(str,escaped);
79 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status) + ", str=" + escaped);
  /external/smack/src/org/jivesoftware/smack/util/
StringUtils.java 401 * be escaped to "Joe\20Smith" before being made into a JID (e.g. "joe\20smith@example.com"
408 * @return the escaped version of the node.
462 * be escaped to "Joe\20Smith" before being made into a JID (e.g. "joe\20smith@example.com"
468 * @param node the escaped version of the node.
469 * @return the un-escaped version of the node.
525 * @return the string with appropriate characters escaped.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
util.py 255 spaces are not escaped by a backslash, or inside a quoted string.
257 be backslash-escaped. The backslash is stripped from any two-character
258 escape sequence, leaving only the escaped character. The quote
284 elif s[end] == '\\': # preserve whatever is being escaped;
494 """Return a version of the string escaped for inclusion in an
filelist.py 300 # any OS. So change all non-escaped dots in the RE to match any
307 escaped = r'\1[^%s]' % sep
308 pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', escaped, pattern_re)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
util.py 255 spaces are not escaped by a backslash, or inside a quoted string.
257 be backslash-escaped. The backslash is stripped from any two-character
258 escape sequence, leaving only the escaped character. The quote
284 elif s[end] == '\\': # preserve whatever is being escaped;
494 """Return a version of the string escaped for inclusion in an
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Message.java 618 private static String[] unescapeAddresses(String[] escaped) {
619 final String[] unescaped = new String[escaped.length];
620 for (int i = 0; i < escaped.length; i++) {
621 final String escapeMore = escaped[i].replace("<", "&lt;").replace(">", "&gt;");
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
cmake.py 129 The following do not need to be escaped
133 '$' generator variables (like ${obj}) must not be escaped,
134 but text $ should be escaped
    [all...]

Completed in 1557 milliseconds

1 23 4 5 6 7 8 9