Home | History | Annotate | Download | only in cpp

Lines Matching full:vector

8 #include <vector>
29 const std::vector<PP_Resource>& input,
30 std::vector<ResourceObjectType>* output) {
70 // structure as writing to a given vector object.
78 // Example that allows the browser to write into a given vector:
79 // void DoFoo(std::vector<int>* results) {
86 ArrayOutputAdapter(std::vector<T>* output) : output_(output) {}
91 void set_output(std::vector<T>* output) { output_ = output; }
105 std::vector<T>* output_;
109 // structure as writing resources to a given vector object.
122 // void GetFiles(std::vector<pp::FileRef>* results) {
129 explicit ResourceArrayOutputAdapter(std::vector<T>* output)
155 std::vector<PP_Resource> intermediate_output_;
156 std::vector<T>* output_;
160 // the underlying std::vector that will be populated (rather than writing it to
174 // const std::vector<int>& result = adapter.output();
182 std::vector<T>& output() { return output_storage_; }
185 std::vector<T> output_storage_;
198 // const std::vector<pp::Var>& result = adapter.output().
211 std::vector<Var>& output();
215 std::vector<PP_Var> temp_storage_;
219 std::vector<Var> output_storage_;
232 // std::vector<FileRef> result = adapter.output().
253 std::vector<T>& output() {
263 std::vector<PP_Resource> temp_storage_;
267 std::vector<T> output_storage_;