HomeSort by relevance Sort by last modified time
    Searched refs:AbbrevID (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 136 /// Record - This is a record with a specific AbbrevID.
157 static BitstreamEntry getRecord(unsigned AbbrevID) {
158 BitstreamEntry E; E.Kind = Record; E.ID = AbbrevID; return E;
473 /// SkipBlock - Having read the ENTER_SUBBLOCK abbrevid and a BlockID, skip
493 /// EnterSubBlock - Having read the ENTER_SUBBLOCK abbrevid, enter
535 /// getAbbrev - Return the abbreviation for the specified AbbrevId.
536 const BitCodeAbbrev *getAbbrev(unsigned AbbrevID) {
537 unsigned AbbrevNo = AbbrevID-bitc::FIRST_APPLICATION_ABBREV;
543 void skipRecord(unsigned AbbrevID);
545 unsigned readRecord(unsigned AbbrevID, SmallVectorImpl<uint64_t> &Vals
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 56 /// EnterSubBlock - Having read the ENTER_SUBBLOCK abbrevid, enter
136 void BitstreamCursor::skipRecord(unsigned AbbrevID) {
138 if (AbbrevID == bitc::UNABBREV_RECORD) {
147 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
194 unsigned BitstreamCursor::readRecord(unsigned AbbrevID,
197 if (AbbrevID == bitc::UNABBREV_RECORD) {
205 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 100 milliseconds