Home
last modified time | relevance | path

Searched refs:inclass (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Python/
Derrors.c149 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/python/cpython3/Python/
Derrors.c258 PyObject *inclass = NULL; in PyErr_NormalizeException() local
262 inclass = PyExceptionInstance_Class(value); in PyErr_NormalizeException()
263 is_subclass = PyObject_IsSubclass(inclass, type); in PyErr_NormalizeException()
285 else if (inclass != type) { in PyErr_NormalizeException()
286 Py_INCREF(inclass); in PyErr_NormalizeException()
288 type = inclass; in PyErr_NormalizeException()
/external/flatbuffers/src/
Didl_gen_cpp.cpp709 std::string UnionUnPackSignature(const EnumDef &enum_def, bool inclass) { in UnionUnPackSignature() argument
710 return (inclass ? "static " : "") + std::string("void *") + in UnionUnPackSignature()
711 (inclass ? "" : Name(enum_def) + "Union::") + in UnionUnPackSignature()
716 std::string UnionPackSignature(const EnumDef &enum_def, bool inclass) { in UnionPackSignature() argument
718 (inclass ? "" : Name(enum_def) + "Union::") + in UnionPackSignature()
721 (inclass ? " = nullptr" : "") + ") const"; in UnionPackSignature()
733 std::string TablePackSignature(const StructDef &struct_def, bool inclass, in TablePackSignature() argument
735 return std::string(inclass ? "static " : "") + "flatbuffers::Offset<" + in TablePackSignature()
736 Name(struct_def) + "> " + (inclass ? "" : Name(struct_def) + "::") + in TablePackSignature()
740 (inclass ? " = nullptr" : "") + ")"; in TablePackSignature()
[all …]
/external/swiftshader/
D.dir-locals.el37 (inclass . +)
118 (inclass . +)
/external/python/cpython2/Objects/
Dabstract.c2896 PyObject *inclass = local
2898 retval = PyClass_IsSubclass(inclass, cls);
/external/llvm/lib/Target/NVPTX/
DNVPTXVector.td352 class CVTtoVeci32<NVPTXRegClass inclass, NVPTXRegClass outclass, string asmstr,
354 NVPTXVecInst<(outs outclass:$d), (ins inclass:$s), asmstr, [], sInst>;