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

1 2 3

  /external/clang/utils/TableGen/
TableGenBackends.h 32 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS);
33 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
34 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
35 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS);
40 void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS);
41 void EmitClangAttrParsedAttrList(RecordKeeper &Records, raw_ostream &OS)
    [all...]
TableGen.cpp 141 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
144 EmitClangAttrClass(Records, OS);
147 EmitClangAttrImpl(Records, OS);
150 EmitClangAttrList(Records, OS);
153 EmitClangAttrPCHRead(Records, OS);
156 EmitClangAttrPCHWrite(Records, OS);
159 EmitClangAttrSpellingList(Records, OS);
162 EmitClangAttrSpellingListIndex(Records, OS);
165 EmitClangAttrLateParsedList(Records, OS);
168 EmitClangAttrTemplateInstantiate(Records, OS)
    [all...]
ClangCommentHTMLTagsEmitter.cpp 23 void EmitClangCommentHTMLTags(RecordKeeper &Records, raw_ostream &OS) {
24 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
41 void EmitClangCommentHTMLTagsProperties(RecordKeeper &Records,
43 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");
105 void EmitClangCommentCommandList(RecordKeeper &Records, raw_ostream &OS) {
113 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");
ClangAttrEmitter.cpp     [all...]
ClangDiagnosticsEmitter.cpp 41 RecordKeeper &Records;
44 DiagGroupParentMap(RecordKeeper &records) : Records(records) {
46 = Records.getAllDerivedDefinitions("DiagGroup");
96 RecordKeeper &Records;
100 DiagCategoryIDMap(RecordKeeper &records) : Records(records) {
101 DiagGroupParentMap ParentInfo(Records);
    [all...]
OptParserEmitter.cpp 103 void EmitOptParser(RecordKeeper &Records, raw_ostream &OS, bool GenDefs) {
106 Records.getAllDerivedDefinitions("OptionGroup");
107 std::vector<Record*> Opts = Records.getAllDerivedDefinitions("Option");
  /external/llvm/utils/TableGen/
TableGen.cpp 49 cl::values(clEnumValN(PrintRecords, "print-records",
50 "Print all records to stdout (default)"),
91 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
94 OS << Records; // No argument, dump all contents
97 EmitCodeEmitter(Records, OS);
100 EmitRegisterInfo(Records, OS);
103 EmitInstrInfo(Records, OS);
106 EmitCallingConv(Records, OS);
109 EmitAsmWriter(Records, OS);
112 EmitAsmMatcher(Records, OS)
    [all...]
DisassemblerEmitter.cpp 106 void EmitDisassembler(RecordKeeper &Records, raw_ostream &OS) {
107 CodeGenTarget Target(Records);
132 EmitFixedLenDecoder(Records, OS, Target.getName() == "AArch64" ? "AArch64" : "ARM",
140 EmitFixedLenDecoder(Records, OS, Target.getName(),
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.
499 static void emitEnums(raw_ostream &OS, RecordKeeper &Records) {
502 InstrMapVec = Records.getAllDerivedDefinitions("InstrMapping");
505 // Iterate over all InstrMapping records and create a map between colum
    [all...]
PseudoLoweringEmitter.cpp 45 RecordKeeper &Records;
61 PseudoLoweringEmitter(RecordKeeper &R) : Records(R), Target(R) {}
270 Record *ExpansionClass = Records.getClass("PseudoInstExpansion");
271 Record *InstructionClass = Records.getClass("Instruction");
277 Records.getDefs().begin(), E = Records.getDefs().end(); I != E; ++I) {
DFAPacketizerEmitter.cpp 41 RecordKeeper &Records;
267 allInsnClasses(), Records(R) {}
359 Records.getAllDerivedDefinitions("ProcessorItineraries");
413 Records.getAllDerivedDefinitions("ProcessorItineraries");
430 Records.getAllDerivedDefinitions("InstrItinClass").size();
CodeGenTarget.cpp 130 CodeGenTarget::CodeGenTarget(RecordKeeper &records)
131 : Records(records), RegBank(0), SchedModels(0) {
132 std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
205 RegBank = new CodeGenRegBank(Records);
210 RegAltNameIndices = Records.getAllDerivedDefinitions("RegAltNameIndex");
259 SchedModels = new CodeGenSchedModels(Records, *this);
264 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
276 RecordKeeper &Records) {
277 const Record *Rec = Records.getDef(Name)
    [all...]
CodeGenTarget.h 65 RecordKeeper &Records;
80 CodeGenTarget(RecordKeeper &Records);
CodeEmitterGen.cpp 38 RecordKeeper &Records;
40 CodeEmitterGen(RecordKeeper &R) : Records(R) {}
237 CodeGenTarget Target(Records);
238 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
CallingConvEmitter.cpp 24 RecordKeeper &Records;
26 explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {}
39 std::vector<Record*> CCs = Records.getAllDerivedDefinitions("CallingConv");
  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor.h 44 typedef std::map<std::string, Record> Records;
51 // Fills |buffer| with snapshot of current records in constant time by
53 void GetAndClearRecords(Records* buffer);
55 // Add |records| piece-wise (by extension id) to the set of active records.
57 void PutRecords(const Records& records);
64 Records records_;
extensions_activity_monitor.cc 67 void ExtensionsActivityMonitor::GetAndClearRecords(Records* buffer) {
73 void ExtensionsActivityMonitor::PutRecords(const Records& records) {
75 for (Records::const_iterator i = records.begin(); i != records.end(); ++i) {
extensions_activity_monitor_unittest.cc 171 ExtensionsActivityMonitor::Records results;
197 ExtensionsActivityMonitor::Records results;
210 // refugee records.
212 ExtensionsActivityMonitor::Records new_records;
231 ExtensionsActivityMonitor::Records results;
  /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/chromium/chrome/browser/sync/sessions/
sync_session.h 113 const ExtensionsActivityMonitor::Records& extensions_activity() const {
116 ExtensionsActivityMonitor::Records* mutable_extensions_activity() {
142 ExtensionsActivityMonitor::Records extensions_activity_;
  /external/llvm/lib/TableGen/
Main.cpp 81 RecordKeeper Records;
100 TGParser Parser(SrcMgr, Records);
117 if (MainFn(Out.os(), 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:

Completed in 268 milliseconds

1 2 3