Searched refs:inclass (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Python/ |
D | errors.c | 149 PyObject *inclass = NULL; in PyErr_NormalizeException() local 167 inclass = PyExceptionInstance_Class(value); in PyErr_NormalizeException() 178 if (!inclass || !PyObject_IsSubclass(inclass, type)) { in PyErr_NormalizeException() 202 else if (inclass != type) { in PyErr_NormalizeException() 204 type = inclass; in PyErr_NormalizeException()
|
/external/swiftshader/ |
D | .dir-locals.el | 37 (inclass . +) 118 (inclass . +)
|
/external/flatbuffers/src/ |
D | idl_gen_cpp.cpp | 868 std::string UnionUnPackSignature(const EnumDef &enum_def, bool inclass) { in UnionUnPackSignature() argument 869 return (inclass ? "static " : "") + std::string("void *") + in UnionUnPackSignature() 870 (inclass ? "" : Name(enum_def) + "Union::") + in UnionUnPackSignature() 875 std::string UnionPackSignature(const EnumDef &enum_def, bool inclass) { in UnionPackSignature() argument 877 (inclass ? "" : Name(enum_def) + "Union::") + in UnionPackSignature() 880 (inclass ? " = nullptr" : "") + ") const"; in UnionPackSignature() 892 std::string TablePackSignature(const StructDef &struct_def, bool inclass, in TablePackSignature() argument 894 return std::string(inclass ? "static " : "") + "flatbuffers::Offset<" + in TablePackSignature() 895 Name(struct_def) + "> " + (inclass ? "" : Name(struct_def) + "::") + in TablePackSignature() 899 (inclass ? " = nullptr" : "") + ")"; in TablePackSignature() [all …]
|
/external/python/cpython3/Python/ |
D | errors.c | 315 PyObject *inclass = NULL; in _PyErr_NormalizeException() local 319 inclass = PyExceptionInstance_Class(value); in _PyErr_NormalizeException() 320 is_subclass = PyObject_IsSubclass(inclass, type); in _PyErr_NormalizeException() 342 else if (inclass != type) { in _PyErr_NormalizeException() 343 Py_INCREF(inclass); in _PyErr_NormalizeException() 345 type = inclass; in _PyErr_NormalizeException()
|
/external/python/cpython2/Objects/ |
D | abstract.c | 2896 PyObject *inclass = local 2898 retval = PyClass_IsSubclass(inclass, cls);
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXVector.td | 352 class CVTtoVeci32<NVPTXRegClass inclass, NVPTXRegClass outclass, string asmstr, 354 NVPTXVecInst<(outs outclass:$d), (ins inclass:$s), asmstr, [], sInst>;
|