HomeSort by relevance Sort by last modified time
    Searched refs:ord (Results 76 - 100 of 327) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bytes.py 143 input = list(map(ord, "Hello"))
151 return self.type2test(map(ord, s))
230 self.assertEqual(self.type2test(b'x')*100, self.type2test([ord('x')]*100))
234 self.assertIn(ord('a'), b)
235 self.assertIn(int(ord('a')), b)
240 self.assertRaises(TypeError, lambda: float(ord('a')) in b)
456 self.assertEqual([ord(b[i:i+1]) for i in range(len(b))],
542 b_sample = (ord(s) for s in sample)
569 return bytearray(map(ord, s))
737 a.extend(map(ord, orig * 25)
    [all...]
test_md5.py 15 i = ord(c)
test_sha.py 32 hexd += '%02x' % ord(c)
test_codeccallbacks.py 89 l.append(u"&%s;" % htmlentitydefs.codepoint2name[ord(c)])
91 l.append(u"&#%d;" % ord(c))
119 l.append(unicodedata.name(c, u"0x%x" % ord(c)))
186 charmap = dict([ (ord(c), 2*c.upper()) for c in "abcdefgh"])
194 charmap[ord("?")] = "XYZ"
199 charmap[ord("?")] = u"XYZ"
202 charmap[ord("?")] = u"XYZ"
239 l = [u"<%d>" % ord(exc.object[pos]) for pos in xrange(exc.start, exc.end)]
247 l = [u"<%d>" % ord(exc.object[pos]) for pos in xrange(exc.start, exc.end)]
274 codecs.charmap_decode("abc", "test.handler1", {ord("a"): u"z"})[0]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bytes.py 143 input = list(map(ord, "Hello"))
151 return self.type2test(map(ord, s))
230 self.assertEqual(self.type2test(b'x')*100, self.type2test([ord('x')]*100))
234 self.assertIn(ord('a'), b)
235 self.assertIn(int(ord('a')), b)
240 self.assertRaises(TypeError, lambda: float(ord('a')) in b)
456 self.assertEqual([ord(b[i:i+1]) for i in range(len(b))],
542 b_sample = (ord(s) for s in sample)
569 return bytearray(map(ord, s))
737 a.extend(map(ord, orig * 25)
    [all...]
test_md5.py 15 i = ord(c)
test_sha.py 32 hexd += '%02x' % ord(c)
test_codeccallbacks.py 89 l.append(u"&%s;" % htmlentitydefs.codepoint2name[ord(c)])
91 l.append(u"&#%d;" % ord(c))
119 l.append(unicodedata.name(c, u"0x%x" % ord(c)))
186 charmap = dict([ (ord(c), 2*c.upper()) for c in "abcdefgh"])
194 charmap[ord("?")] = "XYZ"
199 charmap[ord("?")] = u"XYZ"
202 charmap[ord("?")] = u"XYZ"
239 l = [u"<%d>" % ord(exc.object[pos]) for pos in xrange(exc.start, exc.end)]
247 l = [u"<%d>" % ord(exc.object[pos]) for pos in xrange(exc.start, exc.end)]
274 codecs.charmap_decode("abc", "test.handler1", {ord("a"): u"z"})[0]
    [all...]
  /external/chromium_org/build/
escape_unicode.py 47 if ord(char) > 127:
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/
memdump_parser.py 84 entry.resident_pages = [ord(c) for c in base64.b64decode(m.group(11))]
  /external/lldb/test/pexpect-2.4/examples/
fix_cvs_files.py 34 if ord(c) & 0x80:
  /external/qemu/
gen-skin.py 47 d = ord(b)
  /external/speex/libspeex/
vorbis_psy.h 94 void curve_to_lpc(VorbisPsy *psy, float *curve, float *awk1, float *awk2, int ord);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_parse.py 31 r"\a": (LITERAL, ord("\a")),
32 r"\b": (LITERAL, ord("\b")),
33 r"\f": (LITERAL, ord("\f")),
34 r"\n": (LITERAL, ord("\n")),
35 r"\r": (LITERAL, ord("\r")),
36 r"\t": (LITERAL, ord("\t")),
37 r"\v": (LITERAL, ord("\v")),
38 r"\\": (LITERAL, ord("\\"))
253 return LITERAL, ord(escape[1])
297 return LITERAL, ord(escape[1]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_parse.py 31 r"\a": (LITERAL, ord("\a")),
32 r"\b": (LITERAL, ord("\b")),
33 r"\f": (LITERAL, ord("\f")),
34 r"\n": (LITERAL, ord("\n")),
35 r"\r": (LITERAL, ord("\r")),
36 r"\t": (LITERAL, ord("\t")),
37 r"\v": (LITERAL, ord("\v")),
38 r"\\": (LITERAL, ord("\\"))
253 return LITERAL, ord(escape[1])
297 return LITERAL, ord(escape[1]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 295 return s[1:1+ord(s[0])]
298 return (ord(s[0])<<24) | (ord(s[1])<<16) | (ord(s[2])<<8) | ord(s[3])
301 return (ord(s[0])<<8) | (ord(s[1])<<0)
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-streams.rb 82 @stream.peek(1).should == ?o.ord
89 @stream.peek(1).should == ?o.ord
90 @stream.peek(2).should == ?h.ord
91 @stream.peek(3).should == ?\n.ord
97 @stream.peek(1).should == ?!.ord
98 @stream.peek(2).should == ?\n.ord
114 @stream.peek(1).should == ?h.ord
168 @stream.peek(1).should == ?e.ord
197 @stream.peek(1).should == ?y.ord
224 @stream.peek(1).should == ?a.ord
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
StringEncoding.py 144 for c in map(ord, ustring):
200 return ''.join(['\\%03o' % ord(c) for c in s])
227 n = ord(c)
258 o = ord(c)
289 s = map(ord, s) + [0]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
_stream_hixie75.py 108 b = ord(b_str)
137 frame_type = ord(frame_type_str)
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
rjsmin.py 124 for char in map(ord, string):
140 lambda m: '\\%03o' % ord(m.group(1)), (sequentize(result)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
_stream_hixie75.py 109 b = ord(b_str)
138 frame_type = ord(frame_type_str)
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Traditional.py 103 for a in xrange(ord(c1), ord(c2) + 1):
  /external/chromium_org/third_party/icu/source/tools/
icu-svnprops-check.py 171 if all(ord(byte) < 128 for byte in bytes):
182 if ord(bytes[0]) != 0xef:
  /external/icu/icu4c/source/tools/
icu-svnprops-check.py 171 if all(ord(byte) < 128 for byte in bytes):
182 if ord(bytes[0]) != 0xef:
  /external/markdown/markdown/
inlinepatterns.py 363 letters = [codepoint2name(ord(letter)) for letter in email]
368 ord(letter) for letter in mailto])

Completed in 527 milliseconds

1 2 34 5 6 7 8 91011>>