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.java63 public boolean save() { method in class:GestureLibraries.FileGestureLibrary
79 mStore.save(new FileOutputStream(file), true);
82 Log.d(LOG_TAG, "Could not save the gesture library in " + mPath, e);
84 Log.d(LOG_TAG, "Could not save the gesture library in " + mPath, e);
122 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.java208 * layers, filters, and the save/restore stack are reset with the exception
352 * before the save() will be reinstated.
354 * @return The value to pass to restoreToCount() to balance this save()
356 public native int save(); method in class:Canvas
359 * Based on saveFlags, can save the current matrix and clip onto a private
363 * settings that existed before the save() will be reinstated.
366 * to save/restore
367 * @return The value to pass to restoreToCount() to balance this save()
369 public native int save(int saveFlags); method in class:Canvas
372 * This behaves the same as save(), bu
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DOverlayFrame.java186 String save(String path) throws FileNotFoundException, IOException { method in class:OverlayFrame
205 /* resize and save rgb as per project aspect ratio */
H A DVideoEditor.java346 public void save() throws IOException; method in interface:VideoEditor
H A DVideoEditorImpl.java1371 public void save() throws IOException { method in class:VideoEditorImpl
1426 overlayFrame.save(getPath());
/frameworks/base/services/java/com/android/server/display/
H A DPersistentDataStore.java79 save();
211 private void save() { method in class:PersistentDataStore
230 Slog.w(TAG, "Failed to save display manager persistent store data.", ex);
/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/java/com/android/server/input/
H A DPersistentDataStore.java80 save();
204 private void save() { method in class:PersistentDataStore
223 Slog.w(InputManagerService.TAG, "Failed to save input manager persistent store data.", ex);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java68 public abstract void save(); method in interface:GLCanvas
70 // Same as save(), but only save those specified in saveFlags.
71 public abstract void save(int saveFlags); method in interface:GLCanvas
78 // alpha, and clip). This call balances a previous call to save(), and is
80 // 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.java56 * for each layer. Doing a save() will duplicate this list so that each graphics2D object
124 * @param flags the flags that were used to save this layer
143 /** Returns the layer save flags. This is only valid for additional layers.
221 * This is the equivalent of {@link Canvas#save(int)}
223 * @param flags the save flags.
226 * @see Canvas#save(int)
228 public GcSnapshot save(int flags) { method in class:GcSnapshot
240 * @param flags the save flags.
266 * @param layerBounds the region of the layer. Optional, if null, this is a normal save()
321 // if the drawing is not clipped to the local layer only, we save th
[all...]
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java64 * // fill the Grammar slots with names and save, if required
68 * grammar.save(".../foo.g2g");
229 public void save(String g2gFileName) throws IOException { method in class:Recognizer.Grammar
/frameworks/base/core/java/android/webkit/
H A DWebSettings.java414 * Sets whether the WebView should save form data. The default is true.
416 public void setSaveFormData(boolean save) { argument
431 * Sets whether the WebView should save passwords. The default is true.
435 public void setSavePassword(boolean save) { argument
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.cpp161 int DisplayListRenderer::save(int flags) { function in class:android::uirenderer::DisplayListRenderer
163 return OpenGLRenderer::save(flags);
186 return OpenGLRenderer::save(flags);
H A DOpenGLRenderer.cpp722 int OpenGLRenderer::save(int flags) { function in class:android::uirenderer::OpenGLRenderer
1066 // When the layer is stored in an FBO, we can save a bit of fillrate by
1170 * Issues the command X, and if we're composing a save layer to the fbo or drawing a newly updated
1459 // (Note: saveLayer/restore use colorFilter and alpha, so we just save restore everything)
2168 // to the vertex shader. The save/restore is a bit overkill.
2169 save(SkCanvas::kMatrix_SaveFlag);
2379 save(SkCanvas::kMatrix_SaveFlag);
3066 save(0);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DContentSettingsAdapter.java145 public void setSaveFormData(boolean save) { argument
146 if (DebugFlags.TRACE_API) Log.d(LOGTAG, "setSaveFormData=" + save);
147 mAwSettings.setSaveFormData(save);
156 public void setSavePassword(boolean save) { argument
/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp130 return GraphicsJNI::getNativeCanvas(env, jcanvas)->save();
133 static int save(JNIEnv* env, jobject jcanvas, SkCanvas::SaveFlags flags) { function in class:android::SkCanvasGlue
135 return GraphicsJNI::getNativeCanvas(env, jcanvas)->save(flags);
485 canvas->save();
1001 {"save","()I", (void*) SkCanvasGlue::saveAll},
1002 {"save","(I)I", (void*) SkCanvasGlue::save},
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java223 /*package*/ static int save(Canvas thisCanvas) { method in class:Canvas_Delegate
224 return save(thisCanvas, Canvas.MATRIX_SAVE_FLAG | Canvas.CLIP_SAVE_FLAG);
228 /*package*/ static int save(Canvas thisCanvas, int saveFlags) { method in class:Canvas_Delegate
235 return canvasDelegate.save(saveFlags);
1144 private int save(int saveFlags) { method in class:Canvas_Delegate
1145 // get the current save count
1148 mSnapshot = mSnapshot.save(saveFlags);
1150 // return the old save count
1161 // get the current save count
1166 // return the old save coun
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java1632 public void save(WifiConfiguration config, ActionListener listener) { method in class:WifiManager
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java634 public int save() { method in class:GLES20Canvas
639 public int save(int saveFlags) { method in class:GLES20Canvas
678 return save(saveFlags);
701 return save(saveFlags);
1101 save();
1116 save();

Completed in 593 milliseconds