Home | History | Annotate | Download | only in base

Lines Matching full:source_

76       : std::allocator<T>(), source_(rhs.source_) {
90 : source_(NULL) {
93 explicit StackAllocator(Source* source) : source_(source) {
100 if (source_ != NULL && !source_->used_stack_buffer_
102 source_->used_stack_buffer_ = true;
103 return source_->stack_buffer();
112 if (source_ != NULL && p == source_->stack_buffer())
113 source_->used_stack_buffer_ = false;
119 Source* source_;