HomeSort by relevance Sort by last modified time
    Searched refs:Save (Results 1 - 25 of 221) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/ui/gfx/
scoped_canvas.h 17 canvas_->Save();
27 canvas_->Save();
  /external/chromium_org/third_party/webrtc/base/
optionsfile_unittest.cc 58 EXPECT_TRUE(store_->Save());
63 EXPECT_TRUE(store_->Save());
66 EXPECT_TRUE(store_->Save());
73 EXPECT_TRUE(store_->Save());
76 EXPECT_TRUE(store_->Save());
84 EXPECT_TRUE(store_->Save());
89 EXPECT_TRUE(store_->Save());
92 EXPECT_TRUE(store_->Save());
99 EXPECT_TRUE(store_->Save());
102 EXPECT_TRUE(store_->Save());
    [all...]
optionsfile.h 29 bool Save();
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_launch_error.h 35 // Save error for displaying on next restart. Note only the last saved error
37 static void Save(Error error);
app_launch_utils.cc 54 KioskAppLaunchError::Save(error);
  /external/chromium_org/content/public/common/
file_chooser_params.h 33 Save,
39 // which will be either "Open" or "Save" depending on the mode.
  /external/chromium_org/remoting/host/
json_host_config.h 28 virtual bool Save() OVERRIDE;
pairing_registry_delegate_linux_unittest.cc 20 // subdirectory to ensure that PairingRegistryDelegateLinux::Save() creates
46 EXPECT_TRUE(delegate->Save(pairing1));
47 EXPECT_TRUE(delegate->Save(pairing2));
85 EXPECT_TRUE(save_delegate->Save(pairing));
in_memory_host_config.h 39 virtual bool Save() OVERRIDE;
pairing_registry_delegate_linux.h 29 virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) OVERRIDE;
pairing_registry_delegate_win_unittest.cc 60 EXPECT_TRUE(delegate->Save(pairing1));
61 EXPECT_TRUE(delegate->Save(pairing2));
99 EXPECT_TRUE(save_delegate->Save(pairing));
109 EXPECT_TRUE(delegate->Save(pairing));
127 EXPECT_FALSE(delegate->Save(pairing));
host_config.h 69 // SetString() updates specified config value. Save() must be called to save
81 virtual bool Save() = 0;
pairing_registry_delegate_win.h 59 virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) OVERRIDE;
  /external/lzma/CPP/7zip/UI/Common/
ZipRegistry.h 20 void Save() const;
60 void Save() const;
90 void Save() const;
101 void Save() const;
  /external/lldb/include/lldb/Host/
Terminal.h 92 /// Save the TTY state for \a fd.
94 /// Save the current state of the TTY for the file descriptor "fd"
95 /// and if "save_process_group" is true, attempt to save the process
99 /// The file descriptor to save the state of.
102 /// If \b true, save the process group settings, else do not
103 /// save the process group setttings for a TTY.
110 Save (int fd, bool save_process_group);
116 /// previous call to TerminalState::Save(int,bool).
202 /// Get the number of possible states to save.
221 /// Save the TTY state information for the state at index \a idx
    [all...]
  /external/chromium_org/components/leveldb_proto/
leveldb_database.h 31 virtual bool Save(const base::StringPairs& pairs_to_save,
  /external/chromium_org/third_party/skia/tests/
RecordPatternTest.cpp 9 typedef Pattern3<Is<Save>,
22 // Build up a save-clip-restore block. The pattern will match only it's complete.
23 recorder.save();
31 REPORTER_ASSERT(r, pattern.first<Save>() != NULL);
42 // There will be two save-clipRect-restore blocks [0,3) and [3,6).
44 recorder.save();
65 recorder.save();
74 Pattern3<Is<Save>, Star<Is<ClipRect> >, Is<Restore> > pattern;
79 recorder.save();
83 recorder.save();
    [all...]
RecordReplaceDrawTest.cpp 47 assert_type<SkRecords::Save>(r, rerecord, 0);
56 recorder.save(); // We won't balance this, but GrRecordReplaceDraw will for us.
65 assert_type<SkRecords::Save>(r, rerecord, 0);
66 assert_type<SkRecords::Save>(r, rerecord, 1);
116 assert_type<SkRecords::Save>(r, rerecord, 0);
117 assert_type<SkRecords::Save>(r, rerecord, 1);
RecordDrawTest.cpp 45 assert_type<SkRecords::Save> (r, rerecord, 0);
53 recorder.save(); // We won't balance this, but SkRecordDraw will for us.
60 assert_type<SkRecords::Save> (r, rerecord, 0);
61 assert_type<SkRecords::Save> (r, rerecord, 1);
84 assert_type<SkRecords::Save> (r, translateRecord, 1);
134 recorder.save();
197 assert_type<SkRecords::Save> (r, rerecord, 0);
220 assert_type<SkRecords::Save> (r, rerecord, 0);
  /external/chromium_org/third_party/skia/src/core/
SkRecordOpts.cpp 20 // Save-NoDraw-Restore sequences better than we can here.
46 // Turns the logical NoOp Save and Restore in Save-Draw*-Restore patterns into actual NoOps.
48 typedef Pattern3<Is<Save>,
54 record->replace<NoOp>(begin); // Save
59 // Turns logical no-op Save-[non-drawing command]*-Restore patterns into actual no-ops.
61 // Star matches greedily, so we also have to exclude Save and Restore.
63 typedef Pattern3<Is<Save>,
64 Star<Not<Or4<Is<Save>,
72 // The entire span between Save and Restore (inclusively) does nothing
    [all...]
  /development/host/windows/usb/api/
adb_interface_enum.cpp 88 entry.Save(info);
adb_api_private_defines.h 66 /// Calculates memory size needed to save this entry into AdbInterfaceInfo
75 @param[in] info Buffer to save this entry to. Must be big enough to fit it.
79 void Save(AdbInterfaceInfo* info) const {
  /external/chromium_org/chromecast/common/
chromecast_config.h 38 void Save() const;
  /external/llvm/lib/Target/X86/
X86CompilationCallback_Win64.asm 20 ; Save RSP.
23 ; Save all int arg registers
33 ; Save all XMM arg registers. Also allocate reg spill area.
  /external/lldb/source/Host/common/
Terminal.cpp 133 // Save the current state of the TTY for the file descriptor "fd"
134 // and if "save_process_group" is true, attempt to save the process
138 TerminalState::Save (int fd, bool save_process_group)
168 // previous call to Save().
186 // Save the original signal handler.
293 // Save the state at index "idx" for file descriptor "fd" and
294 // save the process group if requested.
299 TerminalStateSwitcher::Save (uint32_t idx, int fd, bool save_process_group)
303 return m_ttystates[idx].Save(fd, save_process_group);

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 9