Searched defs:GenericTable (Results 1 – 1 of 1) sorted by relevance
86 struct GenericTable { struct87 std::string Name;88 ArrayRef<SMLoc> Locs; // Source locations from the Record instance.89 std::string PreprocessorGuard;90 std::string CppTypeName;91 SmallVector<GenericField, 2> Fields;92 std::vector<const Record *> Entries;94 std::unique_ptr<SearchIndex> PrimaryKey;95 SmallVector<std::unique_ptr<SearchIndex>, 2> Indices;97 const GenericField *getFieldByName(StringRef Name) const { in getFieldByName()