/packages/apps/Email/tests/src/com/android/email/mail/internet/ |
EmailHtmlUtilTest.java | 44 // Successive spaces will be escaped as " " 48 // Newlines will be escaped as "<br>"
|
/external/chromium_org/url/ |
url_canon_path.cc | 15 // Pass through unchanged, whether escaped or unescaped. This doesn't 25 // This character must be escaped in the canonical output. Note that all 26 // escaped chars also have the "special" bit set so that the code that looks 48 // Dot is even more special, and the escaped version is handled specially by 68 // ...all the high-bit characters are escaped 251 // This escaped value shouldn't be escaped, copy it. 254 // Invalid escaped character, copy it and remember the error. 260 // Valid escaped character but we should keep it escaped. W [all...] |
/external/chromium_org/chrome/browser/chromeos/file_system_provider/ |
mount_path_util.cc | 38 std::string escaped; local 42 base::StringAppendF(&escaped, "%%%02X", c); 44 escaped.push_back(c); 47 return escaped;
|
/external/chromium_org/storage/browser/fileapi/ |
file_system_url.cc | 110 // behavior, where the path is escaped by KURL::encodeWithURLEscapeSequences 112 std::string escaped = net::EscapeQueryParamValue( 115 ReplaceSubstringsAfterOffset(&escaped, 0, "%2F", "/"); 116 url.append(escaped);
|
/external/chromium_org/v8/test/mjsunit/ |
scanner.js | 28 // Tests that we check if escaped characters are valid indentifier
|
/external/e2fsprogs/lib/ext2fs/ |
jfs_dat.h | 41 #define JFS_FLAG_ESCAPE 1 /* on-disk block is escaped */
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/ |
FunctionExecutor.java | 37 * @param input Text to be escaped.
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
HtmlUrlValidateFunction.java | 24 * Validates that a given string is a valid URI and return the HTML escaped string if it is.
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
PasswordTransformationMethodTest.java | 25 assertThat(output.toString(), is("\u2022\u2022\u2022\u2022\u2022\u2022")); //using the escaped characters for cross platform compatibility.
|
/external/apache-http/src/org/apache/commons/codec/net/ |
QuotedPrintableCodec.java | 128 * Encodes an array of bytes into an array of quoted-printable 7-bit characters. Unsafe characters are escaped. 164 * Decodes an array quoted-printable characters into an array of original bytes. Escaped characters are converted 204 * Encodes an array of bytes into an array of quoted-printable 7-bit characters. Unsafe characters are escaped. 220 * Decodes an array of quoted-printable characters into an array of original bytes. Escaped characters are converted 239 * Encodes a string into its quoted-printable form using the default string charset. Unsafe characters are escaped. 267 * Decodes a quoted-printable string into its original form using the specified string charset. Escaped characters 288 * Decodes a quoted-printable string into its original form using the default string charset. Escaped characters are 312 * Encodes an object into its quoted-printable safe form. Unsafe characters are escaped. 336 * Decodes a quoted-printable object into its original form. Escaped characters are converted back to their original 370 * Encodes a string into its quoted-printable form using the specified charset. Unsafe characters are escaped [all...] |
QCodec.java | 179 * Encodes a string into its quoted-printable form using the specified charset. Unsafe characters are escaped. 202 * Encodes a string into its quoted-printable form using the default charset. Unsafe characters are escaped. 219 * Decodes a quoted-printable string into its original form. Escaped characters are converted back to their original 242 * Encodes an object into its quoted-printable form using the default charset. Unsafe characters are escaped. 264 * Decodes a quoted-printable object into its original form. Escaped characters are converted back to their original
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
DeadStoresChecker.cpp | 130 llvm::SmallPtrSet<const VarDecl*, 20> Escaped; 141 llvm::SmallPtrSet<const VarDecl *, 20> &escaped) 143 Escaped(escaped), currentBlock(nullptr) {} 166 if (Escaped.count(V)) 398 llvm::SmallPtrSet<const VarDecl*, 20> Escaped; 402 // escaped. 413 Escaped.insert(VD); 443 DeadStoreObs A(cfg, BR.getContext(), BR, this, AC, pmap, FS.Escaped);
|
SimpleStreamChecker.cpp | 84 const InvalidatedSymbols &Escaped, 254 // If the pointer we are tracking escaped, do not track the symbol as 258 const InvalidatedSymbols &Escaped, 266 for (InvalidatedSymbols::const_iterator I = Escaped.begin(), 267 E = Escaped.end(); 271 // The symbol escaped. Optimistically, assume that the corresponding file
|
/external/xmlwriter/src/org/jheer/ |
XMLWriter.java | 88 * escaped text, use the {@link #content(String)} method instead. 89 * @param s the text to write. This String will not be escaped. 97 * a newline. To write escaped text, use the {@link #content(String)} 99 * @param s the text to write. This String will not be escaped. 360 * @param value the value of the attribute, this text will be escaped 361 * @param content the text content, this text will be escaped 379 * @param content the text content, this text will be escaped 391 * @param content the content text, this text will be escaped 408 * @param footer the footer text, this will not be escaped
|
/external/llvm/lib/Transforms/Scalar/ |
TailRecursionElimination.cpp | 206 // otherwise escaped, but this is a local analysis). 268 // Track whether a block is reachable after an alloca has escaped. Blocks that 270 // escaped alloca, since that is how the block began. 274 ESCAPED 278 // We propagate the fact that an alloca has escaped from block to successor. 283 // We may enter a block and visit it thinking that no alloca has escaped yet, 293 VisitType Escaped = UNESCAPED; 297 Escaped = ESCAPED; 309 // Note that this runs whether we know an alloca has escaped or not. I [all...] |
/external/chromium_org/third_party/polymer/components-chromium/paper-input/ |
paper-input-extracted.js | 123 var escaped = this.inputValue.replace(/\n/gm, '<br>'); 124 if (!escaped || escaped.lastIndexOf('<br>') === escaped.length - 4) { 125 escaped += ' '; 127 this.$.inputCloneSpan.innerHTML = escaped;
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
EscapingEvaluator.java | 55 * Generates a JavaExpression to determine whether a given CS expression should be escaped before 56 * displaying. If propagateEscapeStatus is enabled, string and numeric literals are not escaped, nor 58 * is not escaped. This maintains compatibility with the way ClearSilver works. 72 * Returns a JavaExpression that can be used to decide whether a given variable should be escaped. 131 * escaped. 175 * of its parameters have been escaped.
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
PercentEscaper.java | 50 * <p><i>Unreserved characters can be escaped without changing the semantics 76 * characters do need to be escaped when used in other parts of the URI. 83 * characters do need to be escaped when used in other parts of the URI. 88 // In some uri escapers spaces are escaped to '+' 103 * {@code c > safeOctets.length} then it should be escaped. 114 * @param plusForSpace true if ASCII space should be escaped to {@code +}
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
javascript.js | 73 var escaped = false, next, inSet = false; 75 if (!escaped) { 80 escaped = !escaped && next == "\\"; 145 var escaped = false, next; 151 if (next == quote && !escaped) break; 152 escaped = !escaped && next == "\\"; 154 if (!escaped) state.tokenize = tokenBase; 172 var escaped = false, next [all...] |
/external/qemu/telephony/ |
gsm.c | 657 int escaped = 0; local 670 if (escaped) { 673 escaped = 1; 696 int escaped = 0; local 707 if (escaped) { /* two escape characters => one space */ 709 escaped = 0; 711 escaped = 1; 719 escaped = 0; 720 } else if (escaped) { 746 int escaped = 0 local [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
AbstractTest.java | 46 // return an escaped string of the expected result 55 // return an escaped string of the actual result
|
/external/chromium_org/chrome/browser/external_protocol/ |
external_protocol_handler.h | 90 // url has already been escaped, which happens in LaunchUrl. 92 // url you have has been checked against the blacklist, and has been escaped.
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ContentDetectionTestBase.java | 41 * Encodes the provided content string into an escaped url as intents do. 43 * @return Escaped url.
|
/external/chromium_org/native_client_sdk/src/tools/ |
fix_deps.py | 31 are escaped with a backslash. 42 # Find the next non-escaped space
|
/external/chromium_org/third_party/jinja2/ |
tests.py | 128 """Check if the value is escaped.""" 148 'escaped': test_escaped
|