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