Lines Matching refs:Key
51 struct Key {
52 Key() {
53 sk_bzero(this, sizeof(Key));
65 bool operator==(const Key& other) const {
66 return 0 == memcmp(this, &other, sizeof(Key));
70 void setupKey(const GrAtlasTextBlob::Key& key,
73 fKey = key;
74 if (key.fHasBlur) {
77 if (key.fStyle != SkPaint::kFill_Style) {
84 static const Key& GetKey(const GrAtlasTextBlob& blob) {
88 static uint32_t Hash(const Key& key) {
89 return SkChecksum::Murmur3(&key, sizeof(Key));
266 const Key& key() const { return fKey; }
539 Key fKey;