/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}")
|
/external/proguard/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.
|
/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.
|
/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 94 // the type holding them may be 16 bits. Escaped characters will be unescaped [all...] |
/external/lldb/test/expression_command/test/ |
main.cpp | 32 expression printf("\"\n") // Test constant strings that contains an escaped double quote char (this is broken: <rdar://problem/8686536>) 33 expression printf("\'\n") // Test constant strings that contains an escaped single quote char (this is broken: <rdar://problem/8686536>)
|
/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/gn/ |
ninja_utils.h | 14 // Example: "base/base.ninja". The string version will not be escaped, and
|
/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
|