Lines Matching defs:enabled

2206      * dispatch. This behavior is enabled by default for applications that target an
2209 * <p>When this option is enabled MotionEvents may be split and dispatched to different child
2608 * @param enabled true to enable the cache, false to dispose of it
2610 protected void setChildrenDrawingCacheEnabled(boolean enabled) {
2611 if (enabled || (mPersistentDrawingCache & PERSISTENT_ALL_CACHES) != PERSISTENT_ALL_CACHES) {
2615 children[i].setDrawingCacheEnabled(enabled);
3013 * @param enabled True to enable static transformations on children, false otherwise.
3017 protected void setStaticTransformationsEnabled(boolean enabled) {
3018 setBooleanFlag(FLAG_SUPPORT_STATIC_TRANSFORMATIONS, enabled);
4443 * animation. By default, the drawing cache is enabled but this will prevent
4447 * @return true if the animation cache is enabled, false otherwise
4459 * By default, the drawing cache is enabled but this will prevent nested
4463 * @param enabled true to enable the animation cache, false otherwise
4468 public void setAnimationCacheEnabled(boolean enabled) {
4469 setBooleanFlag(FLAG_ANIMATION_CACHE, enabled);
4474 * drawing cache. By default this property is enabled.
4476 * @return true if the animation cache is enabled, false otherwise
4525 * will be used only if it has been enabled.
4530 * @param enabled true if children should be drawn with their cache, false otherwise
4535 protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
4536 setBooleanFlag(FLAG_CHILDREN_DRAWN_WITH_CACHE, enabled);
4558 * @param enabled true if the order of the children when drawing is determined by
4564 protected void setChildrenDrawingOrderEnabled(boolean enabled) {
4565 setBooleanFlag(FLAG_USE_CHILD_DRAWING_ORDER, enabled);
5136 throw new IllegalStateException("addStateFromChildren cannot be enabled if a"