Home | History | Annotate | Download | only in Reader

Lines Matching full:record

100 /// skipRecord - Read the current record and discard it.
148 // record to empty and return.
172 // Read the record code first.
173 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?");
229 // record to empty and return.
282 "Fixed or VBR abbrev record with size > MaxChunkData");
290 report_fatal_error("Abbrev record with no operands");
301 SmallVector<uint64_t, 64> Record;
314 case llvm::BitstreamEntry::Record:
331 // Read a record.
332 Record.clear();
333 switch (readRecord(Entry.ID, Record)) {
336 if (Record.size() < 1) return true;
337 CurBlockInfo = &BitStream->getOrCreateBlockInfo((unsigned)Record[0]);
343 for (unsigned i = 0, e = Record.size(); i != e; ++i)
344 Name += (char)Record[i];
352 for (unsigned i = 1, e = Record.size(); i != e; ++i)
353 Name += (char)Record[i];
354 CurBlockInfo->RecordNames.push_back(std::make_pair((unsigned)Record[0],