Home | History | Annotate | Download | only in Reader

Lines Matching defs:Abbrevs

35     std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
36 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i)
37 Abbrevs[i]->addRef();
42 // Free all the Abbrevs.
47 // Free all the Abbrevs in the block scope.
49 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
50 for (size_t i = 0, e = Abbrevs.size(); i != e; ++i)
51 Abbrevs[i]->dropRef();
63 // Add the abbrevs specific to this block to the CurAbbrevs list.
66 for (size_t i = 0, e = Info->Abbrevs.size(); i != e; ++i) {
67 CurAbbrevs.push_back(Info->Abbrevs[i]);
344 CurBlockInfo->Abbrevs.push_back(Abbv);