Searched defs:trans (Results 76 - 100 of 190) sorted by relevance

12345678

/external/chromium_org/chrome/browser/sync/glue/
H A Dsync_backend_registrar.cc245 const syncer::BaseTransaction* trans,
251 processor->ApplyChangesFromSyncModel(trans, model_version, changes);
242 OnChangesApplied( syncer::ModelType model_type, int64 model_version, const syncer::BaseTransaction* trans, const syncer::ImmutableChangeRecordList& changes) argument
/external/chromium_org/net/http/
H A Dfailing_http_transaction_factory.cc183 scoped_ptr<HttpTransaction>* trans) {
184 trans->reset(new FailingHttpTransaction(error_));
181 CreateTransaction( RequestPriority priority, scoped_ptr<HttpTransaction>* trans) argument
H A Dhttp_network_layer_unittest.cc63 scoped_ptr<HttpTransaction> trans; local
64 int rv = factory_->CreateTransaction(DEFAULT_PRIORITY, &trans);
67 rv = trans->Start(&request_info, callback.callback(), BoundNetLog());
73 rv = ReadTransaction(trans.get(), &contents);
79 EXPECT_TRUE(trans->GetResponseInfo()->headers->HasHeaderValue(
268 scoped_ptr<HttpTransaction> trans; local
269 int rv = factory_->CreateTransaction(DEFAULT_PRIORITY, &trans);
271 EXPECT_TRUE(trans.get() != NULL);
275 scoped_ptr<HttpTransaction> trans; local
276 int rv = factory_->CreateTransaction(DEFAULT_PRIORITY, &trans);
319 scoped_ptr<HttpTransaction> trans; local
358 scoped_ptr<HttpTransaction> trans; local
391 scoped_ptr<HttpTransaction> trans; local
[all...]
H A Dhttp_transaction_test_util.cc135 void AddMockTransaction(const MockTransaction* trans) { argument
136 mock_transactions[GURL(trans->url).spec()] = trans;
139 void RemoveMockTransaction(const MockTransaction* trans) { argument
140 mock_transactions.erase(GURL(trans->url).spec());
466 scoped_ptr<net::HttpTransaction>* trans) {
472 *trans = mock_transaction.Pass();
487 int ReadTransaction(net::HttpTransaction* trans, std::string* result) { argument
495 rv = trans->Read(buf.get(), 256, callback.callback());
464 CreateTransaction( net::RequestPriority priority, scoped_ptr<net::HttpTransaction>* trans) argument
H A Dmock_http_cache.cc519 int MockHttpCache::CreateTransaction(scoped_ptr<net::HttpTransaction>* trans) { argument
520 return http_cache_.CreateTransaction(net::DEFAULT_PRIORITY, trans);
/external/chromium_org/sync/engine/
H A Dcommit_util.cc272 syncable::BaseWriteTransaction* trans = local_entry->base_write_transaction(); local
283 trans,
292 ChangeEntryIDAndUpdateChildren(trans, local_entry, entry_response_id);
397 syncable::BaseWriteTransaction* trans,
403 trans,
450 Entry e(trans, syncable::GET_BY_ID, server_entry_id);
396 ProcessSingleCommitResponse( syncable::BaseWriteTransaction* trans, const sync_pb::CommitResponse_EntryResponse& server_entry, const sync_pb::SyncEntity& commit_request_entry, int64 metahandle, set<syncable::Id>* deleted_folders) argument
H A Ddirectory_commit_contribution_unittest.cc26 syncable::WriteTransaction trans(FROM_HERE, syncable::UNITTEST, dir());
27 CreateTypeRoot(&trans, dir(), PREFERENCES);
28 CreateTypeRoot(&trans, dir(), EXTENSIONS);
29 CreateTypeRoot(&trans, dir(), ARTICLES);
30 CreateTypeRoot(&trans, dir(), BOOKMARKS);
39 syncable::WriteTransaction* trans,
43 syncable::Entry parent_entry(trans, syncable::GET_TYPE_ROOT, type);
45 trans,
57 int64 CreateUnsyncedItem(syncable::WriteTransaction* trans, argument
61 trans, typ
38 CreateUnsyncedItemWithAttachments( syncable::WriteTransaction* trans, ModelType type, const std::string& tag, const sync_pb::AttachmentMetadata& attachment_metadata) argument
64 CreateSyncedItem(syncable::WriteTransaction* trans, ModelType type, const std::string& tag) argument
[all...]
H A Dget_commit_ids.cc33 syncable::BaseTransaction* trans,
46 syncable::BaseTransaction* trans,
54 syncable::BaseTransaction* trans,
58 syncable::Directory* dir = trans->directory();
64 GetUnsyncedEntries(trans, &all_unsynced_handles);
68 Cryptographer* cryptographer = dir->GetCryptographer(trans);
70 encrypted_types = dir->GetNigoriHandler()->GetEncryptedTypes(trans);
78 FilterUnreadyEntries(trans,
85 OrderCommitIds(trans, max_entries, ready_unsynced_set, out);
190 syncable::BaseTransaction* trans,
53 GetCommitIdsForType( syncable::BaseTransaction* trans, ModelType type, size_t max_entries, syncable::Directory::Metahandles* out) argument
189 FilterUnreadyEntries( syncable::BaseTransaction* trans, ModelTypeSet requested_types, ModelTypeSet encrypted_types, bool passphrase_missing, const syncable::Directory::Metahandles& unsynced_handles, std::set<int64>* ready_unsynced_set) argument
277 Traversal( syncable::BaseTransaction* trans, int64 max_entries, syncable::Directory::Metahandles* out) argument
541 OrderCommitIds( syncable::BaseTransaction* trans, size_t max_entries, const std::set<int64>& ready_unsynced_set, syncable::Directory::Metahandles* out) argument
[all...]
H A Dsyncer_util.cc79 syncable::BaseTransaction* trans,
86 const std::string& client_id = trans->directory()->cache_guid();
108 syncable::Entry local_entry(trans, syncable::GET_BY_CLIENT_TAG,
165 syncable::Entry local_entry(trans, GET_BY_ID, client_item_id);
193 syncable::WriteTransaction* const trans,
230 Entry parent(trans, GET_BY_ID, new_parent);
242 if (!entry->GetIsDel() && !IsLegalNewParent(trans, id, new_parent)) {
250 trans->directory()->GetChildHandlesById(trans, id, &handles);
275 UpdateLocalDataFromServerData(trans, entr
78 FindLocalIdToUpdate( syncable::BaseTransaction* trans, const sync_pb::SyncEntity& update) argument
192 AttemptToUpdateEntry( syncable::WriteTransaction* const trans, syncable::MutableEntry* const entry, Cryptographer* cryptographer) argument
427 CreateNewEntry(syncable::ModelNeutralWriteTransaction *trans, const syncable::Id& id) argument
440 UpdateLocalDataFromServerData( syncable::WriteTransaction* trans, syncable::MutableEntry* entry) argument
491 MarkDeletedChildrenSynced( syncable::Directory* dir, syncable::BaseWriteTransaction* trans, std::set<syncable::Id>* deleted_folders) argument
546 VerifyUpdateConsistency( syncable::ModelNeutralWriteTransaction* trans, const sync_pb::SyncEntity& update, const bool deleted, const bool is_directory, ModelType model_type, syncable::ModelNeutralMutableEntry* target) argument
620 VerifyUndelete(syncable::ModelNeutralWriteTransaction* trans, const sync_pb::SyncEntity& update, syncable::ModelNeutralMutableEntry* target) argument
[all...]
/external/chromium_org/sync/syncable/
H A Dentry.h54 Entry(BaseTransaction* trans, GetByHandle, int64 handle);
55 Entry(BaseTransaction* trans, GetById, const Id& id);
56 Entry(BaseTransaction* trans, GetTypeRoot, ModelType type);
57 Entry(BaseTransaction* trans, GetByClientTag, const std::string& tag);
61 Entry(BaseTransaction* trans, GetByServerTag, const std::string& tag);
65 BaseTransaction* trans() const { return basetrans_; } function in class:syncer::syncable::Entry
270 inline explicit Entry(BaseTransaction* trans) argument
271 : basetrans_(trans),
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DAffineTransform.cpp121 AffineTransform trans; local
123 trans.m_transform[0] = other.m_transform[0] * m_transform[0] + other.m_transform[1] * m_transform[2];
124 trans.m_transform[1] = other.m_transform[0] * m_transform[1] + other.m_transform[1] * m_transform[3];
125 trans.m_transform[2] = other.m_transform[2] * m_transform[0] + other.m_transform[3] * m_transform[2];
126 trans.m_transform[3] = other.m_transform[2] * m_transform[1] + other.m_transform[3] * m_transform[3];
127 trans.m_transform[4] = other.m_transform[4] * m_transform[0] + other.m_transform[5] * m_transform[2] + m_transform[4];
128 trans.m_transform[5] = other.m_transform[4] * m_transform[1] + other.m_transform[5] * m_transform[3] + m_transform[5];
130 setMatrix(trans.m_transform);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dr600_texture.c272 struct r600_transfer *trans; local
308 trans = CALLOC_STRUCT(r600_transfer);
309 if (trans == NULL)
311 pipe_resource_reference(&trans->transfer.resource, texture);
312 trans->transfer.level = level;
313 trans->transfer.usage = usage;
314 trans->transfer.box = *box;
323 pipe_resource_reference(&trans->transfer.resource, NULL);
324 FREE(trans);
327 trans
[all...]
/external/chromium_org/third_party/ots/test/
H A Dside-by-side.cc42 int CompareBitmaps(const FT_Bitmap *orig, const FT_Bitmap *trans) { argument
45 if (orig->width == trans->width &&
46 orig->rows == trans->rows) {
48 if (orig->buffer[i] != trans->buffer[i]) {
56 orig->width, orig->rows, trans->width, trans->rows);
64 DumpBitmap(trans);
69 delete[] trans->buffer;
/external/clang/lib/ARCMigrate/
H A DTransforms.h28 namespace trans { namespace in namespace:clang::arcmt
219 } // end namespace trans
/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h378 * \param [in] trans New value of the transpose flag.
383 * \sa trans()
385 HouseholderSequence& setTrans(bool trans) argument
387 m_trans = trans;
391 bool trans() const { return m_trans; } /**< \brief Returns the transpose flag. */ function in class:Eigen::HouseholderSequence
/external/eigen/bench/
H A Dbench_gemm.cpp39 static char trans = 'T'; variable
/external/eigen/blas/
H A Dlevel2_impl.h200 int EIGEN_BLAS_FUNC(gbmv)(char *trans, int *m, int *n, int *kl, int *ku, RealScalar *palpha, RealScalar *pa, int *lda, argument
211 if(OP(*trans)==INVALID) info = 1;
227 if(OP(*trans)!=NOTR)
248 if(OP(*trans)==NOTR)
250 else if(OP(*trans)==TR)
306 if(OP(*trans)==NOTR)
308 else if(OP(*trans)==TR)
/external/eigen/demos/opengl/
H A Dcamera.cpp186 Vector3f trans = orientation() * t; local
187 setPosition( position() + trans );
188 setTarget( mTarget + trans );
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_texture.c272 struct r600_transfer *trans; local
308 trans = CALLOC_STRUCT(r600_transfer);
309 if (trans == NULL)
311 pipe_resource_reference(&trans->transfer.resource, texture);
312 trans->transfer.level = level;
313 trans->transfer.usage = usage;
314 trans->transfer.box = *box;
323 pipe_resource_reference(&trans->transfer.resource, NULL);
324 FREE(trans);
327 trans
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestalpha.c65 Uint8 trans, alphamask; local
125 trans = alphamask;
128 trans = (Uint8)((range*alphamask)/radius);
132 if ( (int)trans+addition > alphamask ) {
133 trans = alphamask;
135 trans += addition;
139 *buf++ |= (255-trans);
/external/srec/tools/parseStringTest/
H A DparseStringTest.c67 void lstr_strip_multiple_spaces(LCHAR* trans) argument
69 char *src=trans, *dst=trans;
104 ESR_ReturnCode Parse(SR_Grammar* grammar, LCHAR* trans, PFile* fout, Opts* opts) argument
123 trans = wmap->words[id];
124 Parse(grammar, trans, fout, &myopts);
132 lstrtrim(trans);
134 lstr_strip_multiple_spaces(trans);
138 rc = grammar->checkParse(grammar, trans, semanticResults, (size_t*) & result_count);
143 strcpy(copy_of_trans, trans);
211 ParseTestSet(SR_Grammar* grammar, LCHAR* trans, LCHAR* key, LCHAR* ref, LCHAR* result, PFile* fout) argument
276 LCHAR trans[MAX_LINE_LENGTH]; local
452 LCHAR trans[MAX_LINE_LENGTH]; local
540 LCHAR trans[MAX_LINE_LENGTH]; local
[all...]
/external/bison/src/
H A DAnnotationList.c155 AnnotationList__compute_shift_tokens (transitions *trans) argument
159 FOR_EACH_SHIFT (trans, i)
160 bitset_set (shift_tokens, TRANSITION_SYMBOL (trans, i));
/external/chromium_org/components/sync_driver/
H A Dgeneric_change_processor.cc128 const syncer::BaseTransaction* trans,
158 syncer::ReadNode read_node(trans);
220 syncer::WriteTransaction trans(FROM_HERE, share_handle());
221 trans.SetDataTypeContext(type, refresh_status, context);
231 syncer::WriteTransaction trans(FROM_HERE, share_handle());
232 trans.UpdateEntriesMarkAttachmentAsOnServer(attachment_id);
239 syncer::ReadTransaction trans(FROM_HERE, share_handle());
240 syncer::ReadNode root(&trans);
259 syncer::ReadNode sync_child_node(&trans);
276 syncer::ReadTransaction trans(FROM_HER
127 ApplyChangesFromSyncModel( const syncer::BaseTransaction* trans, int64 model_version, const syncer::ImmutableChangeRecordList& changes) argument
484 HandleActionAdd( const syncer::SyncChange& change, const std::string& type_str, const syncer::WriteTransaction& trans, syncer::WriteNode* sync_node, syncer::AttachmentIdSet* new_attachments) argument
567 HandleActionUpdate( const syncer::SyncChange& change, const std::string& type_str, const syncer::WriteTransaction& trans, syncer::WriteNode* sync_node, syncer::AttachmentIdSet* new_attachments) argument
[all...]
/external/chromium_org/sync/internal_api/
H A Dbase_node.cc35 static int64 IdToMetahandle(syncable::BaseTransaction* trans, argument
37 syncable::Entry entry(trans, syncable::GET_BY_ID, id);
174 syncable::BaseTransaction* trans = GetTransaction()->GetWrappedTrans(); local
175 return dir->HasChildren(trans, GetEntry()->GetId());
H A Dsync_rollback_manager_base.cc162 ReadTransaction trans(FROM_HERE, &share_);
164 share_.directory->GetUnsyncedMetaHandles(trans.GetWrappedTrans(), &unsynced);
182 syncable::BaseTransaction* trans) {
188 syncable::BaseTransaction* trans,
194 syncable::BaseTransaction* trans,
232 ReadTransaction trans(FROM_HERE, GetUserShare());
234 trans.GetDirectory()->GetNodeDetailsForType(trans.GetWrappedTrans(),
264 WriteTransaction trans(FROM_HERE, &share_);
265 ReadNode root(&trans);
180 HandleTransactionEndingChangeEvent( const syncable::ImmutableWriteTransactionInfo& write_transaction_info, syncable::BaseTransaction* trans) argument
186 HandleCalculateChangesChangeEventFromSyncApi( const syncable::ImmutableWriteTransactionInfo& write_transaction_info, syncable::BaseTransaction* trans, std::vector<int64>* entries_changed) argument
192 HandleCalculateChangesChangeEventFromSyncer( const syncable::ImmutableWriteTransactionInfo& write_transaction_info, syncable::BaseTransaction* trans, std::vector<int64>* entries_changed) argument
[all...]

Completed in 670 milliseconds

12345678