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

  /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...]
  /external/llvm/lib/TableGen/
Main.cpp 81 RecordKeeper Records;
100 TGParser Parser(SrcMgr, Records);
117 if (MainFn(Out.os(), Records))
TGParser.h 70 RecordKeeper &Records;
87 TGParser(SourceMgr &SrcMgr, RecordKeeper &records)
88 : Lex(SrcMgr), CurMultiClass(nullptr), Records(records), AnonCounter(0) {}
SetTheory.cpp 11 // Records from DAG expressions.
166 // (sequence "Format", From, To) Generate a sequence of records by name.
203 RecordKeeper &Records =
215 Record *Rec = Records.getDef(OS.str());
  /external/llvm/utils/TableGen/
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();
CallingConvEmitter.cpp 24 RecordKeeper &Records;
26 explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {}
39 std::vector<Record*> CCs = Records.getAllDerivedDefinitions("CallingConv");
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...]
CodeEmitterGen.cpp 38 RecordKeeper &Records;
40 CodeEmitterGen(RecordKeeper &R) : Records(R) {}
235 CodeGenTarget Target(Records);
236 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
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.h 65 RecordKeeper &Records;
80 CodeGenTarget(RecordKeeper &Records);
DFAPacketizerEmitter.cpp 41 RecordKeeper &Records;
252 allInsnClasses(), Records(R) {}
344 Records.getAllDerivedDefinitions("ProcessorItineraries");
398 Records.getAllDerivedDefinitions("ProcessorItineraries");
415 Records.getAllDerivedDefinitions("InstrItinClass").size();
InstrInfoEmitter.cpp 33 RecordKeeper &Records;
39 Records(R), CDP(R), SchedModels(CDP.getTargetInfo().getSchedModels()) {}
313 std::vector<Record *> Operands = Records.getAllDerivedDefinitions("Operand");
340 // run - Emit the main instruction description records for the target...
377 // Emit all of the operand info records.
380 // Emit all of the MCInstrDesc records in their ENUM ordering.
567 CodeGenTarget Target(Records);
CodeGenSchedule.h 69 // Read records don't currently have sequences, but it can be easily
115 /// 3) An implied class with a list of InstRW records that map instructions to
118 /// provided InstrRW records for this class. ItinClassDef or Writes/Reads may
139 // InstRW records associated with this class. These records may refer to an
171 // records.
173 // ItinDefList orders this processor's InstrItinData records by SchedClass idx.
182 // Array of InstrItinData records indexed by a CodeGenSchedClass index.
220 RecordKeeper &Records;
244 // combination of it's itinerary class, SchedRW list, and InstRW records
    [all...]
IntrinsicEmitter.cpp 28 RecordKeeper &Records;
34 : Records(R), TargetOnly(T) {}
70 std::vector<CodeGenIntrinsic> Ints = LoadIntrinsics(Records, TargetOnly);
RegisterInfoEmitter.cpp 34 RecordKeeper &Records;
36 RegisterInfoEmitter(RecordKeeper &R) : Records(R) {}
    [all...]
AsmWriterEmitter.cpp 37 RecordKeeper &Records;
785 Records.getAllDerivedDefinitions("InstAlias");
    [all...]
SubtargetEmitter.cpp 61 RecordKeeper &Records;
104 Records(R), SchedModels(TGT.getSchedModels()), Target(TGT.getName()) {}
117 // Get all records of class and sort
118 std::vector<Record*> DefList = Records.getAllDerivedDefinitions(ClassName);
177 Records.getAllDerivedDefinitions("SubtargetFeature");
241 Records.getAllDerivedDefinitions("Processor");
    [all...]
AsmMatcherEmitter.cpp 138 RecordKeeper &Records;
140 AsmMatcherEmitter(RecordKeeper &R) : Records(R) {}
196 /// For register classes: the records for all the registers in this class.
601 /// Tracked Records
602 RecordKeeper &Records;
619 /// Map of Register records to their class information.
623 /// Map of Predicate records to their subtarget information.
626 /// Map of AsmOperandClass records to their class information.
633 /// Map of RegisterClass records to their class information.
661 RecordKeeper &Records);
    [all...]
  /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...]
  /external/clang/utils/TableGen/
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...]
NeonEmitter.cpp 485 RecordKeeper &Records;
505 NeonEmitter(RecordKeeper &R) : Records(R), UniqueNumber(0) {
    [all...]
  /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/clang/lib/Sema/
SemaAccess.cpp 108 Records.push_back(Record->getCanonicalDecl());
129 return std::find(Records.begin(), Records.end(), R)
130 != Records.end();
143 SmallVector<CXXRecordDecl*, 4> Records;
412 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
446 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
742 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wmidata.h     [all...]

Completed in 539 milliseconds