reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

utils/TableGen/SearchableTableEmitter.cpp
  482   emitIfdef((Twine("GET_") + Table.PreprocessorGuard + "_DECL").str(), OS);
  486     emitLookupDeclaration(Table, *Table.PrimaryKey, OS);
  487     OS << ";\n";
  490     emitLookupDeclaration(Table, *Index, OS);
  491     OS << ";\n";
  494   OS << "#endif\n\n";
  496   emitIfdef((Twine("GET_") + Table.PreprocessorGuard + "_IMPL").str(), OS);
  499   OS << "constexpr " << Table.CppTypeName << " " << Table.Name << "[] = {\n";
  502     OS << "  { ";
  507         OS << ", ";
  510       OS << primaryRepresentation(Field, Entry->getValueInit(Field.Name));
  513     OS << " }, // " << i << "\n";
  515   OS << " };\n";
  520     emitLookupFunction(Table, *Table.PrimaryKey, true, OS);
  522     emitLookupFunction(Table, *Index, false, OS);
  524   OS << "#endif\n\n";