Lines Matching refs:val
301 // Copy 'val' to this variable. No type conversion is performed - 'val' must be same
308 const T& val) {
311 } else if (sizeof(val) != fVar->sizeInBytes()) {
315 &val, sizeof(val));
320 BuilderUniform& operator=(const SkMatrix& val) {
328 data[0] = val.get(0); data[1] = val.get(3); data[2] = val.get(6);
329 data[3] = val.get(1); data[4] = val.get(4); data[5] = val.get(7);
330 data[6] = val.get(2); data[7] = val.get(5); data[8] = val.get(8);
336 bool set(const T val[], const int count) {
346 val, sizeof(T) * count);
356 template <typename T> BuilderChild& operator=(sk_sp<T> val) {
360 fOwner->fChildren[(size_t)fChild->index] = std::move(val);