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

1 2 3

  /external/clang/utils/TableGen/
TableGenBackends.h 32 void EmitClangAttrParserStringSwitches(RecordKeeper &Records, raw_ostream &OS);
33 void EmitClangAttrClass(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 EmitClangAttrHasAttrImpl(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
40 void EmitClangAttrASTVisitor(RecordKeeper &Records, raw_ostream &OS);
41 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");
39 void clang::EmitClangCommentHTMLTagsProperties(RecordKeeper &Records,
41 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 134 static ParsedAttrMap getParsedAttrList(const RecordKeeper &Records,
136 std::vector<Record *> Attrs = Records.getAllDerivedDefinitions("Attr");
    [all...]
  /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);
136 EmitFixedLenDecoder(Records, OS, PredicateNamespace,
144 EmitFixedLenDecoder(Records, OS, Target.getName(),
CTagsEmitter.cpp 50 RecordKeeper &Records;
52 CTagsEmitter(RecordKeeper &R) : Records(R) {}
72 const std::map<std::string, Record *> &Classes = Records.getClasses();
73 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.
498 static void emitEnums(raw_ostream &OS, RecordKeeper &Records) {
501 InstrMapVec = Records.getAllDerivedDefinitions("InstrMapping");
504 // Iterate over all InstrMapping records and create a map between colum
    [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");
281 Records.getDefs().begin(), E = Records.getDefs().end(); I != E; ++I) {
CodeGenTarget.cpp 135 CodeGenTarget::CodeGenTarget(RecordKeeper &records)
136 : Records(records), RegBank(nullptr), SchedModels(nullptr) {
137 std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
214 RegBank = new CodeGenRegBank(Records);
219 RegAltNameIndices = Records.getAllDerivedDefinitions("RegAltNameIndex");
268 SchedModels = new CodeGenSchedModels(Records, *this);
273 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
285 RecordKeeper &Records) {
286 const Record *Rec = Records.getDef(Name)
    [all...]
DFAPacketizerEmitter.cpp 41 RecordKeeper &Records;
252 allInsnClasses(), Records(R) {}
344 Records.getAllDerivedDefinitions("ProcessorItineraries");
398 Records.getAllDerivedDefinitions("ProcessorItineraries");
415 Records.getAllDerivedDefinitions("InstrItinClass").size();
  /external/chromium_org/sync/engine/
commit.h 43 ExtensionsActivity::Records extensions_activity_buffer);
74 ExtensionsActivity::Records extensions_activity_buffer_;
commit_util.h 32 ExtensionsActivity::Records* extensions_activity_buffer,
commit.cc 22 ExtensionsActivity::Records extensions_activity_buffer)
61 ExtensionsActivity::Records extensions_activity_buffer;
  /external/chromium_org/ui/gfx/geometry/
r_tree_base.h 9 // Records, which hold (key, rectangle) pairs.
31 typedef std::vector<const RecordBase*> Records;
38 // Records.
43 // Appends to |records_out| the set of Records in this subtree with rects
47 Records* records_out) const = 0;
49 // Returns all records stored in the subtree rooted at this node. Appends to
51 virtual void AppendAllRecords(Records* records_out) const = 0;
56 // Returns -1 for Records, or the height of this subtree for Nodes. The
57 // height of a leaf Node (a Node containing only Records) is 0, a leaf's
99 Records* records_out) const OVERRIDE
    [all...]
r_tree.h 157 RTreeBase::Records matching_records;
159 for (RTreeBase::Records::const_iterator it = matching_records.begin();
  /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 108 syncer::ExtensionsActivity::Records results;
119 // get the records, fire some more mutating and non-mutating events,
120 // and put the old records back. Those should be merged with the new
121 // records correctly.
126 syncer::ExtensionsActivity::Records results;
137 // refugee records.
139 syncer::ExtensionsActivity::Records new_records;
149 // Fire some mutating bookmark API events and get the records multiple
150 // times. The mintor should correctly clear its records every time
155 syncer::ExtensionsActivity::Records results
    [all...]

Completed in 411 milliseconds

1 2 3