Searched refs:WriteNode (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/sync/internal_api/
H A Dwrite_node.cc36 void WriteNode::SetIsFolder(bool folder) {
44 void WriteNode::SetTitle(const std::wstring& title) {
110 void WriteNode::SetAppSpecifics(
117 void WriteNode::SetAutofillSpecifics(
124 void WriteNode::SetAutofillProfileSpecifics(
132 void WriteNode::SetBookmarkSpecifics(
139 void WriteNode::SetNigoriSpecifics(
146 void WriteNode::SetPasswordSpecifics(
175 void WriteNode::SetThemeSpecifics(
182 void WriteNode
282 WriteNode::WriteNode(WriteTransaction* transaction) function in class:syncer::WriteNode
[all...]
H A Dsync_encryption_handler_impl.h26 class WriteNode;
181 WriteNode* nigori_node);
188 WriteNode* nigori_node);
204 WriteNode* nigori_node);
231 WriteNode* nigori_node);
H A Dsync_manager_impl_unittest.cc126 WriteNode node(&trans);
127 WriteNode::InitUniqueByCreationResult result =
129 EXPECT_EQ(WriteNode::INIT_SUCCESS, result);
143 WriteNode node(&trans);
155 WriteNode node(&trans);
327 WriteNode node(&trans);
347 WriteNode folder_node(&trans);
351 WriteNode wnode(&trans);
352 WriteNode::InitUniqueByCreationResult result =
354 EXPECT_EQ(WriteNode
[all...]
/external/chromium/chrome/browser/sync/glue/
H A Dextension_sync_traits.h16 class WriteNode;
38 const sync_pb::ExtensionSpecifics&, sync_api::WriteNode*);
H A Dbookmark_change_processor.h89 sync_api::WriteNode* sync_node);
140 sync_api::WriteNode* dst,
146 sync_api::WriteNode* dst);
H A Dpreference_model_associator.h22 class WriteNode;
109 sync_api::WriteNode* node);
H A Dtheme_model_associator.cc46 sync_api::WriteNode node(&trans);
61 sync_api::WriteNode node(&trans);
H A Dextension_sync_traits.cc45 sync_api::WriteNode* node) {
105 sync_api::WriteNode* node) {
H A Dpassword_model_associator.h30 class WriteNode;
117 sync_api::WriteNode* node);
H A Dautofill_profile_change_processor.cc142 sync_api::WriteNode node(trans);
157 sync_api::WriteNode node(trans);
264 sync_api::WriteNode node(trans);
292 sync_api::WriteNode node(trans);
321 sync_api::WriteNode* node) {
H A Dbookmark_change_processor.cc51 const BookmarkNode* src, BookmarkModel* model, sync_api::WriteNode* dst) {
81 sync_api::WriteNode sync_node(trans);
162 // Create a WriteNode container to hold the new node.
163 sync_api::WriteNode sync_child(trans);
203 sync_api::WriteNode sync_node(&trans);
237 sync_api::WriteNode sync_node(&trans);
265 sync_api::WriteNode sync_child(&trans);
285 sync_api::WriteNode* dst, BookmarkModelAssociator* associator) {
552 sync_api::WriteNode* sync_node) {
H A Dtyped_url_model_associator.h30 class WriteNode;
122 sync_api::WriteNode* node);
/external/chromium_org/chrome/browser/sync/glue/
H A Dbookmark_change_processor.h22 class WriteNode;
114 syncer::WriteNode* sync_node);
151 syncer::WriteNode* sync_node);
165 syncer::WriteNode* dst,
171 syncer::WriteNode* dst);
179 void RemoveOneSyncNode(syncer::WriteNode* sync_node);
H A Dpassword_change_processor.cc82 syncer::WriteNode sync_node(&trans);
83 syncer::WriteNode::InitUniqueByCreationResult result =
86 if (result == syncer::WriteNode::INIT_SUCCESS) {
120 syncer::WriteNode sync_node(&trans);
141 syncer::WriteNode sync_node(&trans);
H A Dtab_node_pool.cc81 syncer::WriteNode tab_node(&trans);
82 syncer::WriteNode::InitUniqueByCreationResult result =
84 if (result != syncer::WriteNode::INIT_SUCCESS) {
127 syncer::WriteNode tab_node(&trans);
173 syncer::WriteNode tab_node(&trans);
H A Dpassword_model_associator.h32 class WriteNode;
119 syncer::WriteNode* node);
H A Dsynced_device_tracker.cc177 syncer::WriteNode node(&trans);
189 syncer::WriteNode new_node(&trans);
190 syncer::WriteNode::InitUniqueByCreationResult create_result =
194 DCHECK_EQ(syncer::WriteNode::INIT_SUCCESS, create_result);
H A Dtyped_url_change_processor.cc126 syncer::WriteNode update_node(trans);
166 syncer::WriteNode create_node(trans);
167 syncer::WriteNode::InitUniqueByCreationResult result =
170 if (result != syncer::WriteNode::INIT_SUCCESS) {
203 syncer::WriteNode sync_node(&trans);
H A Dgeneric_change_processor.cc30 syncer::WriteNode* write_node) {
267 syncer::WriteNode* node,
331 syncer::WriteNode sync_node(&trans);
362 syncer::WriteNode::InitUniqueByCreationResult result =
366 if (result != syncer::WriteNode::INIT_SUCCESS) {
370 case syncer::WriteNode::INIT_FAILED_EMPTY_TAG: {
378 case syncer::WriteNode::INIT_FAILED_ENTRY_ALREADY_EXISTS: {
386 case syncer::WriteNode::INIT_FAILED_COULD_NOT_CREATE_ENTRY: {
395 case syncer::WriteNode::INIT_FAILED_SET_PREDECESSOR: {
H A Dpassword_model_associator.cc112 syncer::WriteNode write_node(&trans);
127 syncer::WriteNode node(&trans);
128 syncer::WriteNode::InitUniqueByCreationResult result =
130 if (result != syncer::WriteNode::INIT_SUCCESS) {
189 syncer::WriteNode sync_node(trans);
398 syncer::WriteNode* node) {
/external/chromium_org/sync/internal_api/public/
H A Dwrite_node.h41 // WriteNode extends BaseNode to add mutation, and wraps
42 // syncable::MutableEntry. A WriteTransaction is needed to create a WriteNode.
43 class SYNC_EXPORT WriteNode : public BaseNode { class in namespace:syncer
57 // Create a WriteNode using the given transaction.
58 explicit WriteNode(WriteTransaction* transaction);
59 virtual ~WriteNode();
210 DISALLOW_COPY_AND_ASSIGN(WriteNode);
/external/clang/lib/AST/
H A DInheritViz.cpp48 WriteNode(Type, false);
53 /// WriteNode - Write out the description of node in the inheritance
55 void WriteNode(QualType Type, bool FromVirtual);
63 void InheritanceHierarchyWriter::WriteNode(QualType Type, bool FromVirtual) { function in class:clang::InheritanceHierarchyWriter
106 WriteNode(Base->getType(), Base->isVirtual());
/external/chromium_org/sync/syncable/
H A Dmodel_neutral_mutable_entry.h13 class WriteNode;
99 friend class syncer::WriteNode;
H A Dmutable_entry.h15 class WriteNode;
/external/chromium/chrome/browser/sync/engine/
H A Dsyncapi.cc433 // WriteNode member definitions
434 void WriteNode::EncryptIfNecessary(sync_pb::EntitySpecifics* unencrypted) {
468 void WriteNode::SetIsFolder(bool folder) {
476 void WriteNode::SetTitle(const std::wstring& title) {
489 void WriteNode::SetURL(const GURL& url) {
495 void WriteNode::SetAppSpecifics(
501 void WriteNode::SetAutofillSpecifics(
507 void WriteNode::PutAutofillSpecificsAndMarkForSyncing(
515 void WriteNode::SetAutofillProfileSpecifics(
521 void WriteNode
692 WriteNode::WriteNode(WriteTransaction* transaction) function in class:sync_api::WriteNode
[all...]

Completed in 298 milliseconds

123