HomeSort by relevance Sort by last modified time
    Searched refs:typecode (Results 1 - 20 of 20) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_array.py 17 def __init__(self, typecode, newarg=None):
18 array.array.__init__(self, typecode)
35 # typecode: the typecode to test
46 # Return a typecode that is different from our own
47 return typecodes[(typecodes.index(self.typecode)+1) % len(typecodes)]
50 a = array.array(self.typecode)
51 self.assertEqual(a.typecode, self.typecode)
53 self.assertRaises(TypeError, array.array, self.typecode, None
800 typecode = 'c' variable in class:CharacterTest
839 typecode = 'u' variable in class:CharacterTest.UnicodeTest
1003 typecode = 'b' variable in class:ByteTest
1008 typecode = 'B' variable in class:UnsignedByteTest
1013 typecode = 'h' variable in class:ShortTest
1018 typecode = 'H' variable in class:UnsignedShortTest
1023 typecode = 'i' variable in class:IntTest
1028 typecode = 'I' variable in class:UnsignedIntTest
1033 typecode = 'l' variable in class:LongTest
1038 typecode = 'L' variable in class:UnsignedLongTest
1068 typecode = 'f' variable in class:FloatTest
1073 typecode = 'd' variable in class:DoubleTest
    [all...]
test_re.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_array.py 17 def __init__(self, typecode, newarg=None):
18 array.array.__init__(self, typecode)
35 # typecode: the typecode to test
46 # Return a typecode that is different from our own
47 return typecodes[(typecodes.index(self.typecode)+1) % len(typecodes)]
50 a = array.array(self.typecode)
51 self.assertEqual(a.typecode, self.typecode)
53 self.assertRaises(TypeError, array.array, self.typecode, None
800 typecode = 'c' variable in class:CharacterTest
839 typecode = 'u' variable in class:CharacterTest.UnicodeTest
1003 typecode = 'b' variable in class:ByteTest
1008 typecode = 'B' variable in class:UnsignedByteTest
1013 typecode = 'h' variable in class:ShortTest
1018 typecode = 'H' variable in class:UnsignedShortTest
1023 typecode = 'i' variable in class:IntTest
1028 typecode = 'I' variable in class:UnsignedIntTest
1033 typecode = 'l' variable in class:LongTest
1038 typecode = 'L' variable in class:UnsignedLongTest
1068 typecode = 'f' variable in class:FloatTest
1073 typecode = 'd' variable in class:DoubleTest
    [all...]
test_re.py     [all...]
  /external/smack/src/org/xbill/DNS/
TypeBitmap.java 55 int typecode = mapbase * 256 + + i * 8 + j; local
56 types.add(Mnemonic.toInteger(typecode));
69 int typecode = Type.value(t.value); local
70 if (typecode < 0) {
73 types.add(Mnemonic.toInteger(typecode));
107 int typecode = ((Integer)it.next()).intValue(); local
108 array[(typecode & 0xFF) / 8] |= (1 << ( 7 - typecode % 8));
143 contains(int typecode) {
144 return types.contains(Mnemonic.toInteger(typecode));
    [all...]
NXTRecord.java 64 int typecode = Type.value(t.value, true); local
65 if (typecode <= 0 || typecode > 128)
67 bitmap.set(typecode);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
132 def __init__(self, typecode, value, lock=True):
133 self._typecode = typecode
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
132 def __init__(self, typecode, value, lock=True):
133 self._typecode = typecode
  /external/compiler-rt/lib/sanitizer_common/scripts/
sancov.py 101 typecode = 'L'
103 typecode = 'I'
104 pcs = array.array(typecode, f.read(size))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 362 def mktype(typecode, modulename=None):
366 classtype = codenamemapper.get(typecode, None)
369 return aetypes.mktype(typecode)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 147 def _check_size(typ, typecode=None):
151 if typecode is None:
153 typecode = typ._type_
154 actual, required = sizeof(typ), calcsize(typecode)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 147 def _check_size(typ, typecode=None):
151 if typecode is None:
153 typecode = typ._type_
154 actual, required = sizeof(typ), calcsize(typecode)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
repr.py 61 header = "array('%s', [" % x.typecode
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
repr.py 61 header = "array('%s', [" % x.typecode
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 65 return array.array, (a.typecode, a.tostring())
948 def __init__(self, typecode, value, lock=True):
949 self._typecode = typecode
959 def Array(typecode, sequence, lock=True):
960 return array.array(typecode, sequence)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 65 return array.array, (a.typecode, a.tostring())
948 def __init__(self, typecode, value, lock=True):
949 self._typecode = typecode
959 def Array(typecode, sequence, lock=True):
960 return array.array(typecode, sequence)
    [all...]
  /external/chromium_org/tools/telemetry/third_party/png/
png.py 261 out = array(ipixels.typecode)
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java     [all...]
ObjectInputStream.java 893 char typecode = (char) input.readByte(); local
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_g_l_y_f.py 959 return self._a.typecode == 'f'

Completed in 718 milliseconds