Home | History | Annotate | Download | only in media_galleries

Lines Matching refs:destination

27                         scoped_ptr<std::string>* destination) {
28 DCHECK(destination);
30 destination->reset(new std::string(value));
33 void SetIntScopedPtr(int value, scoped_ptr<int>* destination) {
34 DCHECK(destination);
36 destination->reset(new int(value));
39 void SetDoubleScopedPtr(double value, scoped_ptr<double>* destination) {
40 DCHECK(destination);
42 destination->reset(new double(value));
45 void SetBoolScopedPtr(bool value, scoped_ptr<bool>* destination) {
46 DCHECK(destination);
47 destination->reset(new bool(value));