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

1 2 3 45 6 7 8 91011>>

  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 116 for letter in range(ord('b'), ord('z')):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ucn.py 66 for char in "".join(map(chr, xrange(ord("a"), ord("z")))):
test_grp.py 73 chars[i] = chr(ord(chars[i]) + 1)
test_pep247.py 58 hd2 += '%02x' % ord(byte)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ucn.py 66 for char in "".join(map(chr, xrange(ord("a"), ord("z")))):
test_grp.py 73 chars[i] = chr(ord(chars[i]) + 1)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
bytecode.py 39 return ord(self.code[i])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
MediaDescr.py 58 return str31[1:1+ord(str31[0])]
  /external/chromium_org/net/tools/testserver/
echo_message.py 264 return ''.join(chr(ord(x) ^ ord(y)) for (x, y) in izip(payload, cycle(key)))
282 checksum += ord(payload[i])
  /external/chromium_org/third_party/icu/source/test/perf/collperf/
collperf.cpp 400 DataIndex * ord; member in class:CmdBinSearch
404 CmdBinSearch(UErrorCode, UCollator * col,DWORD win_langid,int32_t count,DataIndex * rnd,DataIndex * ord,Func fn)
405 :col(col),win_langid(win_langid), count(count), rnd(rnd), ord(ord), fn(fn),exec_count(0){}
441 return ucol_strcoll(col, rnd[i].icu_data, -1, ord[j].icu_data,-1);
445 return ucol_strcoll(col, rnd[i].icu_data, rnd[i].icu_data_len, ord[j].icu_data, ord[j].icu_data_len);
449 return strcmp( (char *) rnd[i].icu_key, (char *) ord[j].icu_key );
454 int t = CompareStringW(win_langid, 0, rnd[i].win_data, -1, ord[j].win_data, -1);
464 int t = CompareStringW(win_langid, 0, rnd[i].win_data, rnd[i].win_data_len, ord[j].win_data, ord[j].win_data_len)
    [all...]
  /external/harfbuzz_ng/src/
gen-indic-table.py 118 s = ''.join ([c for c in v_no_and if ord ('A') <= ord (c) <= ord ('Z')])
  /external/icu/icu4c/source/test/perf/collperf/
collperf.cpp 400 DataIndex * ord; member in class:CmdBinSearch
404 CmdBinSearch(UErrorCode, UCollator * col,DWORD win_langid,int32_t count,DataIndex * rnd,DataIndex * ord,Func fn)
405 :col(col),win_langid(win_langid), count(count), rnd(rnd), ord(ord), fn(fn),exec_count(0){}
441 return ucol_strcoll(col, rnd[i].icu_data, -1, ord[j].icu_data,-1);
445 return ucol_strcoll(col, rnd[i].icu_data, rnd[i].icu_data_len, ord[j].icu_data, ord[j].icu_data_len);
449 return strcmp( (char *) rnd[i].icu_key, (char *) ord[j].icu_key );
454 int t = CompareStringW(win_langid, 0, rnd[i].win_data, -1, ord[j].win_data, -1);
464 int t = CompareStringW(win_langid, 0, rnd[i].win_data, rnd[i].win_data_len, ord[j].win_data, ord[j].win_data_len)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringprep.py 14 c = ord(code)
21 return ord(code) in b1_set
190 r = b3_exceptions.get(ord(code))
218 return ord(code) < 128 and unicodedata.category(code) == "Cc"
222 c = ord(code)
229 ord(code) in c22_specials
237 c = ord(code)
240 return (ord(code) & 0xFFFF) in (0xFFFE, 0xFFFF)
249 return ord(code) in c6_set
254 return ord(code) in c7_se
    [all...]
uuid.py 145 int = long(('%02x'*16) % tuple(map(ord, bytes)), 16)
378 ncb.Lana_num = ord(adapters.lana[i])
383 ncb.Lana_num = ord(adapters.lana[i])
389 bytes = map(ord, status.adapter_address)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringprep.py 14 c = ord(code)
21 return ord(code) in b1_set
190 r = b3_exceptions.get(ord(code))
218 return ord(code) < 128 and unicodedata.category(code) == "Cc"
222 c = ord(code)
229 ord(code) in c22_specials
237 c = ord(code)
240 return (ord(code) & 0xFFFF) in (0xFFFE, 0xFFFF)
249 return ord(code) in c6_set
254 return ord(code) in c7_se
    [all...]
  /external/chromium_org/net/tools/tld_cleanup/
make_dafsa_unittest.py 625 bytes = [ ord('a') ]
631 bytes = [ ord('b'), ord('a') ]
639 bytes = [ ord('a') + 0x80 ]
645 bytes = [ ord('b') + 0x80, ord('a') ]
make_dafsa.py 211 if not 0x1F < ord(word[0]) < 0x80:
214 return chr(ord(word[0]) & 0x0F), [None]
387 return [ord(c) for c in reversed(label)]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
monsoon.py 129 ord(data[0]), len(data))
192 ord(data[0]), len(data))
258 data_len = ord(len_char)
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_private_script_source.py 52 hex_values = ['0x{0:02x}'.format(ord(char)) for char in input_text]
  /external/chromium_org/third_party/icu/source/i18n/
regexcst.pl 283 printf(" %d /* $c */,", ord($c)); # use numeric value, so EBCDIC machines are ok.
  /external/chromium_org/tools/site_compare/drivers/win32/
keyboard.py 175 TypeKey(ord('R'))
  /external/icu/icu4c/source/i18n/
regexcst.pl 283 printf(" %d /* $c */,", ord($c)); # use numeric value, so EBCDIC machines are ok.
  /external/lldb/test/lang/objc/objc-new-syntax/
TestObjCNewSyntax.py 98 substrs = ["NSNumber", str(ord('a'))])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
uu_codec.py 87 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) / 3
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
uu_codec.py 87 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) / 3

Completed in 658 milliseconds

1 2 3 45 6 7 8 91011>>