Lines Matching refs:std
28 : DSLVarBase(DSLModifiers(), std::move(type), name, std::move(initialValue), pos) {}
31 : DSLVarBase(type, "var", std::move(initialValue), pos) {}
35 : DSLVarBase(modifiers, type, "var", std::move(initialValue), pos) {}
39 : fModifiers(std::move(modifiers))
40 , fType(std::move(type))
43 , fInitialValue(std::move(initialValue))
84 std::swap(fModifiers, other.fModifiers);
85 std::swap(fType, other.fType);
86 std::swap(fUniformHandle, other.fUniformHandle);
87 std::swap(fDeclaration, other.fDeclaration);
88 std::swap(fVar, other.fVar);
89 std::swap(fRawName, other.fRawName);
90 std::swap(fName, other.fName);
91 std::swap(fInitialValue.fExpression, other.fInitialValue.fExpression);
92 std::swap(fDeclared, other.fDeclared);
93 std::swap(fInitialized, other.fInitialized);
94 std::swap(fPosition, other.fPosition);
123 fVar = ThreadContext::SymbolTable()->takeOwnershipOfIRNode(std::make_unique<SkSL::Variable>(
158 return DSLExpression(*this, PositionInfo())[std::move(index)];
168 return this->assign(std::move(expr));
172 return this->assign(std::move(expr));
176 return this->assign(std::move(expr));
179 std::unique_ptr<SkSL::Expression> DSLGlobalVar::methodCall(skstd::string_view methodName,
193 std::move(method), std::move(args))
201 return this->eval(std::move(converted), pos);
208 return this->eval(std::move(converted), pos);