HomeSort by relevance Sort by last modified time
    Searched defs:save (Results 1 - 25 of 585) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
__strrchr_chk.cpp 36 char *save; local
38 for (save = NULL;; ++p, s_len--) {
42 save = (char *)p;
44 return(save);
__strcat_chk.cpp 49 char* save = dest; local
63 return save;
md5.h 43 unsigned char save[64]; member in struct:md5
  /bionic/libc/string/
strcat.c 46 char *save = s; local
50 return(save);
strcpy.c 37 char *save = to; local
40 return(save);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
options.js 36 function save() { function
49 * script. Add Listener to enable the save checkbox button on server response.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
options.js 15 * local storage, and sets up the `save` event handler.
31 document.querySelector('#multiCalendar').addEventListener('click', save);
37 function save() { function
50 * script. Add Listener to enable the save checkbox button on server response.
  /external/chromium_org/third_party/skia/src/animator/
SkDrawTo.cpp 39 SkCanvas* save = maker.fCanvas; local
42 maker.fCanvas = save;
  /external/skia/src/animator/
SkDrawTo.cpp 39 SkCanvas* save = maker.fCanvas; local
42 maker.fCanvas = save;
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
use-after-scope-temp.cc 18 void save(const IntHolder &holder) { function
23 save(IntHolder(10));
  /external/jmonkeyengine/engine/src/core/com/jme3/export/
JmeExporter.java 54 public boolean save(Savable object, OutputStream f) throws IOException; method in interface:JmeExporter
65 public boolean save(Savable object, File f) throws IOException; method in interface:JmeExporter
  /external/srec/srec/Vocabulary/include/
SR_Vocabulary.h 49 ESR_ReturnCode(*save)(struct SR_Vocabulary_t* self, const LCHAR* filename); member in struct:SR_Vocabulary_t
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_save.c 58 struct vbo_save_context *save = &vbo->save; local
60 save->ctx = ctx;
62 vbo_save_api_init( save );
66 struct gl_client_array *arrays = save->arrays;
99 struct vbo_save_context *save = &vbo->save; local
102 if (save->prim_store) {
103 if ( --save->prim_store->refcount == 0 ) {
104 FREE( save->prim_store )
127 struct vbo_save_context *save = &vbo_context(ctx)->save; local
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_save.c 58 struct vbo_save_context *save = &vbo->save; local
60 save->ctx = ctx;
62 vbo_save_api_init( save );
66 struct gl_client_array *arrays = save->arrays;
99 struct vbo_save_context *save = &vbo->save; local
102 if (save->prim_store) {
103 if ( --save->prim_store->refcount == 0 ) {
104 FREE( save->prim_store )
127 struct vbo_save_context *save = &vbo_context(ctx)->save; local
    [all...]
  /external/srec/srec/AcousticState/include/
SR_AcousticState.h 72 ESR_ReturnCode(*save)(SR_Recognizer* recognizer, const LCHAR* filename); member in struct:SR_AcousticState_t
  /external/srec/srec/Semproc/include/
SR_SemanticGraph.h 78 ESR_ReturnCode(*save)(struct SR_SemanticGraph_t* self, const LCHAR* filename, int version_number); member in struct:SR_SemanticGraph_t
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_LWPCookieJar.py 1 """Load / save to libwww-perl (LWP) format files.
65 ignore_discard and ignore_expires: see docstring for FileCookieJar.save
78 def save(self, filename=None, ignore_discard=False, ignore_expires=False): member in class:LWPCookieJar
_MozillaCookieJar.py 12 this class to save cookies. I *think* it works, but there have been
15 This class differs from CookieJar only in the format it uses to save and
22 save at all while the browser is running).
113 def save(self, filename=None, ignore_discard=False, ignore_expires=False): member in class:MozillaCookieJar
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_LWPCookieJar.py 1 """Load / save to libwww-perl (LWP) format files.
65 ignore_discard and ignore_expires: see docstring for FileCookieJar.save
78 def save(self, filename=None, ignore_discard=False, ignore_expires=False): member in class:LWPCookieJar
_MozillaCookieJar.py 12 this class to save cookies. I *think* it works, but there have been
15 This class differs from CookieJar only in the format it uses to save and
22 save at all while the browser is running).
113 def save(self, filename=None, ignore_discard=False, ignore_expires=False): member in class:MozillaCookieJar
  /external/chromium_org/remoting/webapp/
host_settings.js 41 * Save the settings for the specified hosts. Existing settings with the same
44 * @param {string} hostId The host identifer for which to save options.
45 * @param {Object} options The options to save, expressed as a dictionary of
50 remoting.HostSettings.save = function(hostId, options, opt_callback) {
69 * Helper function for both load and save.
  /frameworks/base/core/java/android/gesture/
GestureLibraries.java 63 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
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HandlerRegistry.js 140 WebInspector.fileManager.save(url, content, forceSaveAs);
148 function save(forceSaveAs) function
159 contextMenu.appendItem(WebInspector.UIString("Save"), save.bind(this, false));
160 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Save as..." : "Save As..."), save.bind(this, true));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextStateSaver.h 45 m_context.save();
54 void save() function in class:WebCore::GraphicsContextStateSaver
57 m_context.save();
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
testfile.py 90 if file.save(data):
94 status_string = "Couldn't save file. %s" % file_information
114 def save(self, data): member in class:TestFile

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011>>