HomeSort by relevance Sort by last modified time
    Searched refs:escape (Results 226 - 250 of 1027) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
fnmatch.py 115 res = res + re.escape(c)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_re.py 56 self.assertEqual(re.sub('(.)', re.escape(s), 'x'), s)
73 # fails for group followed by other escape
508 self.assertEqual(re.escape(c), c)
510 self.assertEqual(re.escape(c), u'\\000')
512 self.assertEqual(re.escape(c), u'\\' + c)
513 self.assertMatch(re.escape(c), c)
514 self.assertMatch(re.escape(p), p)
521 self.assertEqual(re.escape(b), b)
523 self.assertEqual(re.escape(b), b'\\000')
525 self.assertEqual(re.escape(b), b'\\' + b
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
fnmatch.py 115 res = res + re.escape(c)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_re.py 56 self.assertEqual(re.sub('(.)', re.escape(s), 'x'), s)
73 # fails for group followed by other escape
508 self.assertEqual(re.escape(c), c)
510 self.assertEqual(re.escape(c), u'\\000')
512 self.assertEqual(re.escape(c), u'\\' + c)
513 self.assertMatch(re.escape(c), c)
514 self.assertMatch(re.escape(p), p)
521 self.assertEqual(re.escape(b), b)
523 self.assertEqual(re.escape(b), b'\\000')
525 self.assertEqual(re.escape(b), b'\\' + b
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fnmatch.py 115 res = res + re.escape(c)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_re.py 56 self.assertEqual(re.sub('(.)', re.escape(s), 'x'), s)
73 # fails for group followed by other escape
508 self.assertEqual(re.escape(c), c)
510 self.assertEqual(re.escape(c), u'\\000')
512 self.assertEqual(re.escape(c), u'\\' + c)
513 self.assertMatch(re.escape(c), c)
514 self.assertMatch(re.escape(p), p)
521 self.assertEqual(re.escape(b), b)
523 self.assertEqual(re.escape(b), b'\\000')
525 self.assertEqual(re.escape(b), b'\\' + b
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fnmatch.py 115 res = res + re.escape(c)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_re.py 56 self.assertEqual(re.sub('(.)', re.escape(s), 'x'), s)
73 # fails for group followed by other escape
508 self.assertEqual(re.escape(c), c)
510 self.assertEqual(re.escape(c), u'\\000')
512 self.assertEqual(re.escape(c), u'\\' + c)
513 self.assertMatch(re.escape(c), c)
514 self.assertMatch(re.escape(p), p)
521 self.assertEqual(re.escape(b), b)
523 self.assertEqual(re.escape(b), b'\\000')
525 self.assertEqual(re.escape(b), b'\\' + b
    [all...]
  /external/libvncserver/webclients/novnc/include/
keyboard.js 251 case 27 : return 0xFF1B; // ESCAPE
292 // - marks each event with an 'escape' property if a modifier was down which should be "escaped"
335 // and (b) we'll have to "escape" the modifier to undo the modifier when sending the char.
344 result.escape = modifierState.activeCharModifier();
413 if (queue[0].escape && (!cur.keysym || cur.keysym.keysym !== queue[0].keysym.keysym)) {
414 cur.escape = queue[0].escape;
526 if (evt.type !== 'keydown' || evt.escape === undefined) {
531 for (var i = 0; i < evt.escape.length; ++i) {
532 next({type: 'keyup', keyId: 0, keysym: keysyms.lookup(evt.escape[i])})
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 799 * character escape sequences encountered along the way. The opening quote
804 * @throws NumberFormatException if any unicode escape sequences are
937 * @throws NumberFormatException if any unicode escape sequences are
942 throw syntaxError("Unterminated escape sequence");
949 throw syntaxError("Unterminated escape sequence");
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
profile.py 82 self.style, cgi.escape(output), cgi.escape(output_callers))
  /external/chromium-trace/catapult/third_party/WebOb/webob/
compat.py 129 from html import escape namespace
131 from cgi import escape namespace
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
invalidation.py 70 def escape(self, p): member in class:InvalidationBatch
71 """Escape a path, make sure it begins with a slash and contains no invalid characters"""
82 s += ' <Path>%s</Path>\n' % self.escape(p)
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/
sanitizer.py 4 from xml.sax.saxutils import escape, unescape namespace
239 attrs = ''.join([' %s="%s"' % (k, escape(v)) for k, v in token["data"]])
  /external/clang/test/Analysis/
NewDelete-checker-test.cpp 193 // Test escape of newed const pointer. Note, a const pointer can be deleted.
198 void escape(const int &x);
205 escape(*p);
  /external/doclava/src/com/google/doclava/
SampleTagInfo.java 212 boolean escape, boolean numberedLines, boolean errorOk) {
241 if (escape) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
ReplaceableTest.java 138 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
142 if (DEBUG) System.out.println(Utility.escape(toString()));
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
ReplaceableTest.java 134 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
138 if (DEBUG) System.out.println(Utility.escape(toString()));
  /external/llvm/utils/lit/lit/
Test.py 2 from xml.sax.saxutils import escape namespace
253 xml += ">\n\t<failure >\n" + escape(self.result.output)
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 98 outs() << prettyTag(n) << " \"" << yaml::escape(Val) << "\"";
100 outs() << prettyTag(n) << " \"" << yaml::escape(BN->getValue()) << "\"";
  /external/v8/test/mjsunit/compiler/
escape-analysis-1.js 28 // Flags: --allow-natives-syntax --turbo-escape
escape-analysis-10.js 28 // Flags: --allow-natives-syntax --turbo-escape
escape-analysis-2.js 28 // Flags: --allow-natives-syntax --turbo-escape
escape-analysis-3.js 28 // Flags: --allow-natives-syntax --turbo-escape
escape-analysis-4.js 28 // Flags: --allow-natives-syntax --turbo-escape

Completed in 7001 milliseconds

1 2 3 4 5 6 7 8 91011>>