HomeSort by relevance Sort by last modified time
    Searched refs:Record (Results 76 - 100 of 278) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/lib/TableGen/
Android.mk 8 Record.cpp \
TGParser.cpp 19 #include "llvm/TableGen/Record.h"
31 Record *Rec;
64 bool TGParser::AddValue(Record *CurRec, SMLoc Loc, const RecordVal &RV) {
83 bool TGParser::SetValue(Record *CurRec, SMLoc Loc, Init *ValName,
156 bool TGParser::AddSubClass(Record *CurRec, SubClassReference &SubClass) {
157 Record *SC = SubClass.Rec;
195 // current record.
196 const std::vector<Record*> &SCs = SC->getSuperClasses();
218 Record *CurRec = &CurMC->Rec;
236 auto NewDef = make_unique<Record>(**i)
    [all...]
  /external/llvm/utils/TableGen/
CTagsEmitter.cpp 19 #include "llvm/TableGen/Record.h"
57 static SMLoc locate(const Record *R);
62 SMLoc CTagsEmitter::locate(const Record *R) {
CodeEmitterGen.cpp 20 #include "llvm/TableGen/Record.h"
37 std::string getInstructionCase(Record *R, CodeGenTarget &Target);
38 void AddCodeToMergeInOperand(Record *R, BitsInit *BI,
63 AddCodeToMergeInOperand(Record *R, BitsInit *BI, const std::string &VarName,
105 errs() << "Too few operands in record " << R->getName() <<
178 std::string CodeEmitterGen::getInstructionCase(Record *R,
204 // Ignore fixed fields in the record, we're looking for values like:
225 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
246 Record *R = CGI->TheDef;
270 for (std::vector<Record*>::iterator IC = Insts.begin(), EC = Insts.end()
    [all...]
CodeGenSchedule.cpp 105 // Instantiate a CodeGenSchedRW for each SchedReadWrite record explicitly
146 Record *NoModelDef = Records.getDef("NoSchedModel");
147 Record *NoItinsDef = Records.getDef("NoItineraries");
159 void CodeGenSchedModels::addProcModel(Record *ProcDef) {
160 Record *ModelKey = getModelOrItinDef(ProcDef);
166 Record *ItinsDef = ModelKey->getValueAsDef("Itineraries");
182 static void scanSchedRW(Record *RWDef, RecVec &RWDefs,
183 SmallPtrSet<Record*, 16> &RWSet) {
212 SmallPtrSet<Record*, 16> RWSet;
217 Record *SchedDef = Inst->TheDef
    [all...]
AsmWriterInst.h 25 class Record;
CodeGenDAGPatterns.cpp 22 #include "llvm/TableGen/Record.h"
767 Record *Op = PatFragRec->getOnlyTree()->getOperator();
847 Record *Def = Pred->getDef();
867 SDTypeConstraint::SDTypeConstraint(Record *R) {
    [all...]
AsmWriterEmitter.cpp 25 #include "llvm/TableGen/Record.h"
279 Record *AsmWriter = Target.getAsmWriter();
545 std::vector<Record*> AltNameList =
584 Record *AsmWriter = Target.getAsmWriter();
587 std::vector<Record*> AltNameIndices = Target.getRegAltNameIndices();
638 SmallVector<Record*, 4> ReqFeatures;
781 Record *AsmWriter = Target.getAsmWriter();
795 std::vector<Record*> AllInstAliases =
802 for (std::vector<Record*>::iterator
805 const Record *R = *I
    [all...]
CodeGenInstruction.cpp 20 #include "llvm/TableGen/Record.h"
28 CGIOperandList::CGIOperandList(Record *R) : TheDef(R) {
67 Record *Rec = Arg->getDef();
295 CodeGenInstruction::CodeGenInstruction(Record *R)
369 Record *FirstImplicitDef = ImplicitDefs[0];
436 Record *InstOpRec, bool hasSubOps,
441 Record *ResultRecord = ADI ? ADI->getDef() : nullptr;
444 // If the operand is a record, it must have a name, and the record type
509 ResOp = ResultOperand(static_cast<Record*>(nullptr))
    [all...]
DAGISelMatcherGen.cpp 17 #include "llvm/TableGen/Record.h"
25 static MVT::SimpleValueType getRegisterValueType(Record *R,
70 /// NextRecordedOperandNo - As we emit opcodes to record matched values in
72 /// record into.
92 SmallVector<std::pair<Record*, unsigned>, 2> PhysRegInputs;
122 /// seen, record it. Otherwise, emit a check to make sure this is the same
234 Record *LeafRec = DI->getDef();
256 // record the register
359 // Record the node and remember it in our chained nodes list.
423 // Record the node and remember it in our chained nodes list
    [all...]
  /frameworks/base/tools/preload/
Record.java 20 class Record {
94 /** Type of record. */
100 /** Record time (ns). */
109 Record(String line, int lineNum) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
GestureRecorder.java 41 public abstract class Record {
45 public class MotionEventRecord extends Record {
78 public class TagRecord extends Record {
93 private LinkedList<Record> mRecords = new LinkedList<Record>();
125 for (Record r : mRecords) {
  /frameworks/compile/mclinker/include/mcld/LD/
EhFrame.h 59 class Record : public RegionFragment {
61 explicit Record(llvm::StringRef pRegion);
62 virtual ~Record();
71 DISALLOW_COPY_AND_ASSIGN(Record);
79 class CIE : public Record {
137 class FDE : public Record {
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 1 //===--- LayoutOverrideSource.cpp --Override Record Layouts ---------------===//
35 // Parse the output of -fdump-record-layouts.
47 if (LineStr.find("*** Dumping AST Record Layout") != StringRef::npos) {
156 LayoutOverrideSource::layoutRecordType(const RecordDecl *Record,
163 if (!Record->getIdentifier())
166 // Check whether we have a layout for this record.
167 llvm::StringMap<Layout>::iterator Known = Layouts.find(Record->getName());
173 for (RecordDecl::field_iterator F = Record->field_begin(),
174 FEnd = Record->field_end();
  /frameworks/base/services/core/java/com/android/server/
TelephonyRegistry.java 88 private static class Record {
130 private final ArrayList<Record> mRecords = new ArrayList<Record>();
240 for (Record r : mRecords) {
380 Record r;
393 r = new Record();
396 if (DBG) log("listen oscl: add new record");
440 for (Record r : mRecords) {
498 Record r;
508 r = new Record();
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
alphaindex.h 467 * Add a record to the index. Each record will be associated with an index Bucket
468 * based on the record's name. The list of records for each bucket will be sorted
473 * @param name The display name for the Record. The Record will be placed in
477 * data pointer the name will be available for each Record.
519 * Given the name of a record, return the zero-based index of the Bucket
521 * A Record will not be added to the index by this function.
596 * Advance to the next record in the current Bucket.
597 * When nextBucket() is called, Record iteration is reset to just before th
    [all...]
  /external/llvm/unittests/ProfileData/
CoverageMappingTest.cpp 65 std::error_code readNextRecord(CoverageMappingRecord &Record) override {
70 Record.FunctionName = Name;
71 Record.FunctionHash = Hash;
72 Record.Filenames = Filenames;
73 Record.Expressions = {};
74 Record.MappingRegions = Regions;
  /external/harfbuzz_ng/src/
hb-ot-layout-jstf-table.hh 126 const Record<JstfLangSys>::sanitize_closure_t * = NULL) {
166 const Record<JstfScript>::sanitize_closure_t * = NULL) {
  /external/lldb/include/lldb/Symbol/
ClangExternalASTSourceCallbacks.h 38 const clang::RecordDecl *Record,
126 layoutRecordType(const clang::RecordDecl *Record,
  /external/clang/lib/AST/
CXXInheritance.cpp 137 const CXXRecordDecl *Record = this;
140 for (const auto &I : Record->bases()) {
152 !Base->isCurrentInstantiation(Record))) {
168 Record = Queue.pop_back_val(); // not actually a queue.
175 const CXXRecordDecl *Record,
180 // The access of the path down to this record.
184 for (const auto &BaseSpec : Record->bases()) {
185 // Find the record of the base class subobjects for this type.
219 Element.Class = Record;
327 if (const RecordType *Record = PE.Base->getType()->getAs<RecordType>()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
pystone.py 25 record to None. This is rather inefficient and not
29 comparison of the record). Version 1.1 runs 5-10
43 class Record:
54 return Record(self.PtrComp, self.Discr, self.EnumComp,
94 PtrGlbNext = Record()
95 PtrGlb = Record()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
pystone.py 25 record to None. This is rather inefficient and not
29 comparison of the record). Version 1.1 runs 5-10
43 class Record:
54 return Record(self.PtrComp, self.Discr, self.EnumComp,
94 PtrGlbNext = Record()
95 PtrGlb = Record()
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp     [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
AlphabeticIndex.java 81 * for (AlphabeticIndex.Record&lt;Integer&gt; item : bucket) {
139 // Comparator for records, so that the Record class can be static.
140 private final Comparator<Record<V>> recordComparator = new Comparator<Record<V>>() {
141 public int compare(Record<V> o1, Record<V> o2) {
150 private List<Record<V>> inputList;
165 * @param <V> The Record value type is unused. It can be omitted for this class
617 // addRecord() sets buckets=null rather than inserting the new record into it.
669 * Add a record (name and data) to the index. The name will be used to sort the items into buckets, and to sor
    [all...]
  /external/llvm/lib/ProfileData/
CoverageMapping.cpp 187 for (const auto &Record : CoverageReader) {
188 CounterMappingContext Ctx(Record.Expressions);
192 Record.FunctionName, Record.FunctionHash, Counts)) {
201 assert(!Record.MappingRegions.empty() && "Function has no regions");
202 FunctionRecord Function(Record.FunctionName, Record.Filenames);
203 for (const auto &Region : Record.MappingRegions) {
209 if (Function.CountedRegions.size() != Record.MappingRegions.size()) {

Completed in 765 milliseconds

1 2 34 5 6 7 8 91011>>