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

/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.java216 public void save(OutputStream stream) throws IOException { method in class:GestureStore
217 save(stream, false);
220 public void save(OutputStream stream, boolean closeStream) throws IOException { method in class:GestureStore
/frameworks/base/core/java/android/net/http/
H A DCertificateValidatorCache.java166 public boolean put(String domain, byte[] secureHash, long save) { argument
171 new CacheEntry(domain, secureHash, save));
210 public CacheEntry(String domain, byte[] secureHash, long save) { argument
214 mSave = save;
/frameworks/base/graphics/java/android/graphics/
H A DCamera.java26 public native void save(); method in class:Camera
H A DCanvas.java250 * before the save() will be reinstated.
252 * @return The value to pass to restoreToCount() to balance this save()
254 public native int save(); method in class:Canvas
257 * Based on saveFlags, can save the current matrix and clip onto a private
261 * settings that existed before the save() will be reinstated.
264 * to save/restore
265 * @return The value to pass to restoreToCount() to balance this save()
267 public native int save(int saveFlags); method in class:Canvas
270 * This behaves the same as save(), but in addition it allocates an
283 * @return value to pass to restoreToCount() to balance this save()
[all...]
/frameworks/base/media/libdrm/mobile2/src/rights/
H A DRo.cpp121 bool Ro::save() function in class:Ro
123 LOGI("==============Ro save.=================");
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java65 * // fill the Grammar slots with names and save, if required
69 * grammar.save(".../foo.g2g");
230 public void save(String g2gFileName) throws IOException { method in class:Recognizer.Grammar
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas.java233 * @see android.graphics.Canvas#save()
236 public int save() { method in class:Canvas
244 * @see android.graphics.Canvas#save(int)
247 public int save(int saveFlags) { method in class:Canvas
249 return save();
393 // save old color
481 save(); // this creates a new Graphics2D, and stores it for children call to use
878 // since SetMatrix *replaces* all the other transformation, we have to restore/save
880 save();
/frameworks/base/core/java/android/webkit/
H A DWebSettings.java426 public void setSaveFormData(boolean save) { argument
427 mSaveFormData = save;
440 public void setSavePassword(boolean save) { argument
441 mSavePassword = save;
/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp114 return GraphicsJNI::getNativeCanvas(env, jcanvas)->save();
117 static int save(JNIEnv* env, jobject jcanvas, SkCanvas::SaveFlags flags) { function in class:android::SkCanvasGlue
119 return GraphicsJNI::getNativeCanvas(env, jcanvas)->save(flags);
483 canvas->save();
875 {"save","()I", (void*) SkCanvasGlue::saveAll},
876 {"save","(I)I", (void*) SkCanvasGlue::save},
/frameworks/base/core/java/android/provider/
H A DGmail.java350 public static final String FAKE_SAVE = "save";
1765 * save space. Attachments on the SD card must be managed by the user or other software.
2113 * message that we try to save or send. If there is error text then the message is no longer
2114 * scheduled to be saved or sent. Calling save() or send() will clear any error as well as
2115 * scheduling another atempt to save or send the message.
2124 * new values for the message. Then save or send the message. To save or send an existing
2191 * Create a new message and save it as a draft or send it.
2197 * @param save whether to save o
2200 sendOrSaveNewMessage( ContentResolver contentResolver, String account, ContentValues values, long refMessageId, boolean save) argument
2219 sendOrSaveExistingMessage( ContentResolver contentResolver, String account, long messageId, ContentValues updateValues, boolean save) argument
[all...]

Completed in 432 milliseconds