Searched refs:DbgNode (Results 1 – 2 of 2) sorted by relevance
38 return DbgNode && in Verify()39 (DIDerivedType(DbgNode).Verify() || in Verify()40 DICompositeType(DbgNode).Verify() || DIBasicType(DbgNode).Verify() || in Verify()41 DIVariable(DbgNode).Verify() || DISubprogram(DbgNode).Verify() || in Verify()42 DIGlobalVariable(DbgNode).Verify() || DIFile(DbgNode).Verify() || in Verify()43 DICompileUnit(DbgNode).Verify() || DINameSpace(DbgNode).Verify() || in Verify()44 DILexicalBlock(DbgNode).Verify() || in Verify()45 DILexicalBlockFile(DbgNode).Verify() || in Verify()46 DISubrange(DbgNode).Verify() || DIEnumerator(DbgNode).Verify() || in Verify()47 DIObjCProperty(DbgNode).Verify() || in Verify()[all …]
84 const MDNode *DbgNode;104 explicit DIDescriptor(const MDNode *N = 0) : DbgNode(N) {} in DbgNode() function108 operator MDNode *() const { return const_cast<MDNode *>(DbgNode); }109 MDNode *operator->() const { return const_cast<MDNode *>(DbgNode); }116 LLVM_EXPLICIT operator bool() const { return DbgNode != 0; }118 bool operator==(DIDescriptor Other) const { return DbgNode == Other.DbgNode; }316 bool isValid() const { return DbgNode && isType(); } in isValid()