Home | History | Annotate | Download | only in glue

Lines Matching refs:custom_data_

107       custom_data_.clear();
109 custom_data_.resize(data_len);
110 memcpy(&custom_data_[0], data, data_len);
126 if (!custom_data_.empty())
127 data = &custom_data_[0];
128 if (!pickle->WriteData(data, custom_data_.size()))
147 custom_data_ == other.custom_data_;
156 custom_data_.clear();
164 custom_data_ = other.custom_data_;
174 // Fill custom_data_ directly with the NativeImage pixels.
177 custom_data_.resize(bitmap.getSize());
178 if (!custom_data_.empty())
179 memcpy(&custom_data_[0], bitmap.getPixels(), bitmap.getSize());
185 if (custom_data_.empty())
194 memcpy(bitmap.getPixels(), &custom_data_[0], custom_data_.size());