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/flatbuffers/src/
Didl_gen_cpp.cpp726 std::string UnionUnPackSignature(const EnumDef &enum_def, bool inclass) { in UnionUnPackSignature() argument
727 return (inclass ? "static " : "") + std::string("void *") + in UnionUnPackSignature()
728 (inclass ? "" : Name(enum_def) + "Union::") + in UnionUnPackSignature()
733 std::string UnionPackSignature(const EnumDef &enum_def, bool inclass) { in UnionPackSignature() argument
735 (inclass ? "" : Name(enum_def) + "Union::") + in UnionPackSignature()
738 (inclass ? " = nullptr" : "") + ") const"; in UnionPackSignature()
750 std::string TablePackSignature(const StructDef &struct_def, bool inclass, in TablePackSignature() argument
752 return std::string(inclass ? "static " : "") + "flatbuffers::Offset<" + in TablePackSignature()
753 Name(struct_def) + "> " + (inclass ? "" : Name(struct_def) + "::") + in TablePackSignature()
757 (inclass ? " = nullptr" : "") + ")"; in TablePackSignature()
[all …]
/external/swiftshader/
D.dir-locals.el37 (inclass . +)
118 (inclass . +)
/external/python/cpython3/Python/
Derrors.c310 PyObject *inclass = NULL; in _PyErr_NormalizeException() local
314 inclass = PyExceptionInstance_Class(value); in _PyErr_NormalizeException()
315 is_subclass = PyObject_IsSubclass(inclass, type); in _PyErr_NormalizeException()
337 else if (inclass != type) { in _PyErr_NormalizeException()
338 Py_INCREF(inclass); in _PyErr_NormalizeException()
340 type = inclass; in _PyErr_NormalizeException()
/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>;