Home | History | Annotate | Download | only in cpp

Lines Matching refs:output_

86   ArrayOutputAdapter(std::vector<T>* output) : output_(output) {}
90 ArrayOutputAdapter() : output_(NULL) {}
91 void set_output(std::vector<T>* output) { output_ = output; }
100 output_->resize(element_count);
101 return &(*output_)[0];
105 std::vector<T>* output_;
130 : output_(output) {
131 output_->resize(0);
134 ConvertPPResourceArrayToObjects(PASS_REF, intermediate_output_, output_);
139 ResourceArrayOutputAdapter() : output_(NULL) {}
140 void set_output(T* output) { output_ = output; }
156 std::vector<T>* output_;