Home | History | Annotate | Download | only in containers

Lines Matching refs:source_

78       : std::allocator<T>(), source_(rhs.source_) {
92 : source_(NULL) {
99 StackAllocator() : source_(NULL) {
102 explicit StackAllocator(Source* source) : source_(source) {
109 if (source_ != NULL && !source_->used_stack_buffer_
111 source_->used_stack_buffer_ = true;
112 return source_->stack_buffer();
121 if (source_ != NULL && p == source_->stack_buffer())
122 source_->used_stack_buffer_ = false;
128 Source* source_;