/external/chromium_org/tools/json_comment_eater/ |
everything_expected.json | 9 "escaped\"": "string\"isescaped",
|
everything.json | 9 "escaped\"": "string\"isescaped",
|
/external/llvm/test/YAMLParser/ |
spec-09-02.data | 11 escaped \
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
X500NameTokenizer.java | 45 boolean escaped = false; 55 if (!escaped) 60 escaped = false; 64 if (escaped || quoted) 67 escaped = false; 72 escaped = true;
|
/external/chromium_org/ui/gfx/ |
text_utils.cc | 15 bool escaped = false; local 27 if (c != accelerator_char || escaped) { 29 if (escaped && c != accelerator_char) { 35 escaped = false; 37 escaped = true;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
X509NameTokenizer.java | 46 boolean escaped = false; 56 if (!escaped) 61 escaped = false; 65 if (escaped || quoted) 68 escaped = false; 73 escaped = true;
|
/bionic/libc/dns/nameser/ |
ns_samedomain.c | 57 int diff, escaped; local 65 escaped = 0; 69 if (escaped) 70 escaped = 0; 72 escaped = 1; 75 if (!escaped) 81 escaped = 0; 85 if (escaped) 86 escaped = 0; 88 escaped = 1 [all...] |
/external/clang/test/Lexer/ |
block_cmt_end.c | 14 next comment ends with normal escaped newline: 17 /* expected-warning {{escaped newline}} expected-warning {{backslash and newline}} *\ 24 next comment ends with a trigraph escaped newline: */ 26 /* expected-warning {{escaped newline between}} expected-warning {{backslash and newline separated by space}} expected-warning {{trigraph ends block comment}} *??/
|
/external/markdown/tests/safe_mode/ |
script_tags.txt | 1 This should be stripped/escaped in safe_mode.
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
MoreKeySpecSplitTests.java | 159 assertTextArray("Escaped char", "\\a", "\\a"); 160 assertTextArray("Escaped surrogate pair", "\\" + PAIR1, "\\" + PAIR1); 161 assertTextArray("Escaped comma", "\\,", "\\,"); 162 assertTextArray("Escaped comma escape", "a\\,\\", "a\\,\\"); 163 assertTextArray("Escaped escape", "\\\\", "\\\\"); 164 assertTextArray("Escaped label", "a\\bc", "a\\bc"); 165 assertTextArray("Escaped surrogate", "a\\" + PAIR1 + "c", "a\\" + PAIR1 + "c"); 166 assertTextArray("Escaped label at beginning", "\\abc", "\\abc"); 167 assertTextArray("Escaped surrogate at beginning", "\\" + SURROGATE2, "\\" + SURROGATE2); 168 assertTextArray("Escaped label at end", "abc\\", "abc\\") [all...] |
KeySpecParserTestsBase.java | 90 assertParser("Single escaped vertical bar", "\\|", 92 assertParser("Single escaped escape", "\\\\", 96 assertParser("Single escaped comma", "\\,", 98 assertParser("Single escaped letter", "\\a", 100 assertParser("Single escaped surrogate", "\\" + SURROGATE_PAIR2, 104 assertParser("Single escaped bang", "\\!", 116 assertParser("Single letter with escaped outputText", "a|a\\|c", 118 assertParser("Single letter with escaped surrogate outputText", 123 assertParser("Single letter with escaped comma outputText", "a|a\\,b", 132 assertParser("Single letter with escaped bang outputText", "a|\\!bc" [all...] |
/external/chromium_org/tools/gn/ |
escape_unittest.cc | 35 // Backslashes at the end of the string get escaped. 38 // Backslashes preceeding quotes are escaped, and the quote is escaped. 47 // : and $ ninja escaped with $. Then Shell-escape backslashes and quotes. 58 // Only $ is escaped.
|
/external/chromium_org/third_party/re2/re2/testing/ |
exhaustive2_test.cc | 22 // Test escaped versions of regexp syntax. 25 vector<string> escaped = alphabet; local 26 for (int i = 0; i < escaped.size(); i++) 27 escaped[i] = "\\" + escaped[i]; 28 ExhaustiveTest(1, 1, escaped, RegexpGenerator::EgrepOps(),
|
/external/openssl/crypto/asn1/ |
charmap.pl | 14 my $RFC2253_ESC = 1; # Character escaped with \ 15 my $ESC_CTRL = 2; # Escaped control character 17 my $NOESC_QUOTE = 8; # Not escaped if quoted 19 my $RFC2253_FIRST_ESC = 0x20; # Escaped with \ if first character 20 my $RFC2253_LAST_ESC = 0x40; # Escaped with \ if last character 39 # Remaining RFC2253 escaped characters
|
/external/regex-re2/re2/testing/ |
exhaustive2_test.cc | 22 // Test escaped versions of regexp syntax. 25 vector<string> escaped = alphabet; local 26 for (int i = 0; i < escaped.size(); i++) 27 escaped[i] = "\\" + escaped[i]; 28 ExhaustiveTest(1, 1, escaped, RegexpGenerator::EgrepOps(),
|
/external/chromium_org/chrome/common/local_discovery/ |
service_discovery_client.cc | 17 // parse escaped domains. 24 // parse escaped domains.
|
/external/proguard/bin/ |
proguard.sh | 7 # you'll have to add escaped quotes around them, e.g.
|
retrace.sh | 7 # you'll have to add escaped quotes around them, e.g.
|
/prebuilts/tools/common/proguard/proguard4.7/bin/ |
proguard.sh | 7 # you'll have to add escaped quotes around them, e.g.
|
retrace.sh | 7 # you'll have to add escaped quotes around them, e.g.
|
/external/chromium_org/base/json/ |
string_escape_unittest.cc | 16 const char* escaped; member in struct:base::__anon6929 32 EXPECT_EQ(std::string(cases[i].escaped), out); 37 EXPECT_EQ(std::string(cases[i].escaped), out); 42 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", fooout); 64 expected += cases[0].escaped; 74 const char* escaped; member in struct:base::__anon6930 89 EXPECT_EQ(std::string(cases[i].escaped), out); 93 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", out); 114 expected += cases[0].escaped; 159 const char* escaped; member in struct:base::__anon6931 [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
shell.js | 86 var next, end = false, escaped = false; 88 if (next === quote && !escaped) { 92 if (next === '$' && !escaped && quote !== '\'') { 93 escaped = true; 98 escaped = !escaped && next === '\\'; 100 if (end || !escaped) {
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
UnicodeEscaper.java | 60 * Returns the escaped form of the given Unicode code point, or {@code null} 61 * if this code point does not need to be escaped. When called as part of an 68 * <p>If the character does not need to be escaped, this method should return 92 * supplementary range are either all escaped or all unescaped, this method 121 * Returns the escaped form of a given literal string. 128 * calling this method or use an escaped {@link Appendable} (as returned by 137 * @param string the literal string to be escaped 138 * @return the escaped form of {@code string} 152 * Returns the escaped form of a given literal string, starting at the given 161 * @param s the literal string to be escaped 185 char[] escaped = escape(cp); local 314 char[] escaped = escape(c); local 335 char[] escaped = escape( local [all...] |
CharEscaper.java | 44 * Returns the escaped form of a given literal string. 46 * @param string the literal string to be escaped 47 * @return the escaped form of {@code string} 77 * @param out the underlying {@code Appendable} to append escaped output to 96 char[] escaped = escape(c); local 97 if (escaped == null) { 100 for (char e : escaped) { 110 * Returns the escaped form of a given literal string, starting at the given index. This method is 115 * @param s the literal string to be escaped 117 * @return the escaped form of {@code string [all...] |
/external/chromium_org/google_apis/ |
google_api_keys.h | 65 // Note that the key should be escaped for the context you use it in, 66 // e.g. URL-escaped if you use it in a URL. 82 // Note that the ID should be escaped for the context you use it in, 83 // e.g. URL-escaped if you use it in a URL. 89 // Note that the secret should be escaped for the context you use it 90 // in, e.g. URL-escaped if you use it in a URL.
|