Searched defs:save (Results 1 - 24 of 24) sorted by relevance

/frameworks/av/media/libstagefright/foundation/
H A DAHierarchicalStateMachine.cpp55 sp<AState> save = mState; local
61 CHECK(save == mState);
/frameworks/base/core/java/android/gesture/
H A DGestureLibraries.java64 public boolean save() { method in class:GestureLibraries.FileGestureLibrary
80 mStore.save(new FileOutputStream(file), true);
83 Log.d(LOG_TAG, "Could not save the gesture library in " + mPath, e);
85 Log.d(LOG_TAG, "Could not save the gesture library in " + mPath, e);
123 public boolean save() { method in class:GestureLibraries.ResourceGestureLibrary
H A DGestureLibrary.java30 public abstract boolean save(); method in class:GestureLibrary
H A DGestureStore.java221 public void save(OutputStream stream) throws IOException { method in class:GestureStore
222 save(stream, false);
225 public void save(OutputStream stream, boolean closeStream) throws IOException { method in class:GestureStore
/frameworks/base/graphics/java/android/graphics/
H A DCamera.java35 * Saves the camera state. Each save should be balanced
38 * @see #save()
40 public native void save(); method in class:Camera
H A DCanvas.java188 * layers, filters, and the save/restore stack are reset with the exception
371 * Restore everything when restore() is called (standard save flags).
385 * existed before the save() will be reinstated.
387 * @return The value to pass to restoreToCount() to balance this save()
389 public int save() { method in class:Canvas
394 * Based on saveFlags, can save the current matrix and clip onto a private
397 * parameter-less save(). It is simpler and faster than individually
403 * existed before the save() will be reinstated.
406 * to save/restore
407 * @return The value to pass to restoreToCount() to balance this save()
409 public int save(@Saveflags int saveFlags) { method in class:Canvas
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DPersistentDataStore.java80 save();
212 private void save() { method in class:PersistentDataStore
231 Slog.w(TAG, "Failed to save display manager persistent store data.", ex);
/frameworks/base/libs/hwui/
H A DCanvasState.cpp59 // TODO: remove, combine viewport + save stack initialization
70 * Guaranteed to save without side-effects
72 * This approach, here and in restoreSnapshot(), allows subclasses to directly manipulate the save
80 int CanvasState::save(int flags) { function in class:android::uirenderer::CanvasState
H A DDisplayListCanvas.cpp113 int DisplayListCanvas::save(SkCanvas::SaveFlags flags) { function in class:android::uirenderer::DisplayListCanvas
115 return mState.save((int) flags);
142 return mState.save((int) flags);
248 save(SkCanvas::kMatrix_SaveFlag);
269 save(SkCanvas::kMatrix_SaveFlag);
285 save(SkCanvas::kMatrix_SaveFlag);
299 save(SkCanvas::kMatrix_SaveFlag);
H A DSkiaCanvas.cpp59 virtual int save(SkCanvas::SaveFlags flags) override;
199 // clean up the old save stack
227 int SkiaCanvas::save(SkCanvas::SaveFlags flags) { function in class:android::SkiaCanvas
228 int count = mCanvas->save();
299 // A partial save is a save operation which doesn't capture the full canvas state.
306 // not a partial save.
315 // Store the save counter in the SkClipStack domain.
316 // (0-based, equal to the number of save ops on the stack).
H A DOpenGLRenderer.cpp818 // When the layer is stored in an FBO, we can save a bit of fillrate by
826 save(0);
894 * Issues the command X, and if we're composing a save layer to the fbo or drawing a newly updated
953 save(SkCanvas::kClip_SaveFlag | SkCanvas::kMatrix_SaveFlag);
1203 // (Note: saveLayer/restore use colorFilter and alpha, so we just save restore everything)
2139 int OpenGLRenderer::save(int flags) { function in class:android::uirenderer::OpenGLRenderer
2140 return mState.save(flags);
2346 save(SkCanvas::kMatrix_SaveFlag);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DGestureRecorder.java149 save();
228 public void save() { method in class:GestureRecorder
250 save();
/frameworks/base/services/core/java/com/android/server/input/
H A DPersistentDataStore.java83 save();
231 private void save() { method in class:PersistentDataStore
250 Slog.w(InputManagerService.TAG, "Failed to save input manager persistent store data.", ex);
/frameworks/base/services/core/java/com/android/server/tv/
H A DPersistentDataStore.java193 save();
197 private void save() { method in class:PersistentDataStore
217 Slog.w(TAG, "Failed to save tv input manager persistent store data.", ex);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java66 public abstract void save(); method in interface:GLCanvas
68 // Same as save(), but only save those specified in saveFlags.
69 public abstract void save(int saveFlags); method in interface:GLCanvas
76 // alpha, and clip). This call balances a previous call to save(), and is
78 // last save call.
H A DGLES20Canvas.java438 public void save() { method in class:GLES20Canvas
439 save(SAVE_FLAG_ALL);
443 public void save(int saveFlags) { method in class:GLES20Canvas
673 save(SAVE_FLAG_MATRIX);
769 save(SAVE_FLAG_ALPHA);
841 save(); // save matrix and alpha and blending
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java58 * for each layer. Doing a save() will duplicate this list so that each graphics2D object
126 * @param flags the flags that were used to save this layer
145 /** Returns the layer save flags. This is only valid for additional layers.
223 * This is the equivalent of {@link Canvas#save(int)}
225 * @param flags the save flags.
228 * @see Canvas#save(int)
230 public GcSnapshot save(int flags) { method in class:GcSnapshot
242 * @param flags the save flags.
268 * @param layerBounds the region of the layer. Optional, if null, this is a normal save()
323 // if the drawing is not clipped to the local layer only, we save th
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java106 void save(Bundle outState) { method in class:BrowseFragment.BackStackListener
541 mBackStackChangedListener.save(outState);
H A DBrowseSupportFragment.java108 void save(Bundle outState) { method in class:BrowseSupportFragment.BackStackListener
543 mBackStackChangedListener.save(outState);
/frameworks/base/core/java/android/webkit/
H A DWebSettings.java402 * Sets whether the WebView should save form data. The default is true.
404 public abstract void setSaveFormData(boolean save); argument
415 * Sets whether the WebView should save passwords. The default is true.
419 public abstract void setSavePassword(boolean save); argument
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp76 static jint save(JNIEnv*, jobject, jlong canvasHandle, jint flagsHandle) { function in namespace:android::CanvasJNI
78 return static_cast<jint>(get_canvas(canvasHandle)->save(flags));
341 canvas->save(SkCanvas::kMatrixClip_SaveFlag);
675 {"native_save","(JI)I", (void*) CanvasJNI::save},
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java191 return canvasDelegate.save(saveFlags);
1012 private int save(int saveFlags) { method in class:Canvas_Delegate
1013 // get the current save count
1016 mSnapshot = mSnapshot.save(saveFlags);
1018 // return the old save count
1029 // get the current save count
1034 // return the old save count
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java2190 public void save(WifiConfiguration config, ActionListener listener) { method in class:WifiManager
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 7320 milliseconds