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