Home
last modified time | relevance | path

Searched refs:base_class (Results 1 – 20 of 20) sorted by relevance

/external/python/cffi/cffi/
Dsetuptools_ext.py138 base_class = dist.cmdclass.get('build_ext', build_ext)
139 class build_ext_make_mod(base_class):
144 base_class.run(self)
166 base_class = dist.cmdclass.get('build_py', build_py)
167 class build_py_make_mod(base_class):
169 base_class.run(self)
181 return base_class.get_source_files(self)
/external/chromium-trace/catapult/common/py_utils/py_utils/
Ddiscover.py78 base_class, argument
103 module, base_class, index_by_class_name, directly_constructable)
117 base_class, argument
139 if not issubclass(obj, base_class):
142 if obj is base_class:
/external/libtextclassifier/native/lang_id/common/
Dregistry.h293 #define SAFTM_DECLARE_CLASS_REGISTRY_NAME(base_class) \ argument
295 const char ::libtextclassifier3::mobile::RegisterableClass<base_class>::kRegistryName[]
298 #define SAFTM_DEFINE_CLASS_REGISTRY_NAME(registry_name, base_class) \ argument
301 ::libtextclassifier3::mobile::RegisterableClass<base_class>::kRegistryName[] \
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_message.py192 for base_class in bases:
193 if hasattr(base_class, '_CONSOLIDATED_FIELDS'):
194 fields = getattr(base_class, '_CONSOLIDATED_FIELDS')
195 if hasattr(base_class, '_CONSOLIDATED_DEFAULTS'):
196 defaults = getattr(base_class, '_CONSOLIDATED_DEFAULTS').copy()
/external/python/mobly/mobly/
Dutils.py677 for base_class in base_classes:
678 if issubclass(module_member, base_class):
683 def find_subclass_in_module(base_class, module): argument
696 subclasses = find_subclasses_in_module([base_class], module)
700 (base_class.__name__, [subclass.__name__ for subclass in subclasses]))
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tensor.cc1019 PyObject* TFE_Py_InitEagerTensor(PyObject* base_class) { in TFE_Py_InitEagerTensor() argument
1020 if (!PyType_Check(base_class)) { in TFE_Py_InitEagerTensor()
1025 "TFE_InitEagerTensor. Got ", Py_TYPE(base_class)->tp_name) in TFE_Py_InitEagerTensor()
1031 PyTypeObject* base_class_type = reinterpret_cast<PyTypeObject*>(base_class); in TFE_Py_InitEagerTensor()
1037 Py_TYPE(base_class)->tp_name, in TFE_Py_InitEagerTensor()
1047 Py_TYPE(base_class)->tp_name, in TFE_Py_InitEagerTensor()
1052 Py_INCREF(base_class); in TFE_Py_InitEagerTensor()
1055 PyTuple_SET_ITEM(bases, 0, base_class); in TFE_Py_InitEagerTensor()
1058 PyObject_GetAttrString(base_class, "__module__")); in TFE_Py_InitEagerTensor()
Dpywrap_tfe.h146 PyObject* TFE_Py_InitEagerTensor(PyObject* base_class);
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/CodeWarrior/
D__init__.py95 getbaseclasses(base_class)
162 'BsCl' : base_class,
DMetrowerks_Shell_Suite.py869 class base_class(aetools.ComponentItem): class
885 base_classes = base_class
1667 base_class._superclassnames = []
1668 base_class._privpropdict = {
1673 base_class._privelemdict = {
1701 'base_class' : base_class,
2141 'BsCl' : base_class,
/external/python/cpython3/Lib/email/
Dheaderregistry.py566 def __init__(self, base_class=BaseHeader, default_class=UnstructuredHeader, argument
579 self.base_class = base_class
592 return type('_'+cls.__name__, (cls, self.base_class), {})
/external/tensorflow/tensorflow/compiler/xla/python/
Dpy_values.cc327 for (auto base_class : arg.get_type().attr("__mro__")) { in DevicePut() local
328 res = handlers->find(base_class.ptr()); in DevicePut()
551 for (auto base_class : arg.get_type().attr("__mro__")) { in PyArgSignatureOfValue() local
552 res = handlers->find(base_class.ptr()); in PyArgSignatureOfValue()
/external/python/cpython3/Doc/library/
Demail.headerregistry.rst308 .. class:: HeaderRegistry(base_class=BaseHeader, \
314 dynamically, using *base_class* and a specialized class retrieved from a
319 initialization. *base_class* is always the last class in the generated
352 along with *base_class*, to create the class used to instantiate headers
365 registry) and composes it with *base_class* to produce a class,
/external/autotest/server/cros/bluetooth/
Dbluetooth_adapter_quick_tests.py292 base_class = bluetooth_quick_tests_base.BluetoothQuickTestsBase
293 return base_class.quick_test_test_decorator(
/external/pigweed/pw_protobuf/py/pw_protobuf/
Dcodegen_pwpb.py147 base_class: str,
150 self._base_class: str = base_class
2086 base_class = f'{PROTOBUF_NAMESPACE}::{base_class_name}'
2157 method = method_class(field, message, root, base_class)
2192 base_class = f'{PROTOBUF_NAMESPACE}::{base_class_name}'
2196 method = method_class(field, message, root, base_class)
/external/crosvm/devices/src/pci/pcie/
Dpcie_host.rs336 let base_class: u8 = host_config.read_config(PCI_BASE_CLASS_CODE); in new() localVariable
337 if base_class != PciClassCode::BridgeDevice.get_register_value() { in new()
/external/python/cpython3/Lib/test/test_importlib/
Dtest_abc.py129 def make_abc_subclasses(base_class, name=None, inst=False, **kwargs): argument
131 name = base_class.__name__
135 for cls in test_util.split_frozen(base_class, base, **kwargs)}
/external/pigweed/pw_rpc/py/pw_rpc/
Dcodegen.py342 base_class = f'{RPC_NAMESPACE}::Service'
/external/swiftshader/
DCMakeLists.txt414 … after data member 'member2' data member 'member' will be initialized after base class 'base_class'
424 … after data member 'member2' data member 'member' will be initialized after base class 'base_class'
/external/python/cpython3/Lib/test/test_email/
Dtest_headerregistry.py37 factory = headerregistry.HeaderRegistry(base_class=self.FooBase)
/external/clang/test/SemaCXX/
Duninitialized.cpp1112 namespace base_class { namespace