HomeSort by relevance Sort by last modified time
    Searched refs:trans (Results 101 - 125 of 432) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/sqlite/src/src/
complete.c 112 static const u8 trans[8][8] = { local
128 static const u8 trans[3][3] = { local
250 state = trans[state][token];
  /external/ceres-solver/internal/ceres/
lapack.cc 120 char trans = 'N';
125 dgels_(&trans,
159 char trans = 'N';
168 dgels_(&trans,
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_change_processor.cc 92 syncer::WriteTransaction trans(FROM_HERE, share_handle());
98 CreateOrUpdateSyncNode(*url, &trans);
104 history::URLRow url, syncer::WriteTransaction* trans) {
113 syncer::ReadNode typed_url_root(trans);
127 syncer::WriteNode update_node(trans);
134 syncer::Cryptographer* crypto = trans->GetCryptographer();
135 syncer::ModelTypeSet encrypted_types(trans->GetEncryptedTypes());
167 syncer::WriteNode create_node(trans);
185 syncer::WriteTransaction trans(FROM_HERE, share_handle());
196 if (!model_associator_->DeleteAllNodes(&trans)) {
    [all...]
  /external/chromium_org/chrome/tools/
history-viz.py 95 for trans in self.transitions:
96 all[trans] = all.get(trans, 0) + 1
99 # if trans & 0x30000000 != 0:
101 # if trans & 0x10000000:
103 # if trans & 0x20000000:
162 for src, dst, url, trans in db.Run('SELECT from_visit, id, url, transition '
170 # a bitfield. Below does "unsigned trans = static_cast<unsigned>(trans)".
171 trans = struct.unpack('I', struct.pack('i', int(trans)))[0
    [all...]
  /external/chromium_org/sync/engine/
update_applicator.cc 47 syncable::WriteTransaction* trans,
57 syncable::MutableEntry entry(trans, syncable::GET_BY_HANDLE, *i);
59 trans, &entry, cryptographer_);
conflict_resolver.cc 39 void ConflictResolver::ProcessSimpleConflict(WriteTransaction* trans,
44 MutableEntry entry(trans, syncable::GET_BY_ID, id);
197 trans->directory()->GetChildHandlesById(trans,
221 syncable::WriteTransaction* trans,
232 Entry conflicting_node(trans, syncable::GET_BY_ID, *it);
239 ProcessSimpleConflict(trans, *it, cryptographer, status, counters);
directory_commit_contribution.cc 33 syncable::ModelNeutralWriteTransaction trans(FROM_HERE, SYNCER, dir);
34 GetCommitIdsForType(&trans, type, max_entries, &metahandles);
43 syncable::ModelNeutralMutableEntry entry(&trans, GET_BY_HANDLE, *it);
49 dir->GetDataTypeContext(&trans, type, &context);
88 syncable::ModelNeutralWriteTransaction trans(FROM_HERE, SYNCER, dir_);
92 &trans,
108 syncable::Entry e(&trans, GET_BY_HANDLE, metahandles_[i]);
124 MarkDeletedChildrenSynced(dir_, &trans, &deleted_folders);
183 syncable::ModelNeutralWriteTransaction trans(FROM_HERE, SYNCER, dir_);
186 syncable::ModelNeutralMutableEntry entry(&trans, GET_BY_HANDLE, *it)
    [all...]
  /external/e2fsprogs/e2fsck/
gen_crc32table.c 62 static void output_table(uint32_t table[], int len, const char *trans)
69 printf("%s(0x%8.8xL), ", trans, table[i]);
71 printf("%s(0x%8.8xL)\n", trans, table[len - 1]);
  /external/stlport/test/unit/
transform_test.cpp 61 int trans[] = {-11, 4, -6, -6, -18, 0, 18, -14, 6, 0, -1, -59}; local
63 int trans[] = {-4, 4, -6, -6, -10, 0, 10, -6, 6, 0, -1, -77};
69 transform(n, n + count, trans, back_inserter(res), map_char);
  /ndk/tests/device/test-gnustl-full/unit/
transform_test.cpp 61 int trans[] = {-11, 4, -6, -6, -18, 0, 18, -14, 6, 0, -1, -59}; local
63 int trans[] = {-4, 4, -6, -6, -10, 0, 10, -6, 6, 0, -1, -77};
69 transform(n, n + count, trans, back_inserter(res), map_char);
  /ndk/tests/device/test-stlport/unit/
transform_test.cpp 61 int trans[] = {-11, 4, -6, -6, -18, 0, 18, -14, 6, 0, -1, -59}; local
63 int trans[] = {-4, 4, -6, -6, -10, 0, 10, -6, 6, 0, -1, -77};
69 transform(n, n + count, trans, back_inserter(res), map_char);
  /external/chromium_org/net/http/
http_network_transaction_ssl_unittest.cc 90 SSLConfig& GetServerSSLConfig(HttpNetworkTransaction* trans) {
91 return trans->server_ssl_config_;
136 scoped_ptr<HttpNetworkTransaction> trans(
142 trans->Start(GetRequestInfo("https://www.paypal.com/"),
151 SSLConfig& ssl_config = GetServerSSLConfig(trans.get());
http_network_transaction_unittest.cc 305 scoped_ptr<HttpTransaction> trans(
315 int rv = trans->Start(&request, callback.callback(), log.bound());
322 EXPECT_TRUE(trans->GetLoadTimingInfo(&out.load_timing_info));
328 const HttpResponseInfo* response = trans->GetResponseInfo();
340 rv = ReadTransaction(trans.get(), &out.response_data);
358 EXPECT_TRUE(trans->GetFullRequestHeaders(&request_headers));
370 out.totalReceivedBytes = trans->GetTotalReceivedBytes();
612 scoped_ptr<HttpTransaction> trans(
    [all...]
http_network_layer.h 47 scoped_ptr<HttpTransaction>* trans) OVERRIDE;
  /external/chromium_org/sync/test/
fake_sync_encryption_handler.cc 28 syncable::BaseTransaction* const trans) {
57 syncable::BaseTransaction* const trans) const {
64 syncable::BaseTransaction* const trans) const {
70 syncable::BaseTransaction* const trans) {
87 syncable::BaseTransaction* const trans) const {
  /external/e2fsprogs/lib/ext2fs/
gen_crc32ctable.c 75 static void output_table(uint32_t table[8][256], int len, char trans)
80 printf("static const uint32_t t%d_%ce[] = {", j, trans);
84 printf("to%ce(0x%8.8xL),", trans, table[j][i]);
88 printf("to%ce(0x%8.8xL)};\n\n", trans, table[j][len - 1]);
90 if (trans == 'l') {
  /external/eigen/lapack/
lu.cpp 46 EIGEN_LAPACK_FUNC(getrs,(char *trans, int *n, int *nrhs, RealScalar *pa, int *lda, int *ipiv, RealScalar *pb, int *ldb, int *info))
49 if(OP(*trans)==INVALID) *info = -1;
67 if(OP(*trans)==NOTR)
73 else if(OP(*trans)==TR)
79 else if(OP(*trans)==ADJ)
  /external/chromium_org/sync/internal_api/
sync_backup_manager.cc 67 syncable::BaseTransaction* trans) {
95 WriteTransaction trans(FROM_HERE, GetUserShare());
99 syncable::MutableEntry entry(trans.GetWrappedWriteTrans(),
116 WriteTransaction trans(FROM_HERE, GetUserShare());
117 ReadNode pref_root(&trans);
124 syncable::MutableEntry entry(trans.GetWrappedWriteTrans(),
138 trans.GetWrappedWriteTrans(), &entry);
sync_rollback_manager_base.cc 162 ReadTransaction trans(FROM_HERE, &share_);
164 share_.directory->GetUnsyncedMetaHandles(trans.GetWrappedTrans(), &unsynced);
182 syncable::BaseTransaction* trans) {
188 syncable::BaseTransaction* trans,
194 syncable::BaseTransaction* trans,
236 ReadTransaction trans(FROM_HERE, GetUserShare());
238 trans.GetDirectory()->GetNodeDetailsForType(trans.GetWrappedTrans(),
267 WriteTransaction trans(FROM_HERE, &share_);
268 ReadNode root(&trans);
    [all...]
sync_rollback_manager.cc 71 WriteTransaction trans(FROM_HERE, GetUserShare());
73 GetUserShare()->directory->GetUnsyncedMetaHandles(trans.GetWrappedTrans(),
76 syncable::MutableEntry e(trans.GetWrappedWriteTrans(),
111 WriteTransaction trans(FROM_HERE, GetUserShare());
113 syncable::MutableEntry e(trans.GetWrappedWriteTrans(),
125 change_delegate_->OnChangesApplied(type, 1, &trans,
  /external/oprofile/daemon/
opd_kernel.c 202 * @param trans holds PC value to look up
208 struct kernel_image * find_kernel_image(struct transient const * trans)
216 if (image->start <= trans->pc && image->end > trans->pc)
221 if (image->start <= trans->pc && image->end > trans->pc)
225 if (xen_image.start <= trans->pc && xen_image.end > trans->pc)
  /external/pixman/demos/
gradient-test.c 24 pixman_transform_t trans = {
31 pixman_transform_t trans = { local
75 pixman_image_set_transform (src_img, &trans);
  /external/bison/src/
print-xml.c 127 transitions *trans = s->transitions; local
131 for (i = 0; i < trans->num; i++)
132 if (!TRANSITION_IS_DISABLED (trans, i))
146 for (i = 0; i < trans->num; i++)
147 if (!TRANSITION_IS_DISABLED (trans, i)
148 && TRANSITION_IS_SHIFT (trans, i))
150 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
152 state *s1 = trans->states[i];
159 for (i = 0; i < trans->num; i++)
160 if (!TRANSITION_IS_DISABLED (trans, i
242 transitions *trans = s->transitions; local
    [all...]
  /external/chromium_org/chrome/browser/devtools/
devtools_network_transaction_factory.h 32 scoped_ptr<net::HttpTransaction>* trans) OVERRIDE;
  /external/chromium_org/components/sync_driver/
change_processor.h 38 const syncer::BaseTransaction* trans,

Completed in 2021 milliseconds

1 2 3 45 6 7 8 91011>>