Lines Matching defs:spec

102             long interrogatingTid, MagnificationSpec spec) {
112 args.arg2 = spec;
137 final MagnificationSpec spec = (MagnificationSpec) args.arg2;
161 applyAppScaleAndMagnificationSpecIfNeeded(infos, spec);
164 if (spec != null && android.os.Process.myPid() != Binder.getCallingPid()) {
165 spec.recycle();
185 long interrogatingTid, MagnificationSpec spec) {
194 args.arg2 = spec;
220 final MagnificationSpec spec = (MagnificationSpec) args.arg2;
255 applyAppScaleAndMagnificationSpecIfNeeded(infos, spec);
258 if (spec != null && android.os.Process.myPid() != Binder.getCallingPid()) {
259 spec.recycle();
278 long interrogatingTid, MagnificationSpec spec) {
286 args.arg3 = spec;
312 final MagnificationSpec spec = (MagnificationSpec) args.arg3;
373 applyAppScaleAndMagnificationSpecIfNeeded(infos, spec);
376 if (spec != null && android.os.Process.myPid() != Binder.getCallingPid()) {
377 spec.recycle();
396 long interrogatingTid, MagnificationSpec spec) {
407 args.arg2 = spec;
434 final MagnificationSpec spec = (MagnificationSpec) args.arg2;
495 applyAppScaleAndMagnificationSpecIfNeeded(focused, spec);
498 if (spec != null && android.os.Process.myPid() != Binder.getCallingPid()) {
499 spec.recycle();
518 long interrogatingTid, MagnificationSpec spec) {
528 args.arg2 = spec;
554 final MagnificationSpec spec = (MagnificationSpec) args.arg2;
580 applyAppScaleAndMagnificationSpecIfNeeded(next, spec);
583 if (spec != null && android.os.Process.myPid() != Binder.getCallingPid()) {
584 spec.recycle();
694 MagnificationSpec spec) {
699 if (shouldApplyAppScaleAndMagnificationSpec(applicationScale, spec)) {
703 applyAppScaleAndMagnificationSpecIfNeeded(info, spec);
733 MagnificationSpec spec) {
735 if (!shouldApplyAppScaleAndMagnificationSpec(applicationScale, spec)) {
744 if (spec != null) {
745 point.x *= spec.scale;
746 point.y *= spec.scale;
747 point.x += (int) spec.offsetX;
748 point.y += (int) spec.offsetY;
753 MagnificationSpec spec) {
759 if (!shouldApplyAppScaleAndMagnificationSpec(applicationScale, spec)) {
772 if (spec != null) {
773 boundsInParent.scale(spec.scale);
775 boundsInScreen.scale(spec.scale);
776 boundsInScreen.offset((int) spec.offsetX, (int) spec.offsetY);
781 if (spec != null) {
787 final float scale = attachInfo.mApplicationScale * spec.scale;
790 visibleWinFrame.left = (int) (attachInfo.mWindowLeft * scale + spec.offsetX);
791 visibleWinFrame.top = (int) (attachInfo.mWindowTop * scale + spec.offsetY);
815 MagnificationSpec spec) {
816 return (appScale != 1.0f || (spec != null && !spec.isNop()));