HomeSort by relevance Sort by last modified time
    Searched full:escape (Results 301 - 325 of 1511) sorted by null

<<11121314151617181920>>

  /external/libvpx/examples/includes/geshi/geshi/
actionscript.php 78 'END', 'endFill', 'ENTER', 'eq', 'Error', 'ESCAPE(Konstante)', 'escape(Funktion)', 'eval',
  /external/llvm/lib/Support/
GraphWriter.cpp 25 Str.insert(Str.begin()+i, '\\'); // Escape character...
45 Str.insert(Str.begin()+i, '\\'); // Escape character...
  /external/llvm/utils/TableGen/
X86ModRMFilters.h 88 /// EscapeFilter - Filters escape opcodes, which are classified in two ways. If
119 /// AddRegEscapeFilter - Some escape opcodes have one of the register operands
  /external/markdown/docs/
using_as_module.txt 122 * To escape HTML, set ``safe_mode="escape"``. The HTML will be escaped and
  /external/netcat/data/
data.c 174 if (*p == '%') { /* escape char? */
180 } /* if "%" escape */
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.5-1.js 29 each escape sequences of the sort that might be introduced by the escape
15.1.2.5-3.js 33 each escape sequences of the sort that might be introduced by the escape
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Object/
regress-90596-001.js 229 // remember to escape the parens...
244 // remember to escape the braces...
regress-90596-002.js 229 // remember to escape the parens...
244 // remember to escape the braces...
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLUtils.java 103 // + is used as our escape character, so double it up.
106 // Unsafe - escape.
  /external/icu4c/common/
ucnvhz.c 132 * '~' is encountered. The character '~' is an escape character. By
136 * 1. The escape sequence '~~' is interpreted as a '~'.
137 * 2. The escape-to-GB sequence '~{' switches the mode from ASCII to GB.
138 * 3. The escape sequence '~\n' is a line-continuation marker to be
141 * GB codes until the escape-from-GB code '~}' is read. This code
142 * switches the mode from GB back to ASCII. (Note that the escape-
ustring.c 1160 /* This map must be in ASCENDING ORDER OF THE ESCAPE CODE */
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrParser.h 73 * to perform the parsing of escape characters in character sets.
249 * an argument, and as such the escape will be reported to the delegate.
254 * whether that an escape in a CharacterClass is being parsed (some parsing
330 // To match Firefox, we parse an invalid backreference in the range [1-7] as an octal escape.
350 // Fall-through to handle this as an octal escape.
353 // Octal escape
  /libcore/luni/src/main/java/java/util/regex/
Matcher.java 132 boolean escape = false;
137 if (c == '\\' && !escape) {
138 escape = true;
139 } else if (c == '$' && !escape) {
147 escape = false;
152 if (escape) {
  /libcore/luni/src/test/java/libcore/java/net/
OldURLTest.java 365 "http://host/a%path#frag", // invalid escape sequence in path
366 "http://host/a%#frag", // incomplete escape sequence in path
371 "http:///path#fr%ag", // invalid escape sequence in fragment,
373 "http://host/path#frag%", // incomplete escape sequence in
378 "http://host?query%ag", // invalid escape sequence in query, no
380 "http:///path?query%", // incomplete escape sequence in query,
  /ndk/sources/host-tools/sed-4.2.1/lib/
quotearg.c 67 "escape",
330 /* Escape the second '?' in what would otherwise be
360 /* No need to escape the escape if we are trying to elide
435 unprintable characters, escape the whole sequence, since
436 we can't easily escape single characters within it. */
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.c 520 * extended or escape opcodes).
570 dbgprintf(insn, "Found a two-byte escape prefix (0x%hhx)", current);
578 dbgprintf(insn, "Found a three-byte escape prefix (0x%hhx)", current);
587 dbgprintf(insn, "Found a three-byte escape prefix (0x%hhx)", current);
596 dbgprintf(insn, "Found a three-byte escape prefix (0x%hhx)", current);
605 dbgprintf(insn, "Found a three-byte escape prefix (0x%hhx)", current);
614 dbgprintf(insn, "Didn't find a three-byte escape prefix");
634 * the ModR/M byte as appropriate for extended and escape opcodes,
732 * appropriate for extended and escape opcodes. Determines the attributes and
    [all...]
  /external/icu4c/test/testdata/
conversion.txt 29 "Callback function - '?'=Sub '0'=Skip '.'=Stop '&'=Escape\n"
166 // The following test cases are for illegal escape/designator/shift sequences.
168 // ISO-2022-JP and -CN with illegal escape sequences.
295 // truncated, partial escape sequence
311 // complete escape sequence but nothing else
322 // escape plus ASCII character
328 // escape plus incomplete DBCS character
349 // truncated, partial escape sequence
365 // complete escape sequence but nothing else
376 // escape plus ASCII characte
    [all...]
  /external/pcre/doc/html/
pcrepattern.html 146 affect what the \R escape sequence matches. By default, this is any Unicode
183 \ general escape character with several uses
202 \ general escape character
214 that character may have. This use of backslash as an escape character applies
258 one of the following escape sequences than the binary character it represents:
262 \e escape (hex 1B)
290 there is no terminating }, this form of escape is not recognized. Instead, the
291 initial \x will be interpreted as a basic hexadecimal escape, with no
342 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/chromium/testing/gtest/src/
gtest-port.cc 196 // Returns true iff "\\c" is a supported escape sequence.
246 if (regex[i] == '\\') { // An escape sequence
256 << "invalid escape sequence \"\\" << regex[i] << "\".";
260 } else { // Not an escape sequence.
331 // Is the first thing in regex an escape sequence?
  /external/gtest/src/
gtest-port.cc 154 // Returns true iff "\\c" is a supported escape sequence.
204 if (regex[i] == '\\') { // An escape sequence
214 << "invalid escape sequence \"\\" << regex[i] << "\".";
218 } else { // Not an escape sequence.
289 // Is the first thing in regex an escape sequence?
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 194 // Returns true iff "\\c" is a supported escape sequence.
244 if (regex[i] == '\\') { // An escape sequence
254 << "invalid escape sequence \"\\" << regex[i] << "\".";
258 } else { // Not an escape sequence.
329 // Is the first thing in regex an escape sequence?
  /external/openssl/crypto/asn1/
a_strex.c 141 /* If we don't escape with quotes, signal we need quotes */
156 /* If we get this far and do any escaping at all must escape
157 * the escape character itself: backslash.
308 * ASN1_STRING taking note of various escape
321 /* Keep a copy of escape flags */
  /external/protobuf/gtest/src/
gtest-port.cc 185 // Returns true iff "\\c" is a supported escape sequence.
235 if (regex[i] == '\\') { // An escape sequence
245 << "invalid escape sequence \"\\" << regex[i] << "\".";
249 } else { // Not an escape sequence.
320 // Is the first thing in regex an escape sequence?
  /external/v8/test/cctest/
test-parsing.cc 201 " f\\u006fr: 'keyword propertyname with escape'};"
203 "var w = /RegExp Literal\\u0020With Escape/gin;"
295 "escape: function() {}";
692 // Incomplete escape sequences doesn't hide the terminating slash.
703 // Incomplete escape sequences inside a character class doesn't hide

Completed in 901 milliseconds

<<11121314151617181920>>