HomeSort by relevance Sort by last modified time
    Searched defs:save (Results 201 - 225 of 1335) sorted by null

1 2 3 4 5 6 7 891011>>

  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Rotate3dAnimation.java 79 camera.save();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Regions.java 97 canvas.save();
104 canvas.save();
109 canvas.save();
114 canvas.save();
119 canvas.save();
Vertices.java 80 canvas.save();
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
ShadowLayout.java 104 canvas.save();
  /device/google/cuttlefish_common/common/libs/fs/
shared_fd.cpp 46 SharedFDSet save; local
47 save.swap(in_out_set);
48 for (SharedFDSet::iterator it = save.begin(); it != save.end(); ++it) {
  /external/autotest/scheduler/
rdb_hosts.py 152 # preferable to calling save() on the host object because we're only
215 """Send an update to rdb, save the attributes of the payload locally.
381 def save(self): member in class:RDBClientHostWrapper
382 """Save any local data a client of this host object might have saved.
384 Setting attributes on a model before calling its save() method is a
388 we need a bulk save method such as this one to save any attributes of
390 save method. Eg:
393 task.save() -> this should result in the hosts status changing to
  /external/autotest/site_utils/lxc/
container.py 48 def save(self, path): member in class:ContainerId
546 self._id.save(os.path.join(self.container_path, self.name))
  /external/libpng/contrib/examples/
simpleover.c 275 /* All the sprite operations have completed successfully. Save the RGBA
282 png_image save; local
284 memset(&save, 0, sizeof save);
285 save.version = PNG_IMAGE_VERSION;
286 save.opaque = NULL;
287 save.width = sprite->width;
288 save.height = sprite->height;
289 save.format = PNG_FORMAT_LINEAR_RGB_ALPHA;
290 save.flags = PNG_IMAGE_FLAG_FAST
    [all...]
  /external/libpng/
pngtrans.c 635 png_byte save = *rp; local
637 *(rp + 2) = save;
648 png_byte save = *rp; local
650 *(rp + 2) = save;
665 png_byte save = *rp; local
667 *(rp + 4) = save;
668 save = *(rp + 1);
670 *(rp + 5) = save;
681 png_byte save = *rp; local
683 *(rp + 4) = save;
    [all...]
  /external/ltp/utils/sctp/testlib/
sctputil.c 102 char save; local
125 save = text[msg_len-1];
137 text[msg_len-1] = save;
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObject.java 390 int save = indentation; local
393 indentation = save;
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageObject.java 164 int save = indentation; local
167 indentation = save;
  /external/parameter-framework/upstream/parameter/
DomainConfiguration.cpp 326 // Save data from current
327 void CDomainConfiguration::save(const CParameterBlackboard *pMainBlackboard) function in class:CDomainConfiguration
331 areaConfiguration->save(pMainBlackboard);
  /external/pdfium/third_party/libpng16/
pngtrans.c 620 png_byte save = *rp; local
622 *(rp + 2) = save;
633 png_byte save = *rp; local
635 *(rp + 2) = save;
650 png_byte save = *rp; local
652 *(rp + 4) = save;
653 save = *(rp + 1);
655 *(rp + 5) = save;
666 png_byte save = *rp; local
668 *(rp + 4) = save;
    [all...]
  /external/python/cpython2/Mac/Demo/textedit/
ped.py 109 save = EasyDialogs.AskYesNoCancel('Save window "%s" before closing?'%self.name, 1)
110 if save > 0:
112 elif save < 0:
134 path = EasyDialogs.AskFileForSave(message='Save as:')
194 self.saveitem = MenuItem(m, "Save", "S", self.save)
195 self.saveasitem = MenuItem(m, "Save as...", "", self.saveas)
293 def save(self, *args): member in class:Ped
  /external/skia/src/atlastext/
SkAtlasTextTarget.cpp 36 int SkAtlasTextTarget::save() { function in class:SkAtlasTextTarget
  /external/skia/src/core/
SkRasterClipStack.h 86 void save() { function in class:SkRasterClipStack
  /external/skqp/src/atlastext/
SkAtlasTextTarget.cpp 36 int SkAtlasTextTarget::save() { function in class:SkAtlasTextTarget
  /external/skqp/src/core/
SkRasterClipStack.h 86 void save() { function in class:SkRasterClipStack
  /external/syslinux/com32/chain/
options.h 64 bool save; member in struct:options
  /external/syslinux/com32/lib/libpng/
pngtrans.c 605 png_byte save = *rp; local
607 *(rp + 2) = save;
617 png_byte save = *rp; local
619 *(rp + 2) = save;
632 png_byte save = *rp; local
634 *(rp + 4) = save;
635 save = *(rp + 1);
637 *(rp + 5) = save;
647 png_byte save = *rp; local
649 *(rp + 4) = save;
    [all...]
  /external/syslinux/gpxe/src/util/Option/
ROM.pm 36 $rom->save ( "rtl8139-modified.rom" );
266 =item C<< save ( [ $filename ] ) >>
273 sub save { subroutine
  /external/tensorflow/tensorflow/core/kernels/
restore_op_test.cc 72 NodeDef save; local
74 NodeDefBuilder("myop", "Save")
80 .Finalize(&save));
89 cpu_allocator(), save,
379 NodeDef save; local
380 TF_ASSERT_OK(NodeDefBuilder("save", "Save")
384 .Finalize(&save));
393 cpu_allocator(), save,
restore_v2_op_test.cc 68 // We first need to write using the desired save op.
71 NodeDef save; local
72 if (save_op_to_use != "Save") {
81 .Finalize(&save));
90 .Finalize(&save));
100 CreateOpKernel(DEVICE_CPU, device.get(), cpu_allocator(), save,
120 if (save_op_to_use != "Save") {
354 TEST_F(RestoreV2OpTest, RestoreAfterSaveV1) { RunTest("Save"); }
  /external/turbine/java/com/google/turbine/parse/
VariableInitializerParser.java 94 save(); method
104 save(); method
116 save(); method
120 save(); method
125 save(); method
130 save(); method
135 save(); method
140 save(); method
152 save(); method
156 save(); method
168 save(); method
173 save(); method
177 save(); method
188 save(); method
198 save(); method
226 save(); method
231 save(); method
236 save(); method
248 save(); method
253 save(); method
258 save(); method
265 private void save() { method in class:VariableInitializerParser
    [all...]

Completed in 6549 milliseconds

1 2 3 4 5 6 7 891011>>