Searched defs:GenericTable (Results 1 – 1 of 1) sorted by relevance
74 struct GenericTable { struct75 std::string Name;76 ArrayRef<SMLoc> Locs; // Source locations from the Record instance.77 std::string PreprocessorGuard;78 std::string CppTypeName;79 SmallVector<GenericField, 2> Fields;80 std::vector<Record *> Entries;82 std::unique_ptr<SearchIndex> PrimaryKey;83 SmallVector<std::unique_ptr<SearchIndex>, 2> Indices;85 const GenericField *getFieldByName(StringRef Name) const { in getFieldByName()