Searched refs:Save (Results 1 - 25 of 205) sorted by relevance

123456789

/external/chromium_org/ui/gfx/
H A Dscoped_canvas.h17 canvas_->Save();
27 canvas_->Save();
/external/chromium_org/third_party/webrtc/base/
H A Doptionsfile_unittest.cc58 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...]
H A Doptionsfile.h29 bool Save();
/external/chromium_org/content/public/common/
H A Dfile_chooser_params.h33 Save, enumerator in enum:content::FileChooserParams::Mode
39 // which will be either "Open" or "Save" depending on the mode.
/external/lzma/CPP/7zip/UI/Common/
H A DZipRegistry.h20 void Save() const;
60 void Save() const;
90 void Save() const;
101 void Save() const;
/external/lldb/include/lldb/Host/
H A DTerminal.h92 /// Save the TTY state for \a fd.
94 /// Save the current state of the TTY for the file descriptor "fd"
110 Save (int fd, bool save_process_group);
116 /// previous call to TerminalState::Save(int,bool).
221 /// Save the TTY state information for the state at index \a idx.
241 Save (uint32_t idx, int fd, bool save_process_group);
/external/chromium_org/chrome/browser/chromeos/app_mode/
H A Dkiosk_app_launch_error.h35 // Save error for displaying on next restart. Note only the last saved error
37 static void Save(Error error);
H A Dapp_launch_utils.cc54 KioskAppLaunchError::Save(error);
H A Dkiosk_app_launch_error.cc58 void KioskAppLaunchError::Save(KioskAppLaunchError::Error error) { function in class:chromeos::KioskAppLaunchError
/external/chromium_org/remoting/host/
H A Djson_host_config.h28 virtual bool Save() OVERRIDE;
H A Dpairing_registry_delegate_linux_unittest.cc20 // 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));
H A Dpairing_registry_delegate_win_unittest.cc60 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));
H A Dhost_config.h69 // SetString() updates specified config value. Save() must be called to save
81 virtual bool Save() = 0;
H A Din_memory_host_config.h39 virtual bool Save() OVERRIDE;
H A Dpairing_registry_delegate_linux.h29 virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) OVERRIDE;
H A Dpairing_registry_delegate_win.h59 virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) OVERRIDE;
/external/chromium_org/components/leveldb_proto/
H A Dleveldb_database.h31 virtual bool Save(const base::StringPairs& pairs_to_save,
/external/chromium_org/third_party/skia/tests/
H A DRecordPatternTest.cpp9 typedef Pattern3<Is<Save>,
31 REPORTER_ASSERT(r, pattern.first<Save>() != NULL);
74 Pattern3<Is<Save>, Star<Is<ClipRect> >, Is<Restore> > pattern;
96 Pattern3<Is<Save>, IsDraw, Is<Restore> > pattern;
120 REPORTER_ASSERT(r, pattern.first<Save>() != NULL);
125 REPORTER_ASSERT(r, pattern.first<Save>() != NULL);
131 Pattern3<Is<Save>,
132 Star<Not<Or3<Is<Save>,
H A DRecordReplaceDrawTest.cpp47 assert_type<SkRecords::Save>(r, rerecord, 0);
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);
H A DRecordDrawTest.cpp45 assert_type<SkRecords::Save> (r, rerecord, 0);
60 assert_type<SkRecords::Save> (r, rerecord, 0);
61 assert_type<SkRecords::Save> (r, rerecord, 1);
84 assert_type<SkRecords::Save> (r, translateRecord, 1);
197 assert_type<SkRecords::Save> (r, rerecord, 0);
220 assert_type<SkRecords::Save> (r, rerecord, 0);
/external/skia/tests/
H A DRecordPatternTest.cpp9 typedef Pattern3<Is<Save>,
31 REPORTER_ASSERT(r, pattern.first<Save>() != NULL);
74 Pattern3<Is<Save>, Star<Is<ClipRect> >, Is<Restore> > pattern;
96 Pattern3<Is<Save>, IsDraw, Is<Restore> > pattern;
120 REPORTER_ASSERT(r, pattern.first<Save>() != NULL);
125 REPORTER_ASSERT(r, pattern.first<Save>() != NULL);
131 Pattern3<Is<Save>,
132 Star<Not<Or3<Is<Save>,
/external/chromium_org/third_party/skia/src/core/
H A DSkRecordOpts.cpp20 // 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 an
[all...]
/external/chromium_org/chromecast/common/
H A Dchromecast_config.h38 void Save() const;
/external/llvm/lib/Target/X86/
H A DX86CompilationCallback_Win64.asm20 ; Save RSP.
23 ; Save all int arg registers
33 ; Save all XMM arg registers. Also allocate reg spill area.
/external/lldb/source/Host/common/
H A DTerminal.cpp133 // Save the current state of the TTY for the file descriptor "fd"
138 TerminalState::Save (int fd, bool save_process_group) function in class:TerminalState
168 // previous call to Save().
186 // Save the original signal handler.
293 // Save the state at index "idx" for file descriptor "fd" and
299 TerminalStateSwitcher::Save (uint32_t idx, int fd, bool save_process_group) function in class:TerminalStateSwitcher
303 return m_ttystates[idx].Save(fd, save_process_group);

Completed in 5041 milliseconds

123456789