Home
last modified time | relevance | path

Searched refs:type_obj (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/compiler/translator/
Dgen_builtin_symbols.py1133 type_obj = self.parse_type(glsl_header_type[19:])
1134 type_obj['qualifier'] = 'Readonly Writeonly'
1135 return type_obj
1137 type_obj = self.parse_type(glsl_header_type[9:])
1138 type_obj['qualifier'] = 'Readonly'
1139 return type_obj
1141 type_obj = self.parse_type(glsl_header_type[10:])
1142 type_obj['qualifier'] = 'Writeonly'
1143 return type_obj
1145 type_obj = self.parse_type(glsl_header_type[4:])
[all …]
/external/pdfium/core/fpdfapi/parser/
Dcpdf_crypto_handler.cpp39 const CPDF_Object* type_obj = dictionary->GetDirectObjectFor(kTypeKey); in IsSignatureDictionary() local
40 if (!type_obj) in IsSignatureDictionary()
41 type_obj = dictionary->GetDirectObjectFor(pdfium::form_fields::kFT); in IsSignatureDictionary()
42 return type_obj && type_obj->GetString() == pdfium::form_fields::kSig; in IsSignatureDictionary()
/external/python/cpython3/Modules/_sha3/
Dsha3module.c491 #define SHA3_TYPE(type_obj, type_name, type_doc, type_methods) \ argument
492 static PyTypeObject type_obj = { \
/external/tensorflow/tensorflow/python/util/
Dutil.cc218 PyObject* type_obj = GetRegisteredPyObject(type_name); in IsInstanceOfRegisteredType() local
219 if (TF_PREDICT_FALSE(type_obj == nullptr)) { in IsInstanceOfRegisteredType()
229 return PyObject_IsInstance(obj, type_obj); in IsInstanceOfRegisteredType()