Home
last modified time | relevance | path

Searched refs:typecode (Results 1 – 10 of 10) sorted by relevance

/external/smack/src/org/xbill/DNS/
DTypeBitmap.java55 int typecode = mapbase * 256 + + i * 8 + j; in TypeBitmap() local
56 types.add(Mnemonic.toInteger(typecode)); in TypeBitmap()
69 int typecode = Type.value(t.value); in TypeBitmap() local
70 if (typecode < 0) { in TypeBitmap()
73 types.add(Mnemonic.toInteger(typecode)); in TypeBitmap()
107 int typecode = ((Integer)it.next()).intValue(); in mapToWire() local
108 array[(typecode & 0xFF) / 8] |= (1 << ( 7 - typecode % 8)); in mapToWire()
143 contains(int typecode) { in contains() argument
144 return types.contains(Mnemonic.toInteger(typecode)); in contains()
DNXTRecord.java64 int typecode = Type.value(t.value, true); in rdataFromString() local
65 if (typecode <= 0 || typecode > 128) in rdataFromString()
67 bitmap.set(typecode); in rdataFromString()
/external/chromium_org/mojo/public/python/mojo/bindings/
Ddescriptor.py39 def __init__(self, typecode): argument
41 self.typecode = typecode
49 return self.typecode
114 def __init__(self, typecode): argument
115 NumericType.__init__(self, typecode)
117 signed = typecode.islower()
349 def __init__(self, typecode, nullable=False, length=0): argument
351 self.array_typecode = typecode
/external/compiler-rt/lib/sanitizer_common/scripts/
Dsancov.py101 typecode = 'L'
103 typecode = 'I'
104 pcs = array.array(typecode, f.read(size))
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
Darray.pxd62 int typecode
112 info.format[0] = self.ob_descr.typecode
155 if self.ob_descr.typecode != other.ob_descr.typecode:
/external/chromium_org/third_party/cython/src/Cython/Compiler/
DBuffer.py656 typecode = code.globalstate['typeinfo']
676 typecode.putln("static __Pyx_StructField %s[] = {" % structinfo_name, safe=True)
678 typecode.putln(' {&%s, "%s", offsetof(%s, %s)},' %
680 typecode.putln(' {NULL, NULL, 0}', safe=True)
681 typecode.putln("};", safe=True)
713 typecode.putln(typeinfo % tup, safe=True)
DModuleNode.py524 typecode = globalstate['type_declarations']
525 typecode.putln("")
526 typecode.putln("/*--- Type declarations ---*/")
530 typecode.putln('#ifndef _ARRAYARRAY_H')
531 typecode.putln('struct arrayobject;')
532 typecode.putln('typedef struct arrayobject arrayobject;')
533 typecode.putln('#endif')
536 env, modules, vtab_list, vtabslot_list, typecode)
/external/chromium_org/third_party/cython/src/Cython/Utility/
Darrayarray.h26 int typecode; member
/external/chromium_org/tools/telemetry/third_party/png/
Dpng.py261 out = array(ipixels.typecode)
2049 typecode = 'BH'[meta['bitdepth']>8]
2061 yield array(typecode,
2166 typecode = 'BH'[meta['bitdepth'] > 8]
2169 a = array(typecode, [0]) * 3 * width
2188 typecode = 'BH'[meta['bitdepth'] > 8]
2190 maxbuffer = struct.pack('=' + typecode, maxval) * 4 * width
2192 return array(typecode, maxbuffer)
2258 def __new__(cls, typecode, init=None): argument
2260 it = super_new(cls, typecode)
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py959 return self._a.typecode == 'f'