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

  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.h 38 std::vector<WeakVH> ValuePtrs;
57 unsigned size() const { return ValuePtrs.size(); }
58 void resize(unsigned N) { ValuePtrs.resize(N); }
60 ValuePtrs.push_back(V);
65 ValuePtrs.clear();
69 assert(i < ValuePtrs.size());
70 return ValuePtrs[i];
73 Value *back() const { return ValuePtrs.back(); }
74 void pop_back() { ValuePtrs.pop_back(); }
75 bool empty() const { return ValuePtrs.empty();
    [all...]
BitcodeReader.cpp 275 WeakVH &OldV = ValuePtrs[Idx];
300 if (Value *V = ValuePtrs[Idx]) {
307 ValuePtrs[Idx] = C;
315 if (Value *V = ValuePtrs[Idx]) {
325 ValuePtrs[Idx] = V;
    [all...]

Completed in 206 milliseconds