HomeSort by relevance Sort by last modified time
    Searched refs:WebIDBCursorDirection (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBCursor.h 43 typedef WebIDBCursorDirection Direction;
44 static const WebIDBCursorDirection Next = WebIDBCursorDirectionNext;
45 static const WebIDBCursorDirection NextNoDuplicate =WebIDBCursorDirectionNextNoDuplicate;
46 static const WebIDBCursorDirection Prev = WebIDBCursorDirectionPrev;
47 static const WebIDBCursorDirection PrevNoDuplicate =WebIDBCursorDirectionPrevNoDuplicate;
48 static const WebIDBCursorDirection DirectionLast =WebIDBCursorDirectionLast;
WebIDBTypes.h 53 enum WebIDBCursorDirection {
WebIDBDatabase.h 89 virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, blink::WebIDBCursorDirection, bool keyOnly, blink::WebIDBTaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursorWithValue.cpp 35 IDBCursorWithValue* IDBCursorWithValue::create(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
40 IDBCursorWithValue::IDBCursorWithValue(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
IDBCursorWithValue.h 43 static IDBCursorWithValue* create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
53 IDBCursorWithValue(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
IDBCursor.h 60 static blink::WebIDBCursorDirection stringToDirection(const String& modeString, ExceptionState&);
63 static IDBCursor* create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
96 IDBCursor(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
104 const blink::WebIDBCursorDirection m_direction;
IDBIndex.h 72 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, blink::WebIDBCursorDirection);
IDBRequest.h 92 void setCursorDetails(IndexedDB::CursorType, blink::WebIDBCursorDirection);
157 blink::WebIDBCursorDirection m_cursorDirection;
IDBIndex.cpp 89 blink::WebIDBCursorDirection direction = IDBCursor::stringToDirection(directionString, exceptionState);
105 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, IDBKeyRange* keyRange, blink::WebIDBCursorDirection direction)
158 blink::WebIDBCursorDirection direction = IDBCursor::stringToDirection(directionString, exceptionState);
IDBCursor.cpp 51 IDBCursor* IDBCursor::create(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
80 IDBCursor::IDBCursor(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
393 blink::WebIDBCursorDirection IDBCursor::stringToDirection(const String& directionString, ExceptionState& exceptionState)
IDBObjectStore.h 94 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, blink::WebIDBCursorDirection, blink::WebIDBTaskType = blink::WebIDBTaskTypeNormal);
IDBObjectStore.cpp 555 blink::WebIDBCursorDirection direction = IDBCursor::stringToDirection(directionString, exceptionState);
571 IDBRequest* IDBObjectStore::openCursor(ScriptState* scriptState, IDBKeyRange* range, blink::WebIDBCursorDirection direction, blink::WebIDBTaskType taskType)
596 blink::WebIDBCursorDirection direction = IDBCursor::stringToDirection(directionString, exceptionState);
IDBRequest.cpp 163 void IDBRequest::setCursorDetails(IndexedDB::CursorType cursorType, blink::WebIDBCursorDirection direction)

Completed in 227 milliseconds