Lines Matching refs:owner
140 void TouchGesture::appendNewRec(void* owner, float x, float y) {
142 rec->fOwner = owner;
148 void TouchGesture::touchBegin(void* owner, float x, float y) {
149 // SkDebugf("--- %d touchBegin %p %g %g\n", fTouches.count(), owner, x, y);
151 int index = this->findRec(owner);
165 this->appendNewRec(owner, x, y);
179 int TouchGesture::findRec(void* owner) const {
181 if (owner == fTouches[i].fOwner) {
208 void TouchGesture::touchMoved(void* owner, float x, float y) {
209 // SkDebugf("--- %d touchMoved %p %g %g\n", fTouches.count(), owner, x, y);
215 int index = this->findRec(owner);
261 void TouchGesture::touchEnd(void* owner) {
262 // SkDebugf("--- %d touchEnd %p\n", fTouches.count(), owner);
264 int index = this->findRec(owner);
275 // count() reflects the number before we removed the owner