Searched defs:key_range (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_key_builders.cc93 const WebIDBKeyRange& key_range) {
95 IndexedDBKeyBuilder::Build(key_range.lower()),
96 IndexedDBKeyBuilder::Build(key_range.upper()),
97 key_range.lowerOpen(),
98 key_range.upperOpen());
92 Build( const WebIDBKeyRange& key_range) argument
H A Dproxy_webidbdatabase_impl.cc101 const WebIDBKeyRange& key_range,
111 IndexedDBKeyRangeBuilder::Build(key_range),
178 const WebIDBKeyRange& key_range,
190 IndexedDBKeyRangeBuilder::Build(key_range),
201 const WebIDBKeyRange& key_range,
210 IndexedDBKeyRangeBuilder::Build(key_range),
217 const WebIDBKeyRange& key_range,
225 IndexedDBKeyRangeBuilder::Build(key_range),
97 get( long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, bool key_only, WebIDBCallbacks* callbacks) argument
174 openCursor( long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, unsigned short direction, bool key_only, TaskType task_type, WebIDBCallbacks* callbacks) argument
197 count( long long transaction_id, long long object_store_id, long long index_id, const WebIDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
214 deleteRange( long long transaction_id, long long object_store_id, const WebIDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
H A Dindexed_db_dispatcher.cc306 const IndexedDBKeyRange& key_range,
316 params.key_range = key_range;
375 const IndexedDBKeyRange& key_range,
387 params.key_range = key_range;
399 const IndexedDBKeyRange& key_range,
408 params.key_range = key_range;
416 const IndexedDBKeyRange& key_range,
301 RequestIDBDatabaseGet( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, bool key_only, WebIDBCallbacks* callbacks) argument
370 RequestIDBDatabaseOpenCursor( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, unsigned short direction, bool key_only, WebIDBDatabase::TaskType task_type, WebIDBCallbacks* callbacks) argument
394 RequestIDBDatabaseCount( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
412 RequestIDBDatabaseDeleteRange( int32 ipc_database_id, int64 transaction_id, int64 object_store_id, const IndexedDBKeyRange& key_range, WebIDBCallbacks* callbacks) argument
[all...]
/external/chromium_org/net/base/
H A Durl_util.cc38 url_parse::Component key_range, value_range; local
40 input.data(), &cursor, &key_range, &value_range)) {
42 input.data() + key_range.begin, key_range.len);
52 key_range.begin,
53 value_range.end() - key_range.begin);
/external/qemu/
H A Dkeymaps.h35 struct key_range { struct
38 struct key_range *next;
50 struct key_range *keypad_range;
51 struct key_range *numlock_range;
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_fake_backing_store.cc121 const IndexedDBKeyRange& key_range,
130 const IndexedDBKeyRange& key_range,
140 const IndexedDBKeyRange& key_range,
150 const IndexedDBKeyRange& key_range,
117 OpenObjectStoreKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& key_range, indexed_db::CursorDirection) argument
126 OpenObjectStoreCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, const IndexedDBKeyRange& key_range, indexed_db::CursorDirection) argument
135 OpenIndexKeyCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, indexed_db::CursorDirection) argument
145 OpenIndexCursor( IndexedDBBackingStore::Transaction* transaction, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyRange& key_range, indexed_db::CursorDirection) argument
H A Dindexed_db_database.cc200 scoped_ptr<IndexedDBKeyRange> key_range,
209 key_range_(key_range.Pass()),
277 scoped_ptr<IndexedDBKeyRange> key_range,
286 key_range_(key_range.Pass()),
311 scoped_ptr<IndexedDBKeyRange> key_range,
317 key_range_(key_range.Pass()),
335 scoped_ptr<IndexedDBKeyRange> key_range,
340 key_range_(key_range.Pass()),
814 scoped_ptr<IndexedDBKeyRange> key_range,
834 key_range
194 GetOperation(scoped_refptr<IndexedDBBackingStore> backing_store, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKeyPath& key_path, const bool auto_increment, scoped_ptr<IndexedDBKeyRange> key_range, indexed_db::CursorType cursor_type, scoped_refptr<IndexedDBCallbacks> callbacks) argument
273 OpenCursorOperation(scoped_refptr<IndexedDBBackingStore> backing_store, int64 database_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, indexed_db::CursorDirection direction, indexed_db::CursorType cursor_type, IndexedDBDatabase::TaskType task_type, scoped_refptr<IndexedDBCallbacks> callbacks) argument
307 CountOperation(scoped_refptr<IndexedDBBackingStore> backing_store, int64 database_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks) argument
332 DeleteRangeOperation(scoped_refptr<IndexedDBBackingStore> backing_store, int64 database_id, int64 object_store_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks) argument
811 Get(int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, bool key_only, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1253 OpenCursor( int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, indexed_db::CursorDirection direction, bool key_only, TaskType task_type, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1333 Count(int64 transaction_id, int64 object_store_id, int64 index_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks) argument
1387 DeleteRange( int64 transaction_id, int64 object_store_id, scoped_ptr<IndexedDBKeyRange> key_range, scoped_refptr<IndexedDBCallbacks> callbacks) argument
[all...]

Completed in 141 milliseconds