OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:idbKey
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
IDBBindingUtilitiesTest.cpp
31
#include "modules/indexeddb/
IDBKey
.h"
39
IDBKey
* checkKeyFromValueAndKeyPathInternal(v8::Isolate* isolate, const ScriptValue& value, const String& keyPath)
52
bool injectKey(ScriptState* scriptState,
IDBKey
* key, ScriptValue& value, const String& keyPath)
60
void checkInjection(ScriptState* scriptState,
IDBKey
* key, ScriptValue& value, const String& keyPath)
64
IDBKey
* extractedKey = checkKeyFromValueAndKeyPathInternal(scriptState->isolate(), value, keyPath);
68
void checkInjectionFails(ScriptState* scriptState,
IDBKey
* key, ScriptValue& value, const String& keyPath)
75
IDBKey
*
idbKey
= checkKeyFromValueAndKeyPathInternal(isolate, value, keyPath);
76
ASSERT_TRUE(
idbKey
);
77
ASSERT_EQ(
IDBKey
::StringType, idbKey->type())
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.h
37
class
IDBKey
: public GarbageCollectedFinalized<
IDBKey
> {
39
typedef HeapVector<Member<
IDBKey
> > KeyArray;
41
static
IDBKey
* createInvalid()
43
return new
IDBKey
();
46
static
IDBKey
* createNumber(double number)
48
return new
IDBKey
(NumberType, number);
51
static
IDBKey
* createBinary(PassRefPtr<SharedBuffer> binary)
53
return new
IDBKey
(binary);
56
static
IDBKey
* createString(const String& string
[
all
...]
InspectorIndexedDBAgent.cpp
53
#include "modules/indexeddb/
IDBKey
.h"
316
static
IDBKey
* idbKeyFromInspectorObject(JSONObject* key)
318
IDBKey
*
idbKey
;
333
idbKey
=
IDBKey
::createNumber(number);
338
idbKey
=
IDBKey
::createString(string);
343
idbKey
=
IDBKey
::createDate(date)
[
all
...]
Completed in 30 milliseconds