Lines Matching defs:TypeInfo
154 struct TypeInfo {
155 TypeInfo() = default;
156 TypeInfo(const Reference &R) : Type(R) {}
160 TypeInfo(StringRef Name, StringRef Path = StringRef())
163 bool operator==(const TypeInfo &Other) const { return Type == Other.Type; }
202 struct FieldTypeInfo : public TypeInfo {
204 FieldTypeInfo(const TypeInfo &TI, StringRef Name = StringRef(),
206 : TypeInfo(TI), Name(Name), DefaultValue(DefaultValue) {}
223 MemberTypeInfo(const TypeInfo &TI, StringRef Name, AccessSpecifier Access)
351 TypeInfo ReturnType; // Info about the return type of this function.
414 TypeInfo Underlying;
476 std::optional<TypeInfo> BaseType;