Lines Matching refs:IT
122 Reference(SymbolID USR, StringRef Name, InfoType IT) in Reference()
123 : USR(USR), Name(Name), RefType(IT) {} in Reference()
126 Reference(SymbolID USR, StringRef Name, InfoType IT, StringRef Path) in Reference()
127 : USR(USR), Name(Name), RefType(IT), Path(Path), in Reference()
160 TypeInfo(SymbolID Type, StringRef Field, InfoType IT) in TypeInfo()
161 : Type(Type, Field, IT) {} in TypeInfo()
162 TypeInfo(SymbolID Type, StringRef Field, InfoType IT, StringRef Path) in TypeInfo()
163 : Type(Type, Field, IT, Path) {} in TypeInfo()
175 FieldTypeInfo(SymbolID Type, StringRef Field, InfoType IT, StringRef Path, in FieldTypeInfo()
177 : TypeInfo(Type, Field, IT, Path), Name(Name) {} in FieldTypeInfo()
193 MemberTypeInfo(SymbolID Type, StringRef Field, InfoType IT, StringRef Path, in MemberTypeInfo()
195 : FieldTypeInfo(Type, Field, IT, Path, Name), Access(Access) {} in MemberTypeInfo()
245 Info(InfoType IT) : IT(IT) {} in Info()
246 Info(InfoType IT, SymbolID USR) : USR(USR), IT(IT) {} in Info()
247 Info(InfoType IT, SymbolID USR, StringRef Name) in Info()
248 : USR(USR), IT(IT), Name(Name) {} in Info()
249 Info(InfoType IT, SymbolID USR, StringRef Name, StringRef Path) in Info()
250 : USR(USR), IT(IT), Name(Name), Path(Path) {} in Info()
258 const InfoType IT = InfoType::IT_default; // InfoType of this particular Info. member
305 SymbolInfo(InfoType IT) : Info(IT) {} in SymbolInfo()
306 SymbolInfo(InfoType IT, SymbolID USR) : Info(IT, USR) {} in SymbolInfo()
307 SymbolInfo(InfoType IT, SymbolID USR, StringRef Name) : Info(IT, USR, Name) {} in SymbolInfo()
308 SymbolInfo(InfoType IT, SymbolID USR, StringRef Name, StringRef Path) in SymbolInfo()
309 : Info(IT, USR, Name, Path) {} in SymbolInfo()
406 Index(SymbolID USR, StringRef Name, InfoType IT, StringRef Path) in Index()
407 : Reference(USR, Name, IT, Path) {} in Index()