/external/webkit/Source/WebCore/wml/ |
WMLVariables.cpp | 53 if (mode == "e" || mode == "escape") 252 // Override default escape mode, if desired
|
/frameworks/base/docs/html/guide/topics/manifest/ |
grant-uri-permission-element.jd | 63 Because '{@code \}' is used as an escape character when the string is read 64 from XML (before it is parsed as a pattern), you will need to double-escape:
|
path-permission-element.jd | 60 Because '<code class="Code prettyprint">\</code>' is used as an escape character when the string is read 61 from XML (before it is parsed as a pattern), you will need to double-escape.
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
omxVCM4P2_DecodeVLCZigzag_IntraDCVLC_s.s | 31 ; * escape modes 0-3 are used if shortVideoHeader==0, 32 ; * and escape mode 4 is used when shortVideoHeader==1.
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/ |
omxVCM4P2_DecodeVLCZigzag_IntraDCVLC_s.s | 31 ; * escape modes 0-3 are used if shortVideoHeader==0, 32 ; * and escape mode 4 is used when shortVideoHeader==1.
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
omxVCM4P2_DecodeVLCZigzag_IntraDCVLC.c | 59 * short_video_header; escape modes 0-3 are used if 60 * shortVideoHeader==0, and escape mode 4 is used when
|
/external/ppp/pppd/ |
options.c | 1116 int c, len, escape; local 1124 escape = 0; 1137 * is ignored. Note that we cannot have escape && comment. 1140 if (!escape) { 1144 escape = 0; 1157 if (escape) 1161 * If this is the escape character, look at the next character. 1164 escape = 1; 1186 if (!escape && (c == '"' || c == '\'')) { 1196 if (escape) { [all...] |
/external/chromium/googleurl/src/ |
gurl.cc | 55 // we have room if we have to escape a few things without reallocating. 185 // we have room if we have to escape a few things without reallocating. 213 // we have room if we have to escape a few things without reallocating. 240 // we have room if we have to escape a few things without reallocating. 262 // we have room if we have to escape a few things without reallocating.
|
/external/chromium/net/tools/dump_cache/ |
url_to_filename_encoder_unittest.cc | 85 const char escape = UrlToFilenameEncoder::kEscapeChar; local 86 base::snprintf(escaped, sizeof(escaped), "%c%02X%c", escape, ch, escape); 146 ","; // The escape char has to be escaped 331 // check that one backslash, plus the escape ",-", and the ending , got added.
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
AutoEscaper.java | 103 // entire tree in a <?cs escape ?> node. 135 AEscapeCommand escape = local 139 node.replaceBy(escape); 291 AEscapeCommand escape = new AEscapeCommand(position, escapeExpr, (PCommand) node.clone()); local 293 node.replaceBy(escape);
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
date-format-xparb.js | 39 code += "'" + String.escape(ch) + "' + "; 105 return "'" + String.escape(character) + "' + "; 142 regex += String.escape(ch); 275 s:String.escape(character)}; 347 String.escape = function(string) {
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
date-format-xparb.js | 39 code += "'" + String.escape(ch) + "' + "; 105 return "'" + String.escape(character) + "' + "; 142 regex += String.escape(ch); 275 s:String.escape(character)}; 347 String.escape = function(string) {
|
/external/webkit/Tools/Scripts/ |
extract-localizable-strings | 270 # Unescapes C language hexadecimal escape sequences. 281 print "Hexadecimal escape sequence out of range: \\x$1\n"; 305 print "$file:$line:ERROR:string has an illegal hexadecimal escape sequence\n"; 310 print "$file:$line:ERROR:key has an illegal hexadecimal escape sequence\n"; 315 print "$file:$line:ERROR:comment has an illegal hexadecimal escape sequence\n";
|
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
GsmSmsTest.java | 210 // GSM 7 bit tables in String form, Escape (0x1B) replaced with '@' 249 // extended escape char 319 // escape character 382 // escape character 407 // double Escape maps to space character
|
/external/pcre/doc/ |
pcrepattern.3 | 116 affect what the \eR escape sequence matches. By default, this is any Unicode 156 \e general escape character with several uses 175 \e general escape character 191 that character may have. This use of backslash as an escape character applies 234 one of the following escape sequences than the binary character it represents: 238 \ee escape (hex 1B) 264 there is no terminating }, this form of escape is not recognized. Instead, the 265 initial \ex will be interpreted as a basic hexadecimal escape, with no 327 unrecognized escape sequences, they are treated as the literal characters "B", 393 Each pair of lower and upper case escape sequences partitions the complete se [all...] |
/external/bluetooth/glib/docs/reference/glib/ |
regex-syntax.sgml | 68 <entry>general escape character with several uses</entry> 136 <entry>general escape character</entry> 164 character may have. This use of backslash as an escape character 200 editing, it is usually easier to use one of the following escape 210 <entry>Escape</entry> 225 <entry>escape (hex 1B)</entry> 272 \x{ and }, or if there is no terminating }, this form of escape is not 274 escape, with no following digits, giving a character whose 317 <entry>Escape</entry> 399 <entry>Escape</entry [all...] |
/external/webkit/Source/JavaScriptCore/parser/ |
Lexer.cpp | 110 /* 16 - Data Line Escape */ CharacterInvalid, 121 /* 27 - Escape */ CharacterInvalid, 469 int escape = singleEscape(m_current); local 471 // Most common escape sequences first 472 if (escape) { 473 record16(escape); 496 // The only valid numeric escape in strict mode is '\0', and this must not be followed by a decimal digit. [all...] |
/libcore/json/src/main/java/org/json/ |
JSONTokener.java | 186 * character escape sequences encountered along the way. The opening quote 191 * @throws NumberFormatException if any unicode escape sequences are 196 * For strings that are free of escape sequences, we can just extract 197 * the result as a substring of the input. But if we encounter an escape 219 throw syntaxError("Unterminated escape sequence"); 239 * @throws NumberFormatException if any unicode escape sequences are 247 throw syntaxError("Unterminated escape sequence");
|
/external/v8/src/ |
scanner-base.cc | 86 // Anything excelt '\0' is an octal escape sequence, illegal in strict mode. 87 // Remember the position of octal escape sequences so that better error 640 // We do not allow a unicode escape sequence to start another 641 // unicode escape sequence. 721 if (c0_ == '\\') { // Escape sequence. 725 // If the escape allows more characters, i.e., \x??, \u????, or \c?, 727 // otherwise the escape isn't valid and the invalid character has 729 // worrying whether the following characters are part of the escape 731 // of the escape sequence.
|
/cts/tests/tests/net/src/android/net/cts/ |
UrlQuerySanitizerTest.java | 337 String escape = "Joe"; local 338 assertEquals(escape, uqs.unescape(escape));
|
/external/chromium/chrome/browser/resources/picasaweb_uploader/js/ |
picasa_client.js | 345 postData += '<title type="text">' + escape(album.title) + '</title>' + eol; 346 postData += '<summary type="text">' + escape(album.description) + 348 postData += '<gphoto:location>' + escape(album.location) +
|
/external/chromium/testing/gtest/src/ |
gtest-printers.cc | 130 // - as a hexidecimal escape sequence (e.g. '\x7F'), or 131 // - as a special escape sequence (e.g. '\r', '\n'). 217 // using the standard C++ escape sequence. The template argument
|
/external/jsilver/src/com/google/clearsilver/jsilver/ |
JSilverOptions.java | 56 * or <cs escape> commands. These will be logged at {@code Level.WARNING}. 206 * Escape any template being rendered with the given escaping mode. If the mode is ESCAPE_HTML, 387 * or <cs escape> commands. These will be logged at {@code Level.WARNING}. This is useful
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
EscapingEvaluator.java | 75 * @param propagateEscapeStatus Whether to propagate the variable's escape status. 130 * String concatenation. Do not escape the combined string, if either of the halves has been 174 * Do not escape the output of a function if either the function is an escaping function, or any
|
/external/llvm/utils/lit/lit/ |
TclUtil.py | 47 def escape(self, c): member in class:TclLexer 102 str += self.escape(self.eat()) 121 str += self.escape(self.eat())
|