Lines Matching refs:SkDescriptor
40 static SkDescriptor* auto_descriptor_from_desc(const SkDescriptor* source_desc, in auto_descriptor_from_desc()
100 void writeDescriptor(const SkDescriptor& desc) { in writeDescriptor()
102 auto result = allocate(desc.getLength(), alignof(SkDescriptor)); in writeDescriptor()
135 if (descLength < sizeof(SkDescriptor)) return false; in readDescriptor()
138 auto* result = this->ensureAtLeast(descLength, alignof(SkDescriptor)); in readDescriptor()
224 size_t operator()(const SkDescriptor* key) const;
225 bool operator()(const SkDescriptor* lhs, const SkDescriptor* rhs) const;
227 size_t MapOps::operator()(const SkDescriptor* key) const { in operator ()()
231 bool MapOps::operator()(const SkDescriptor* lhs, const SkDescriptor* rhs) const { in operator ()()
247 const SkDescriptor& getDescriptor() const override { in getDescriptor()
601 std::unordered_map<const SkDescriptor*, std::unique_ptr<RemoteStrike>, MapOps, MapOps>;