• Home
  • Raw
  • Download

Lines Matching refs:scope

47 …SK_MEMBER(scope, Drawable), // thing that scopes animation (unnamed enclosed displayable goes here)
59 …restore(false), scope(NULL), steps(-1), transition((Transition) -1), fActive(NULL), /*fCurrentScop… in SkApply()
68 delete scope; in ~SkApply()
160 return fDeleteScope && scope == child; in contains()
164 SkDrawable* saveScope = scope; in deepCopy()
165 scope = NULL; in deepCopy()
167 result->scope = scope = saveScope; in deepCopy()
187 if (scope ==NULL) in draw()
189 if (scope->isApply() || scope->isDrawable() == false) in draw()
193 SkASSERT(scope); in draw()
200 result |= scope->draw(maker); in draw()
236 if (scope) { in dump()
241 scope->dump(maker); in dump()
277 if (scope && scope->isApply()) in enable()
278 ((SkApply*) scope)->setEmbedded(); in enable()
287 if ((mode == kMode_immediate || mode == kMode_create) && scope == NULL) in enable()
289 … bool enableMe = scope && (scope->hasEnable() || scope->isApply() || scope->isDrawable() == false); in enable()
294 if (mode == kMode_create && scope != NULL) { in enable()
299 return scope->isApply() || scope->isDrawable() == false; in enable()
314 …if (scope == NULL || scope->isApply() || scope->getType() == SkType_Movie || scope->isDrawable() =… in enable()
322 if (scope != NULL && dontDraw == false) in enable()
323 scope->enable(maker); in enable()
343 drawable = (SkDrawable*) scope; in enable()
397 bool success = maker.computeID(scope, this, &newID); in enableCreate()
405 SkDrawable* copyScope = copy->scope = (SkDrawable*) scope->deepCopy(&maker); in enableCreate()
407 if (copyScope->resolveIDs(maker, scope, this)) { in enableCreate()
430 if (success && scope != newScope) { in enableDynamic()
433 int old = maker.fDisplayList.findGroup(scope, &pList, &pGroup, &found, &gList); in enableDynamic()
443 (*pList)[old] = scope; in enableDynamic()
447 scope = (SkDrawable*) newScope; in enableDynamic()
513 return scope; in getTarget()
648 if (scope == NULL) in initialize()
650 if (scope->isApply() || scope->isDrawable() == false) in initialize()
652 scope->initialize(); in initialize()
657 SkDrawable* scopePtr = scope; in onEndElement()
660 if (scopedApply->scope == this) { in onEndElement()
664 scopePtr = scopedApply->scope; in onEndElement()
668 if (scope != NULL && steps >= 0 && scope->isApply() == false && scope->isDrawable()) in onEndElement()
669 scope->setSteps(steps); in onEndElement()
675 if (scope) in onEndElement()
676 anim->fTarget = scope; in onEndElement()
681 if (scope != NULL && steps >= 0 && anim->fTarget != scope && anim->fTarget->isDrawable()) in onEndElement()