HomeSort by relevance Sort by last modified time
    Searched defs:coercionCost (Results 1 - 4 of 4) sorted by null

  /external/skia/src/sksl/ir/
SkSLType.cpp 13 int Type::coercionCost(const Type& other) const {
18 int result = this->componentType().coercionCost(other);
29 return this->componentType().coercionCost(other.componentType());
35 return this->componentType().coercionCost(other.componentType());
SkSLExpression.h 106 virtual int coercionCost(const Type& target) const {
107 return fType.coercionCost(target);
  /external/skqp/src/sksl/ir/
SkSLType.cpp 13 int Type::coercionCost(const Type& other) const {
19 return this->componentType().coercionCost(other.componentType());
25 return this->componentType().coercionCost(other.componentType());
SkSLExpression.h 105 virtual int coercionCost(const Type& target) const {
106 return fType.coercionCost(target);

Completed in 1478 milliseconds