HomeSort by relevance Sort by last modified time
    Searched refs:Records (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/clang/utils/TableGen/
TableGenBackends.h 35 void EmitClangAttrParserStringSwitches(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
40 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
41 void EmitClangAttrHasAttrImpl(RecordKeeper &Records, raw_ostream &OS);
42 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
43 void EmitClangAttrASTVisitor(RecordKeeper &Records, raw_ostream &OS);
44 void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS)
    [all...]
TableGen.cpp 143 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
146 EmitClangAttrClass(Records, OS);
149 EmitClangAttrParserStringSwitches(Records, OS);
152 EmitClangAttrImpl(Records, OS);
155 EmitClangAttrList(Records, OS);
158 EmitClangAttrPCHRead(Records, OS);
161 EmitClangAttrPCHWrite(Records, OS);
164 EmitClangAttrHasAttrImpl(Records, OS);
167 EmitClangAttrSpellingListIndex(Records, OS);
170 EmitClangAttrASTVisitor(Records, OS)
    [all...]
ClangCommentHTMLTagsEmitter.cpp 23 void clang::EmitClangCommentHTMLTags(RecordKeeper &Records, raw_ostream &OS) {
24 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
38 void clang::EmitClangCommentHTMLTagsProperties(RecordKeeper &Records,
40 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
ClangCommentCommandInfoEmitter.cpp 23 void EmitClangCommentCommandInfo(RecordKeeper &Records, raw_ostream &OS) {
29 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
109 void EmitClangCommentCommandList(RecordKeeper &Records, raw_ostream &OS) {
117 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Command");
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 50 void EmitClangCommentHTMLNamedCharacterReferences(RecordKeeper &Records,
52 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("NCR");
ClangASTNodesEmitter.cpp 31 RecordKeeper &Records;
58 : Records(R), Root(N, SMLoc(), R), BaseSuffix(S)
156 = Records.getAllDerivedDefinitions(Root.getName());
185 void EmitClangDeclContext(RecordKeeper &Records, raw_ostream &OS) {
202 = Records.getAllDerivedDefinitions("DeclContext");
203 RecordVector Decls = Records.getAllDerivedDefinitions("Decl");
ClangDiagnosticsEmitter.cpp 42 RecordKeeper &Records;
45 DiagGroupParentMap(RecordKeeper &records) : Records(records) {
47 = Records.getAllDerivedDefinitions("DiagGroup");
97 RecordKeeper &Records;
101 DiagCategoryIDMap(RecordKeeper &records) : Records(records) {
102 DiagGroupParentMap ParentInfo(Records);
    [all...]
ClangAttrEmitter.cpp 135 static ParsedAttrMap getParsedAttrList(const RecordKeeper &Records,
137 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
    [all...]
ClangSACheckersEmitter.cpp 97 void EmitClangSACheckers(RecordKeeper &Records, raw_ostream &OS) {
98 std::vector<Record*> checkers = Records.getAllDerivedDefinitions("Checker");
108 std::vector<Record*> packages = Records.getAllDerivedDefinitions("Package");
120 checkerGroups = Records.getAllDerivedDefinitions("CheckerGroup");
  /external/llvm/utils/TableGen/
TableGen.cpp 51 cl::values(clEnumValN(PrintRecords, "print-records",
52 "Print all records to stdout (default)"),
97 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
100 OS << Records; // No argument, dump all contents
103 EmitCodeEmitter(Records, OS);
106 EmitRegisterInfo(Records, OS);
109 EmitInstrInfo(Records, OS);
112 EmitCallingConv(Records, OS);
115 EmitAsmWriter(Records, OS);
118 EmitAsmMatcher(Records, OS)
    [all...]
Attributes.cpp 25 Attributes(RecordKeeper &R) : Records(R) {}
31 RecordKeeper &Records;
41 Records.getAllDerivedDefinitions("EnumAttr");
DisassemblerEmitter.cpp 106 void EmitDisassembler(RecordKeeper &Records, raw_ostream &OS) {
107 CodeGenTarget Target(Records);
136 EmitFixedLenDecoder(Records, OS, PredicateNamespace,
144 EmitFixedLenDecoder(Records, OS, Target.getName(),
CTagsEmitter.cpp 48 RecordKeeper &Records;
50 CTagsEmitter(RecordKeeper &R) : Records(R) {}
66 const auto &Classes = Records.getClasses();
67 const auto &Defs = Records.getDefs();
CodeGenMapTable.cpp 36 // 1) Iterate through all the records that derive from "InstrMapping" class.
40 // vector of RowFields values and contains vectors of Records (instructions) as
177 // the information provided in InstrMapping records. It outputs these
194 // values of the row fields and contains vector of records as values.
202 MapTableEmitter(CodeGenTarget &Target, RecordKeeper &Records, Record *IMRec):
205 InstrDefs = Records.getAllDerivedDefinitions(FilterClass);
236 // the fields listed as RowFields. It stores vectors of records as values.
494 static void emitEnums(raw_ostream &OS, RecordKeeper &Records) {
497 InstrMapVec = Records.getAllDerivedDefinitions("InstrMapping");
500 // Iterate over all InstrMapping records and create a map between colum
    [all...]
CodeGenTarget.cpp 147 CodeGenTarget::CodeGenTarget(RecordKeeper &records)
148 : Records(records) {
149 std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
223 RegBank = llvm::make_unique<CodeGenRegBank>(Records);
228 RegAltNameIndices = Records.getAllDerivedDefinitions("RegAltNameIndex");
273 SchedModels = llvm::make_unique<CodeGenSchedModels>(Records, *this);
278 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
291 RecordKeeper &Records) {
292 const Record *Rec = Records.getDef(Name)
    [all...]
PseudoLoweringEmitter.cpp 46 RecordKeeper &Records;
62 PseudoLoweringEmitter(RecordKeeper &R) : Records(R), Target(R) {}
274 Record *ExpansionClass = Records.getClass("PseudoInstExpansion");
275 Record *InstructionClass = Records.getClass("Instruction");
280 for (const auto &D : Records.getDefs()) {
CodeGenTarget.h 65 RecordKeeper &Records;
81 CodeGenTarget(RecordKeeper &Records);
CodeEmitterGen.cpp 30 RecordKeeper &Records;
32 CodeEmitterGen(RecordKeeper &R) : Records(R) {}
224 CodeGenTarget Target(Records);
225 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
CallingConvEmitter.cpp 24 RecordKeeper &Records;
26 explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {}
38 std::vector<Record*> CCs = Records.getAllDerivedDefinitions("CallingConv");
OptParserEmitter.cpp 108 void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) {
111 Records.getAllDerivedDefinitions("OptionGroup");
112 std::vector<Record*> Opts = Records.getAllDerivedDefinitions("Option");
  /external/llvm/include/llvm/TableGen/
Main.h 21 /// \brief Perform the action using Records, and write output to OS.
23 typedef bool TableGenMainFn(raw_ostream &OS, RecordKeeper &Records);
  /external/llvm/lib/TableGen/
Main.cpp 74 RecordKeeper Records;
92 TGParser Parser(SrcMgr, Records);
109 if (MainFn(Out.os(), Records))
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 125 Profiling(llvm::StringMap<llvm::TimeRecord> &Records)
126 : Records(Records) {}
129 llvm::StringMap<llvm::TimeRecord> &Records;
  /external/libnfc-nxp/src/
phFriNfc_NdefReg.h 75 * \ref PH_FRINFC_NDEFREG_MAX_RTD is the maximum number of Records that can
102 * - This library gets a NDEF message and extracts the records using the NDEF Record (Tools) Library.
103 * - Alternatively, this component can process pre-extracted NDEF records.
104 * - This library only handles TOP level records, cascaded content is ignored.
131 * The records that matched with the registred RTDs for this callback.
132 * The number of records here will be equal to the first parameter Count.
134 phFriNfc_NdefRecord_t Records[PH_FRINFC_NDEFREG_MAX_RTD];
255 won't parse correctly chunked records */
405 * The entry point for NDEF \b RECORDS retrieved from the Peer (Remote) Device:
  /external/llvm/include/llvm/ProfileData/
CoverageMapping.h 277 ArrayRef<FunctionRecord> Records;
281 /// \brief Skip records whose primary file is not \c Filename.
287 : Records(Records_), Current(Records.begin()), Filename(Filename) {
291 FunctionRecordIterator() : Current(Records.begin()) {}
300 assert(Current != Records.end() && "incremented past end");
447 /// specializations, have distinct coverage records for each instantiation.

Completed in 332 milliseconds

1 2 3