/external/chromium_org/tools/grit/grit/ |
util.py | 190 # Matches characters that should be HTML-escaped. This is <, > and &, but only 226 '''Returns 'text' with <, > and & (and optionally ") escaped to named HTML 248 The only exception is that will not be escaped if 'replace_nbsp' is 272 '''Returns the provided cdata in either escaped format or <![CDATA[xxx]]> 274 is escaped for inclusion in an XML element's body.
|
/external/clang/lib/AST/ |
CommentLexer.cpp | 231 /// Handles newlines escaped with backslash or trigraph for backslahs. 240 // We found a newline, check if it is escaped. 248 // We found an escaped newline. 251 return CurPtr; // Not an escaped newline. 257 /// Very dumb, does not handle escaped newlines or trigraphs.
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
URLParser.java | 213 protected String escaped() throws ParseException { method in class:URLParser 215 dbg_enter("escaped"); 229 throw createParseException("escaped"); 233 dbg_leave("escaped"); 728 retval.append(escaped()); method
|
/external/smack/src/org/xbill/DNS/ |
Name.java | 221 boolean escaped = false; 227 if (escaped) { 244 escaped = false; 246 escaped = true; 266 if (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
|
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)
|
/external/apache-http/src/org/apache/http/message/ |
BasicHeaderValueFormatter.java | 74 * Unsafe special characters that must be escaped using the backslash 224 // assume quotes, but no escaped characters 372 // assume quotes, but no escaped characters
|
/external/bison/lib/ |
quotearg.h | 196 levels where the outer quote need not be escaped within the inner 197 quotes. For two levels where the outer quote must be escaped 218 /* Omit the surrounding quote characters if no escaped characters
|
/external/chromium_org/chrome/browser/autocomplete/ |
keyword_provider_unittest.cc | 106 // no-query-input cases have a space appended, and action is not escaped. 186 // and query input, but not rest of URL, is escaped. 243 // tokens and contents are not escaped or unescaped.
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
MarkupAccumulator.cpp | 325 // FIXME: Comment content is not escaped, but XMLSerializer (and possibly other callers) should raise an exception if it includes "-->". 387 // FIXME: PI data is not escaped, but XMLSerializer (and possibly other callers) this should raise an exception if it includes "?>". 477 // FIXME: CDATA content is not escaped, but XMLSerializer (and possibly other callers) should raise an exception if it includes "]]>".
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
StreamChecker.cpp | 30 enum Kind { Opened, Closed, OpenFailed, Escaped } K; 38 //bool isEscaped() const { return K == Escaped; } 50 return StreamState(Escaped, s);
|
/external/libvpx/libvpx/examples/includes/geshi/contrib/ |
cssgen.php | 314 <tr><th>Escaped Characters (\n, \t etc)</th><td><input type="text" name="escaped-chars" value="color: #000033; font-weight: bold;" /></td></tr> 416 $esc = get_var('escaped-chars');
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
binhex.py | 22 # escaped *value* of 0x90. All coders I've seen appear to ignore this nicety... 345 # '\220\0\220' - Keep 3 bytes: repeated \220 (escaped as \220\0) 347 # '\220\0' - Escaped \220: Keep 2 bytes.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
binhex.py | 22 # escaped *value* of 0x90. All coders I've seen appear to ignore this nicety... 345 # '\220\0\220' - Keep 3 bytes: repeated \220 (escaped as \220\0) 347 # '\220\0' - Escaped \220: Keep 2 bytes.
|
/external/llvm/lib/CodeGen/ |
TargetLoweringObjectFileImpl.cpp | 812 std::string Escaped(" "); 818 Escaped.push_back('\"'); 819 Escaped.append(Op); 820 Escaped.push_back('\"'); 822 Escaped.append(Op); 824 Streamer.EmitBytes(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.
|
/external/bison/src/ |
system.h | 164 /* Output Str escaped for our postprocessing (i.e., escape M4 special 184 /* Output Str both quoted for M4 (i.e., embed in [[...]]), and escaped
|
/external/chromium/chrome/browser/ |
shell_integration_unittest.cc | 275 // Note: $ is escaped as \$ within an arg to Exec, and then 276 // the \ is escaped as \\ as all strings in a Desktop file should
|
/external/chromium_org/sandbox/win/src/ |
policy_low_level.cc | 174 // never contains wildcards (unless they have been escaped) and while there 259 // Note: "/?" is an escaped '?'. Eat the slash and fall through.
|
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
DatabaseIdentifierTest.cpp | 225 {"http_escaped%3Dfun.com_0", "http", "escaped%3dfun.com", 0, "http://escaped%3dfun.com", false},
|
/external/chromium_org/third_party/libxslt/libxslt/ |
attrvt.c | 222 if (*(cur+1) == '{') { /* escaped '{' */ 300 if (*cur == '}') { /* escaped '}' */
|
/external/chromium_org/v8/tools/ |
jsmin.py | 227 # This regexp can handle embedded backslash-escaped characters including 228 # embedded backslash-escaped double quotes.
|
/external/libxslt/libxslt/ |
attrvt.c | 222 if (*(cur+1) == '{') { /* escaped '{' */ 300 if (*cur == '}') { /* escaped '}' */
|