OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebIDBKeyType
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebIDBTypes.h
31
enum
WebIDBKeyType
{
WebIDBKey.h
71
BLINK_EXPORT
WebIDBKeyType
keyType() const;
/external/chromium_org/content/common/indexed_db/
indexed_db_key.h
27
IndexedDBKey(blink::
WebIDBKeyType
); // must be Null or Invalid
32
blink::
WebIDBKeyType
type); // must be date or number
41
blink::
WebIDBKeyType
type() const { return type_; }
51
blink::
WebIDBKeyType
type_;
indexed_db_key.cc
13
using blink::
WebIDBKeyType
;
53
IndexedDBKey::IndexedDBKey(
WebIDBKeyType
type)
58
IndexedDBKey::IndexedDBKey(double number,
WebIDBKeyType
type)
indexed_db_param_traits.cc
21
using blink::
WebIDBKeyType
;
67
WebIDBKeyType
web_type = static_cast<
WebIDBKeyType
>(type);
/external/chromium_org/third_party/WebKit/Source/web/
WebIDBKey.cpp
198
WebIDBKeyType
WebIDBKey::keyType() const
202
return static_cast<
WebIDBKeyType
>(m_private->type());
/external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding.cc
150
using blink::
WebIDBKeyType
;
657
static
WebIDBKeyType
KeyTypeByteToKeyType(unsigned char type) {
769
static int CompareTypes(
WebIDBKeyType
a,
WebIDBKeyType
b) { return b - a; }
[
all
...]
Completed in 106 milliseconds