Home | History | Annotate | Download | only in AST

Lines Matching refs:Uuid

67   // Loop all record redeclaration looking for an uuid attribute.
89 // If the template argument has a UUID, there are three cases:
90 // - This is the first UUID seen for this RecordDecl.
91 // - This is a different UUID than previously seen for this RecordDecl.
92 // - This is the same UUID than previously seen for this RecordDecl.
100 // Seeing multiple UUIDs means that we couldn't find a UUID
112 if (auto Uuid = I->getAttr<UuidAttr>())
113 return Uuid;
119 StringRef Uuid;
121 Uuid = CXXUuidofExpr::GetUuidAttrOfType(getTypeOperand(Context))->getGuid();
126 Uuid = CXXUuidofExpr::GetUuidAttrOfType(Op->getType())->getGuid();
128 Uuid = "00000000-0000-0000-0000-000000000000";
130 return Uuid;