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

1 2

  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /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...]
  /external/dbus/dbus/
dbus-signature.h 82 dbus_bool_t dbus_type_is_valid (int typecode);
85 dbus_bool_t dbus_type_is_basic (int typecode);
87 dbus_bool_t dbus_type_is_container (int typecode);
89 dbus_bool_t dbus_type_is_fixed (int typecode);
dbus-signature.c 42 /** macro that checks whether a typecode is a container type */
43 #define TYPE_IS_CONTAINER(typecode) \
44 ((typecode) == DBUS_TYPE_STRUCT || \
45 (typecode) == DBUS_TYPE_DICT_ENTRY || \
46 (typecode) == DBUS_TYPE_VARIANT || \
47 (typecode) == DBUS_TYPE_ARRAY)
290 * @param typecode either a valid type-code or DBUS_TYPE_INVALID
294 dbus_type_is_container (int typecode)
297 _dbus_return_val_if_fail (dbus_type_is_valid (typecode) || typecode == DBUS_TYPE_INVALID
    [all...]
dbus-marshal-basic.h 223 int _dbus_type_get_alignment (int typecode);
224 int _dbus_type_get_alignment (int typecode);
225 const char* _dbus_type_to_string (int typecode);
dbus-marshal-recursive-util.c 360 int typecode; member in struct:TestTypeNodeClass
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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
  /prebuilts/gdb/darwin-x86/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/plat-mac/
aepack.py 362 def mktype(typecode, modulename=None):
366 classtype = codenamemapper.get(typecode, None)
369 return aetypes.mktype(typecode)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/gdb/darwin-x86/lib/python2.7/
repr.py 61 header = "array('%s', [" % x.typecode
  /prebuilts/gdb/linux-x86/lib/python2.7/
repr.py 61 header = "array('%s', [" % x.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/gdb/darwin-x86/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/gdb/linux-x86/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/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...]

Completed in 661 milliseconds

1 2