/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.
|
/external/openssh/regress/ |
sftp-glob.sh | 61 sftp_ls "${DIR}/g-wild\*" "escaped glob" "g-wild*" "g-wildx" 62 sftp_ls "${DIR}/g-quote\\\"" "escaped quote" "g-quote\"" "" 65 sftp_ls "${DIR}/g-q\\ space" "escaped space" "g-q space" "" 67 sftp_ls "${DIR}/g-sl\\\\ash" "escaped slash" "g-sl\\ash" "" "$nobs" 69 sftp_ls "${DIR}/g-slash\\\\" "escaped slash at EOL" "g-slash\\" "" "$nobs" 71 sftp_ls "${DIR}/g-qs\\\\\\\"" "escaped slash+quote" "g-qs\\\"" "" "$nobs"
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-unicode-settings.py | 9 Also checks that ASCII control characters are escaped properly.
|
/external/eigen/cmake/ |
RegexUtils.cmake | 17 message("Error in the escape_string_for_regex function : \n ${test1} was escaped as ${test2}, should be ${testRef}")
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
KeySpecParserTests.java | 116 assertParser("Single escaped bar", "\\|", 118 assertParser("Single escaped escape", "\\\\", 122 assertParser("Single escaped comma", "\\,", 124 assertParser("Single escaped letter", "\\a", 126 assertParser("Single escaped surrogate", "\\" + PAIR2, 130 assertParser("Single escaped bang", "\\!", 142 assertParser("Single letter with escaped outputText", "a|a\\|c", 144 assertParser("Single letter with escaped surrogate outputText", 149 assertParser("Single letter with escaped comma outputText", "a|a\\,b", 157 assertParser("Single letter with escaped bang outputText", "a|\\!bc" [all...] |
/prebuilts/tools/common/proguard/proguard4.7/bin/ |
proguard.bat | 7 REM you'll have to add escaped quotes around them, e.g.
|
proguardgui.bat | 7 REM you'll have to add escaped quotes around them, e.g.
|
retrace.bat | 7 REM you'll have to add escaped quotes around them, e.g.
|
proguardgui.sh | 7 # you'll have to add escaped quotes around them, e.g.
|
/external/chromium_org/url/ |
url_canon_host.cc | 15 // + (allowed either escaped or unescaped, and unmodified) 16 // U (allowed escaped or unescaped but always unescaped if present in 17 // escaped form) 18 // E (allowed escaped or unescaped but always escaped if present in 20 // % (only allowed escaped in the input, will be unmodified). 35 // disallowed in the input, but they are all accepted escaped except for 0. 38 // Surprisingly, space is accepted in the input and always escaped. 42 // value to indicate that this character should be escaped. We are a little more 92 // the type holding them may be 16 bits. Escaped characters will be unescaped [all...] |
/external/markdown/MarkdownTest/Tests_2007/ |
Backslash escapes.text | 1 These should all get escaped: 107 These should get escaped, even though they're matching pairs for
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
escape | 38 # TEST 4: This one should fail, since the escape char is escaped. 51 # TEST 6: Test escaped comments
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
SimpleEscapingFunction.java | 26 * only decision you make is whether the current character should be escaped into some different 30 * escaped. This is because (for speed) we use an array of escaped strings, indexed by character 37 // Our fast lookup array of escaped strings. This array is indexed by char 80 * <li>Append escaped string to output (if found)
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldURITest.java | 50 // path with an escaped octet for space char 52 // path with escaped octet for unicode char, not USASCII 56 "http://host%20name/", // escaped octets in host (becomes 65 "http:///a path#frag", // space char in path, not in escaped 67 "http://host/a[path#frag", // an illegal char, not in escaped 74 // escaped octet form, no path 82 // in escaped octet form
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactLookupKey.java | 92 boolean escaped = false; 101 escaped = true; 106 return escaped; 127 boolean escaped = false; 147 escaped = false; 150 escaped = true; 162 if (escaped) {
|
/external/chromium_org/chrome/browser/ |
chrome_process_finder_win.cc | 62 // return an escaped string. If use_plus is true, spaces are converted 67 std::string escaped; local 68 escaped.reserve(text.length() * 3); 72 escaped.push_back('+'); 74 escaped.push_back('%'); 75 escaped.push_back(IntToHex(c >> 4)); 76 escaped.push_back(IntToHex(c & 0xf)); 78 escaped.push_back(c); 81 return escaped;
|
/external/chromium_org/tools/grit/grit/format/ |
c_format.py | 66 # output message with non-ascii chars escaped as octal numbers 67 # C's grammar allows escaped hexadecimal numbers to be infinite, 70 # an escaped char is (\xHH)+ but only if the initial 71 # backslash is not escaped.
|
/external/chromium_org/tools/gyp/test/mac/rpath/ |
test.gyp | 24 # Xcode requires spaces to be escaped, else it ends up adding two
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-latin-1.js | 41 var escaped = base; 45 escaped = '\\' + base; 48 base_result = new RegExp('(' + escaped + ')\\1', 'i').exec(base + base); 50 lo_result = new RegExp('(' + escaped + ')\\1', 'i').exec(base + lo);
|
/external/markdown/MarkdownTest/Tests_2004/ |
Backslash escapes.text | 1 These should all get escaped:
|
/external/markdown/tests/markdown-test/ |
backlash-escapes.txt | 1 These should all get escaped:
|
/external/markdown/tests/safe_mode/ |
script_tags.html | 1 <p>This should be stripped/escaped in safe_mode.</p>
|
/libcore/luni/src/main/java/javax/xml/parsers/ |
FilePathToURI.java | 22 // which ASCII characters need to be escaped 24 // the first hex character if a character needs to be escaped 26 // the second hex character if a character needs to be escaped 85 // record the fact that it's escaped
|
/libcore/luni/src/main/java/javax/xml/transform/stream/ |
FilePathToURI.java | 22 // which ASCII characters need to be escaped 24 // the first hex character if a character needs to be escaped 26 // the second hex character if a character needs to be escaped 85 // record the fact that it's escaped
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
IETFUtils.java | 31 boolean escaped = false; 36 // if it's an escaped hash string and not an actual encoding in string form 37 // we need to leave it escaped. 62 if (!escaped) 70 escaped = false; 72 else if (c == '\\' && !(escaped || quoted)) 74 escaped = true; 79 if (c == ' ' && !escaped && !nonWhiteSpaceEncountered) 83 if (escaped && isHexDigit(c)) 88 escaped = false [all...] |