Searched refs:restore (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/
H A DCamera.java27 public native void restore(); method in class:Camera
H A DCanvas.java232 /** restore the current matrix when restore() is called */
234 /** restore the current clip when restore() is called */
242 /** restore everything when restore() is called */
248 * will all operate as usual, but when the balancing call to restore()
260 * call to restore() is made, those calls will be forgotten, and the
264 * to save/restore
272 * the balancing call to restore() i
336 public native void restore(); method in class:Canvas
[all...]
/frameworks/base/core/jni/
H A Dandroid_backup_FileBackupHelperBase.cpp86 RestoreHelperBase* restore = (RestoreHelperBase*)ptr; local
92 err = restore->WriteFile(String8(filename), reader);
104 RestoreHelperBase* restore = (RestoreHelperBase*)ptr; local
107 err = restore->WriteSnapshot(fd);
H A Dandroid_view_ViewRoot.cpp76 canvas->restore();
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DPathShape.java59 canvas.restore();
/frameworks/base/graphics/java/android/graphics/drawable/
H A DPictureDrawable.java74 canvas.restore();
H A DClipDrawable.java215 canvas.restore();
/frameworks/base/core/java/android/text/style/
H A DDynamicDrawableSpan.java108 canvas.restore();
/frameworks/base/tests/backup/
H A Dtest_restore.sh68 # pick the most recent set and restore from it
71 # run the restore
73 a shell bmgr restore "$restore_set"
/frameworks/base/core/java/android/widget/
H A DAnalogClock.java202 canvas.restore();
214 canvas.restore();
217 canvas.restore();
H A DAbsSeekBar.java259 canvas.restore();
H A DExpandableListView.java408 canvas.restore();
H A DProgressBar.java853 canvas.restore();
H A DSlidingDrawer.java301 canvas.restore();
/frameworks/base/core/jni/android/graphics/
H A DCamera.cpp24 v->restore();
77 { "restore", "()V", (void*)Camera_restore },
H A DNinePatch.cpp108 canvas->restore();
H A DCanvas.cpp168 static void restore(JNIEnv* env, jobject jcanvas) { function in class:android::SkCanvasGlue
171 if (canvas->getSaveCount() <= 1) { // cannot restore anymore
172 doThrowISE(env, "Underflow in restore");
175 canvas->restore();
500 canvas->restore();
886 {"restore","()V", (void*) SkCanvasGlue::restore},
/frameworks/base/cmds/rawbu/
H A Dbackup.cpp53 /* Directory paths that we will not backup/restore */
108 // directory itself, since the restore file won't
432 fprintf(stderr, "bad token %d in restore file\n", *type);
438 fprintf(stderr, "bad path length %d in restore file\n", pathLen);
443 fprintf(stderr, "truncated path in restore file\n");
452 fprintf(stderr, "bad uid in restore file at '%s'\n", readPath);
457 fprintf(stderr, "bad gid in restore file at '%s'\n", readPath);
462 fprintf(stderr, "bad mode in restore file at '%s'\n", readPath);
467 fprintf(stderr, "bad atime in restore file at '%s'\n", readPath);
473 fprintf(stderr, "bad mtime in restore fil
638 int restore = 0; local
[all...]
/frameworks/base/core/java/com/android/internal/service/wallpaper/
H A DImageWallpaper.java160 c.restore();
/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java543 public void restore(int blockIndex) throws IOException { method in class:MifareClassic
/frameworks/base/core/java/android/view/
H A DViewRoot.java466 boolean restore = false;
468 restore = true;
508 if (restore) {
509 attrs.restore();
2632 boolean restore = false;
2634 restore = true;
2651 if (restore) {
2652 params.restore();
H A DWindowManager.java995 // internal buffer to backup/restore parameters under compatibility mode.
1177 * @see LayoutParams#restore()
1195 void restore() { method in class:WindowManager.LayoutParams
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java241 /*package*/ static void restore(Canvas thisCanvas) { method in class:Canvas_Delegate
248 canvasDelegate.restore();
1250 private void restore() { method in class:Canvas_Delegate
1251 mSnapshot = mSnapshot.restore();
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java174 canvas.restore();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java160 /** sets an optional copy of the original content to be used during restore */
233 * upon restore
257 * into the main graphics when {@link #restore()} is called.
262 * upon restore
357 public GcSnapshot restore() { method in class:GcSnapshot
363 * @param saveCount the saveCount or -1 to only restore 1.
540 // restore the current one first.
543 if (size == saveCount + 1) { // this was the only one that needed restore.

Completed in 5785 milliseconds

12