Searched refs:find_type (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/lldb/test/API/functionalities/type_get_module/ |
D | TestTypeGetModule.py | 48 def find_type(self, type_list, name): member in TestTypeGetModule 73 cu_type = self.find_type(comp_unit.GetTypes(), 'compile_unit1_type') 77 cu_type = self.find_type(comp_unit.GetTypes(), 'compile_unit2_type')
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | typeexpr.py | 80 def find_type(self, name): member in type_table 193 te = type_expression.built_in_types.find_type( type_name ) 195 te = extra_types.find_type( type_name )
|
D | gl_XML.py | 1026 def find_type( self, type_name ): member in gl_api
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | stateful_random_ops_test.py | 46 def find_type(device_type): function 51 d = find_type("TPU") or find_type("XLA_GPU") or find_type("XLA_CPU")
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | mbim_message.py | 284 def _find_field_names_of_type(cls, find_type, get_all=False): argument 295 if field_type == find_type:
|
/external/python/pybind11/include/pybind11/ |
D | cast.h | 307 iterator find(const type_info *find_type) { in find() 309 while (it != endit && it->type != find_type) ++it; in find() 326 PYBIND11_NOINLINE inline value_and_holder instance::get_value_and_holder(const type_info *find_type… in get_value_and_holder() argument 328 if (!find_type || Py_TYPE(this) == find_type->type) in get_value_and_holder() 329 return value_and_holder(this, find_type, 0, 0); in get_value_and_holder() 332 auto it = vhs.find(find_type); in get_value_and_holder() 345 … get_fully_qualified_tp_name(find_type->type) + "' is not a pybind11 base of the given `" + in get_value_and_holder()
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_i.h | 440 enum p2p_discovery_type find_type; member
|
D | p2p.c | 1021 (p2p->find_type == P2P_FIND_PROGRESSIVE || in p2p_search() 1022 p2p->find_type == P2P_FIND_START_WITH_FULL)) { in p2p_search() 1026 } else if ((p2p->find_type == P2P_FIND_PROGRESSIVE && in p2p_search() 1028 (p2p->find_type == P2P_FIND_START_WITH_FULL && in p2p_search() 1237 p2p->find_type = type; in p2p_find()
|
/external/python/pybind11/include/pybind11/detail/ |
D | common.h | 470 …value_and_holder get_value_and_holder(const type_info *find_type = nullptr, bool throw_if_missing …
|