Searched defs:target (Results 76 - 100 of 242) sorted by last modified time

12345678910

/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11ExtensionPack.java111 int target,
116 int target,
121 int target,
142 int target
146 int target,
157 int target,
194 int target,
201 int target,
209 int target
235 int target,
110 glBindFramebufferOES( int target, int framebuffer ) argument
115 glBindRenderbufferOES( int target, int renderbuffer ) argument
120 glBindTexture( int target, int texture ) argument
145 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
156 glCopyTexImage2D( int target, int level, int internalformat, int x, int y, int width, int height, int border ) argument
193 glFramebufferRenderbufferOES( int target, int attachment, int renderbuffertarget, int renderbuffer ) argument
200 glFramebufferTexture2DOES( int target, int attachment, int textarget, int texture, int level ) argument
234 glGetFramebufferAttachmentParameterivOES( int target, int attachment, int pname, int[] params, int offset ) argument
242 glGetFramebufferAttachmentParameterivOES( int target, int attachment, int pname, java.nio.IntBuffer params ) argument
260 glGetRenderbufferParameterivOES( int target, int pname, int[] params, int offset ) argument
267 glGetRenderbufferParameterivOES( int target, int pname, java.nio.IntBuffer params ) argument
320 glRenderbufferStorageOES( int target, int internalformat, int width, int height ) argument
333 glTexEnvf( int target, int pname, float param ) argument
339 glTexEnvfv( int target, int pname, float[] params, int offset ) argument
346 glTexEnvfv( int target, int pname, java.nio.FloatBuffer params ) argument
352 glTexEnvx( int target, int pname, int param ) argument
358 glTexEnvxv( int target, int pname, int[] params, int offset ) argument
365 glTexEnvxv( int target, int pname, java.nio.IntBuffer params ) argument
428 glTexParameterf( int target, int pname, float param ) argument
[all...]
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java119 * Copy package to the target location.
128 public int copyPackage(String packagePath, IParcelFileDescriptorFactory target) {
129 if (packagePath == null || target == null) {
137 return copyPackageInner(pkg, target);
367 private int copyPackageInner(PackageLite pkg, IParcelFileDescriptorFactory target) argument
369 copyFile(pkg.baseCodePath, target, "base.apk");
372 copyFile(pkg.splitCodePaths[i], target, "split_" + pkg.splitNames[i] + ".apk");
379 private void copyFile(String sourcePath, IParcelFileDescriptorFactory target, String targetName) argument
387 target.open(targetName, ParcelFileDescriptor.MODE_READ_WRITE));
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java215 private static boolean contains(int[] array, int target) { argument
217 if (value == target) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java198 float target = hand + mOldHeight;
199 float newHeight = clamp(target);
205 private float clamp(float target) { argument
206 float out = target;
H A DViewInvertHelper.java43 public ViewInvertHelper(View target, long fadeDuration) { argument
44 mTarget = target;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DFirstFrameAnimatorHelper.java46 public FirstFrameAnimatorHelper(ValueAnimator animator, View target) { argument
47 mTarget = target;
51 public FirstFrameAnimatorHelper(ViewPropertyAnimator vpa, View target) { argument
52 mTarget = target;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationTemplateViewWrapper.java168 private void fadeIconColorFilter(final ImageView target, boolean dark, long delay) { argument
172 updateIconColorFilter(target, (Float) animation.getAnimatedValue());
177 private void fadeIconAlpha(final ImageView target, boolean dark, long delay) { argument
182 target.setImageAlpha((int) (255 * (1f - t) + mIconDarkAlpha * t));
187 protected void fadeGrayscale(final ImageView target, final boolean dark, long delay) { argument
192 target.setColorFilter(new ColorMatrixColorFilter(mGrayscaleColorMatrix));
198 target.setColorFilter(null);
204 private void updateIconColorFilter(ImageView target, boolean dark) { argument
205 updateIconColorFilter(target, dark ? 1f : 0f);
208 private void updateIconColorFilter(ImageView target, floa argument
220 updateIconAlpha(ImageView target, boolean dark) argument
224 updateGrayscale(ImageView target, boolean dark) argument
237 interpolateColor(int source, int target, float t) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeScrimController.java72 startScrimAnimation(false /* inFront */, 0f /* target */,
74 startScrimAnimation(true /* inFront */, 0f /* target */,
139 private void startScrimAnimation(final boolean inFront, float target, long duration, argument
141 startScrimAnimation(inFront, target, duration, interpolator, 0 /* delay */,
145 private void startScrimAnimation(final boolean inFront, float target, long duration, argument
150 if (currentTarget == target) {
155 ValueAnimator anim = ValueAnimator.ofFloat(getDozeAlpha(inFront), target);
177 setCurrentTarget(inFront, target);
184 private void setCurrentTarget(boolean inFront, float target) { argument
186 mInFrontTarget = target;
[all...]
H A DScrimController.java257 private void startScrimAnimation(final ScrimView scrim, float target) { argument
259 ValueAnimator anim = ValueAnimator.ofFloat(current, target);
H A DStatusBarHeaderView.java547 private void captureLayoutValues(LayoutValues target) { argument
548 target.timeScale = mExpanded ? 1f : mClockCollapsedScaleFactor;
549 target.clockY = mClock.getBottom();
550 target.dateY = mDateGroup.getTop();
551 target.emergencyCallsOnlyAlpha = getAlphaForVisibility(mEmergencyCallsOnly);
552 target.alarmStatusAlpha = getAlphaForVisibility(mAlarmStatus);
553 target.dateCollapsedAlpha = getAlphaForVisibility(mDateCollapsed);
554 target.dateExpandedAlpha = getAlphaForVisibility(mDateExpanded);
555 target.avatarScale = mMultiUserAvatar.getScaleX();
556 target
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DIconPulser.java36 public void start(final View target) { argument
37 if (target == null || target.getScaleX() != 1) return; // n/a, or already running
38 target.animate().cancel();
39 target.animate().scaleX(PULSE_SCALE).scaleY(PULSE_SCALE)
44 target.animate().scaleX(1).scaleY(1).setListener(null);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
H A DUtils.java219 float source, float target, float progress) {
220 // interpolate the angle from source to target
222 // shortest path to change source to target.
223 float diff = target - source;
232 float source, float target, float progress) {
233 return source + progress * (target - source);
218 interpolateAngle( float source, float target, float progress) argument
231 interpolateScale( float source, float target, float progress) argument
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DCountedDataInputStream.java75 public void skipTo(long target) throws IOException { argument
77 long diff = target - cur;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java99 // Draws the source rectangle part of the texture to the target rectangle.
100 public abstract void drawTexture(BasicTexture texture, RectF source, RectF target); argument
114 // The region of the texture is defined by parameter "src". The target
115 // rectangle is specified by parameter "target".
117 float ratio, RectF src, RectF target);
169 * @param texture The target texture to write to.
116 drawMixed(BasicTexture from, int toColor, float ratio, RectF src, RectF target) argument
H A DGLES20Canvas.java607 public void drawTexture(BasicTexture texture, RectF source, RectF target) { argument
608 if (target.width() <= 0 || target.height() <= 0) {
612 mTempTargetRect.set(target);
628 private void drawTextureRect(BasicTexture texture, RectF source, RectF target) { argument
630 drawTextureRect(texture, mTempTextureMatrix, target);
641 // It also clips the source and target coordinates if it is beyond the
643 private static void convertCoordinate(RectF source, RectF target, BasicTexture texture) { argument
657 target.right = target
667 drawTextureRect(BasicTexture texture, float[] textureMatrix, RectF target) argument
765 drawMixed(BasicTexture texture, int toColor, float ratio, RectF source, RectF target) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java599 RectF target = mTargetRect;
600 target.set(x, y, x + length, y + length);
618 if (drawTile(tile, canvas, source, target)) {
628 canvas.drawTexture(mPreview, source, target);
633 Tile tile, GLCanvas canvas, RectF source, RectF target) {
636 canvas.drawTexture(tile, source, target);
632 drawTile( Tile tile, GLCanvas canvas, RectF source, RectF target) argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java3522 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
5003 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
6170 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) { argument
6172 mLastInputMethodTargetWindow = target;
/frameworks/base/rs/java/android/renderscript/
H A DScriptGroup.java186 private void validateCycle(Node target, Node original) { argument
187 for (int ct = 0; ct < target.mOutputs.size(); ct++) {
188 final ConnectLine cl = target.mOutputs.get(ct);
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java2670 // Initiate the target's backup pass
4052 SinglePackageBackupRunner(ParcelFileDescriptor output, PackageInfo target, argument
4056 mTarget = target;
4329 // Info for working with the target app process
5115 // Okay, the target app isn't installed. We can process
6445 // Okay, the target app isn't installed. We can process
6791 static boolean signaturesMatch(ArrayList<byte[]> storedSigHashes, PackageInfo target) { argument
6792 if (target == null) {
6796 // If the target resides on the system partition, we allow it to restore
6801 if ((target
6862 signaturesMatch(Signature[] storedSigs, PackageInfo target) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java1082 void executeOrSendMessage(IInterface target, Message msg) { argument
1083 if (target.asBinder() instanceof Binder) {
2037 // is more room for the target window + IME.
2070 // is more room for the target window + IME.
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java712 IBinder target = filter.receiverList.receiver.asBinder();
714 if (dest.get(i).receiverList.receiver.asBinder() == target) {
778 * have seen. Mapping is target uid -> target component -> source uid -> source process name
1195 // Holds the target user's id during a user switch
6053 if (DEBUG_BACKUP) Slog.v(TAG, "New app is backup target, launching agent for " + app);
6925 // check if target holds top-level <provider> permissions
6940 // check if target holds any <path-permission> that match uri
7099 * if callingUid is not allowed to do this. Returns the uid of the target
7102 * If you already know the uid of the target, yo
16564 finishInstrumentation(IApplicationThread target, int resultCode, Bundle results) argument
[all...]
H A DActivityStack.java498 ActivityRecord findTaskLocked(ActivityRecord target) { argument
499 Intent intent = target.intent;
500 ActivityInfo info = target.info;
510 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
550 if (task.rootAffinity.equals(target.taskAffinity)) {
2035 // If the caller has requested that the target task be
2140 ActivityRecord target = activities.get(i);
2141 if (target.frontOfTask)
2144 final int flags = target.info.flags;
2150 (target
[all...]
H A DActivityStackSupervisor.java788 // Collect information about the target of the Intent.
802 // Store the found target back into the intent, because now that
852 // Collect information about the target of the Intent.
905 IIntentSender target = mService.getIntentSenderLocked(
917 new IntentSender(target));
1049 // Collect information about the target of the Intent.
1346 // Transfer the result target from the source activity to the new
1406 // If the caller is starting a new voice session, just make sure the target
1728 + " has root " + root + " but target is singleInstance/Task");
1812 // do this if the target activit
2465 resumeTopActivitiesLocked(ActivityStack targetStack, ActivityRecord target, Bundle targetOptions) argument
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java278 currentSyncContext.mSyncOperation.target.account,
279 currentSyncContext.mSyncOperation.target.userId)) {
904 mSyncStorageEngine.setBackoff(op.target,
908 mSyncQueue.onBackoffChanged(op.target, 0);
918 mSyncStorageEngine.getBackoff(op.target);
949 mSyncStorageEngine.setBackoff(op.target, backoff, newDelayInMs);
954 mSyncQueue.onBackoffChanged(op.target, backoff);
967 mSyncStorageEngine.setDelayUntilTime(op.target, newDelayUntilTime);
969 mSyncQueue.onDelayUntilTimeChanged(op.target, newDelayUntilTime);
974 * Cancel the active sync if it matches the target
2156 isDispatchable(SyncStorageEngine.EndPoint target) argument
[all...]
H A DSyncOperation.java63 /** Identifying info for the target for this operation. */
64 public final SyncStorageEngine.EndPoint target; field in class:SyncOperation
111 this.target = info;
142 this(other.target, other.reason, other.syncSource, new Bundle(other.extras),
151 return this.target.matchesSpec(other.target);
183 final SyncStorageEngine.EndPoint other = toRun.target;
184 if (target.target_provider) {
185 return target.account.type.equals(other.account.type)
186 && target
[all...]

Completed in 632 milliseconds

12345678910