Lines Matching refs:literals_
39 explicit LiteralBuffer(ArenaAllocator *allocator) : literals_(allocator->Adapter()) {}
46 literals_.push_back(lit);
51 return literals_.empty();
56 return literals_.size();
66 literals_[index] = literal;
71 return literals_;
76 literals_.insert(literals_.end(), other->literals_.begin(), other->literals_.end());
77 other->literals_.clear();
86 ArenaVector<const ir::Literal *> literals_;