Searched refs:type_obj (Results 1 – 4 of 4) sorted by relevance
1133 type_obj = self.parse_type(glsl_header_type[19:])1134 type_obj['qualifier'] = 'Readonly Writeonly'1135 return type_obj1137 type_obj = self.parse_type(glsl_header_type[9:])1138 type_obj['qualifier'] = 'Readonly'1139 return type_obj1141 type_obj = self.parse_type(glsl_header_type[10:])1142 type_obj['qualifier'] = 'Writeonly'1143 return type_obj1145 type_obj = self.parse_type(glsl_header_type[4:])[all …]
39 const CPDF_Object* type_obj = dictionary->GetDirectObjectFor(kTypeKey); in IsSignatureDictionary() local40 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()
491 #define SHA3_TYPE(type_obj, type_name, type_doc, type_methods) \ argument492 static PyTypeObject type_obj = { \
218 PyObject* type_obj = GetRegisteredPyObject(type_name); in IsInstanceOfRegisteredType() local219 if (TF_PREDICT_FALSE(type_obj == nullptr)) { in IsInstanceOfRegisteredType()229 return PyObject_IsInstance(obj, type_obj); in IsInstanceOfRegisteredType()