Searched refs:byteord (Results 1 – 23 of 23) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | S_I_N_G_.py | 31 self.nameLength = byteord(self.nameLength) 36 self.METAMD5 = "[" + hex(byteord(self.METAMD5[0])) 38 self.METAMD5 = self.METAMD5 + ", " + hex(byteord(char)) 44 val = byteord(char)
|
D | _n_a_m_e.py | 364 if byteord(string[-1]) == 0: 366 elif all(byteord(b) == 0 if i % 2 else isascii(byteord(b)) for i,b in enumerate(string)): 368 elif byteord(string[0]) == 0 and all(isascii(byteord(b)) for b in string[1:]): 369 string = bytesjoin(b'\0'+bytechr(byteord(b)) for b in string[1:])
|
D | _h_d_m_x.py | 45 ppem = byteord(data[0]) 46 maxSize = byteord(data[1])
|
D | TupleVariation.py | 255 numPointsInData = byteord(data[pos]) 258 numPointsInData = (numPointsInData & POINT_RUN_COUNT_MASK) << 8 | byteord(data[pos]) 265 runHeader = byteord(data[pos]) 420 runHeader = byteord(data[pos])
|
D | E_B_D_T_.py | 210 value = byteord(curByte) 250 byte = byteord(data) 537 firstHalf = byteord(curByte) >> cutPoint 542 secondHalf = byteord(curByte) << numBitsCut 574 curByte = byteord(curByte)
|
D | _p_o_s_t.py | 261 length = byteord(data[index])
|
D | M_E_T_A_.py | 251 uString = uString + unichr(byteord(string[i]))
|
D | S__i_l_f.py | 199 opcode = byteord(aCode[pc:pc+1]) 207 count = byteord(aCode[pc])
|
D | _g_l_y_f.py | 587 flag = byteord(data[i]) 591 repeat = byteord(data[i]) + 1 1577 flag = byteord(flag)
|
/external/fonttools/Lib/fontTools/unicodedata/ |
D | __init__.py | 58 code = byteord(char) 83 code = byteord(char) 219 code = byteord(char)
|
/external/fonttools/Lib/fontTools/misc/ |
D | eexec.py | 9 cipher = byteord(cipher) 15 plain = byteord(plain)
|
D | py23.py | 70 def byteord(c): function 98 byteord = ord variable 105 def byteord(c): function
|
D | psCharStrings.py | 18 op = (b0, byteord(data[index])) 33 b1 = byteord(data[index]) 37 b1 = byteord(data[index]) 59 b = byteord(data[index]) 1036 len=len, byteord=byteord, basestring=basestring, argument 1041 b0 = byteord(self.bytecode[index]) 1084 bits.append(num2binary(byteord(byte), 8)) 1190 b0 = byteord(data[index])
|
D | textTools.py | 35 i = byteord(c)
|
D | xmlWriter.py | 193 i = byteord(c)
|
D | psLib.py | 92 char = bytechr(byteord(buf[pos]))
|
/external/fonttools/Lib/fontTools/t1Lib/ |
D | __init__.py | 158 code = byteord(res.data[0]) 159 if byteord(res.data[1]) != 0: 187 code = byteord(f.read(1)) 366 l += byteord(s[i]) << (i * 8)
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | woff2.py | 964 if byteord(data[0]) == 0x80: 970 code = byteord(data[0]) 1041 code = byteord(data[:1]) 1053 result = byteord(data[:1]) 1060 result = byteord(data[:1])
|
D | ttFont.py | 869 return hex(byteord(c))[2:]
|
/external/fonttools/Tests/misc/ |
D | py23_test.py | 418 self.assertEqual(byteord(u'\U00010000'), 0xFFFF + 1) 419 self.assertEqual(byteord(u'\U0010FFFF'), 1114111)
|
/external/fonttools/Lib/fontTools/feaLib/ |
D | ast.py | 1222 escape(byteord(s[i]) * 256 + byteord(s[i + 1]), r"\%04x") 1225 escaped_string = "".join([escape(byteord(b), r"\%02x") for b in s])
|
/external/fonttools/Tests/ttLib/ |
D | woff2_test.py | 404 origFlags = byteord(headData[16]) 407 modifiedFlags = byteord(newHeadData[16])
|
/external/fonttools/Lib/fontTools/cffLib/ |
D | __init__.py | 964 return byteord(file.read(1))
|