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

1 2 3

  /external/clang/utils/TableGen/
TableGenBackends.h 32 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS);
33 void EmitClangAttrExprArgsList(RecordKeeper &Records, raw_ostream &OS);
34 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
35 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
40 void EmitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS);
41 void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS)
    [all...]
TableGen.cpp 141 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
144 EmitClangAttrClass(Records, OS);
147 EmitClangAttrExprArgsList(Records, OS);
150 EmitClangAttrImpl(Records, OS);
153 EmitClangAttrList(Records, OS);
156 EmitClangAttrPCHRead(Records, OS);
159 EmitClangAttrPCHWrite(Records, OS);
162 EmitClangAttrSpellingList(Records, OS);
165 EmitClangAttrSpellingListIndex(Records, OS);
168 EmitClangAttrLateParsedList(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");
108 void EmitClangCommentCommandList(RecordKeeper &Records, raw_ostream &OS) {
116 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 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...]
ClangAttrEmitter.cpp     [all...]
  /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/chromium_org/sync/util/
extensions_activity.h 38 typedef std::map<std::string, Record> Records;
42 // Fill |buffer| with all current records and then clear the
43 // internal records. Called on sync thread to append records to sync commit
45 void GetAndClearRecords(Records* buffer);
47 // Merge |records| with the current set of records. Called on sync thread to
48 // put back records if sync commit failed.
49 void PutRecords(const Records& records);
    [all...]
extensions_activity.cc 18 void ExtensionsActivity::GetAndClearRecords(Records* buffer) {
24 void ExtensionsActivity::PutRecords(const Records& records) {
26 for (Records::const_iterator i = records.begin(); i != records.end(); ++i) {
  /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/utils/TableGen/
TableGen.cpp 50 cl::values(clEnumValN(PrintRecords, "print-records",
51 "Print all records to stdout (default)"),
94 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
97 OS << Records; // No argument, dump all contents
100 EmitCodeEmitter(Records, OS);
103 EmitRegisterInfo(Records, OS);
106 EmitInstrInfo(Records, OS);
109 EmitCallingConv(Records, OS);
112 EmitAsmWriter(Records, OS);
115 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(),
CTagsEmitter.cpp 51 RecordKeeper &Records;
53 CTagsEmitter(RecordKeeper &R) : Records(R) {}
73 const std::map<std::string, Record *> &Classes = Records.getClasses();
74 const std::map<std::string, Record *> &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.
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...]
  /external/chromium_org/sync/engine/
build_commit_command.h 45 ExtensionsActivity::Records* extensions_activity_buffer);
72 ExtensionsActivity::Records* extensions_activity_buffer_;
  /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/chromium_org/chrome/browser/sync/glue/
extensions_activity_monitor_unittest.cc 110 syncer::ExtensionsActivity::Records results;
121 // get the records, fire some more mutating and non-mutating events,
122 // and put the old records back. Those should be merged with the new
123 // records correctly.
128 syncer::ExtensionsActivity::Records results;
139 // refugee records.
141 syncer::ExtensionsActivity::Records new_records;
151 // Fire some mutating bookmark API events and get the records multiple
152 // times. The mintor should correctly clear its records every time
157 syncer::ExtensionsActivity::Records results
    [all...]

Completed in 811 milliseconds

1 2 3