HomeSort by relevance Sort by last modified time
    Searched refs:ScriptState (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/WebKit/Source/core/frame/
ConsoleBase.h 33 #include "bindings/v8/ScriptState.h"
50 void debug(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
51 void error(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
52 void info(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
53 void log(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
54 void clear(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
55 void warn(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
56 void dir(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
57 void dirxml(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
58 void table(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>)
    [all...]
ConsoleBase.idl 34 [CallWith=ScriptArguments&ScriptState] void debug();
35 [CallWith=ScriptArguments&ScriptState] void error();
36 [CallWith=ScriptArguments&ScriptState] void info();
37 [CallWith=ScriptArguments&ScriptState] void log();
38 [CallWith=ScriptArguments&ScriptState] void warn();
39 [CallWith=ScriptArguments&ScriptState] void dir();
40 [CallWith=ScriptArguments&ScriptState] void dirxml();
41 [CallWith=ScriptArguments&ScriptState] void table();
42 [CallWith=ScriptArguments&ScriptState] void trace();
43 [CallWith=ScriptArguments&ScriptState, ImplementedAs=assertCondition] void assert([Default=Undefined] optional boolean condition)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursorWithValue.idl 28 [CallWith=ScriptState, CachedAttribute=isValueDirty] readonly attribute any value;
IDBFactory.idl 29 [CallWith=ScriptState, ImplementedAs=getDatabaseNames, RaisesException] IDBRequest webkitGetDatabaseNames();
31 [CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version);
32 [CallWith=ScriptState, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name);
34 [CallWith=ScriptState, RaisesException] short cmp(any first, any second);
IDBCursor.idl 31 [CallWith=ScriptState, CachedAttribute=isKeyDirty] readonly attribute any key;
32 [CallWith=ScriptState, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey;
33 [CallWith=ScriptState] readonly attribute any source;
35 [CallWith=ScriptState, RaisesException] IDBRequest update(any value);
37 [CallWith=ScriptState, ImplementedAs=continueFunction, RaisesException] void continue([Default=Undefined] optional any key);
38 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] void continuePrimaryKey(any key, any primaryKey);
39 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete();
IDBFactory.h 53 IDBRequest* getDatabaseNames(ScriptState*, ExceptionState&);
55 IDBOpenDBRequest* open(ScriptState*, const String& name, ExceptionState&);
56 IDBOpenDBRequest* open(ScriptState*, const String& name, unsigned long long version, ExceptionState&);
57 IDBOpenDBRequest* deleteDatabase(ScriptState*, const String& name, ExceptionState&);
59 short cmp(ScriptState*, const ScriptValue& first, const ScriptValue& second, ExceptionState&);
64 IDBOpenDBRequest* openInternal(ScriptState*, const String& name, int64_t version, ExceptionState&);
IDBIndex.idl 31 [CallWith=ScriptState] readonly attribute any keyPath;
35 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = null);
36 [CallWith=ScriptState, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional DOMString direction = null);
38 [CallWith=ScriptState, RaisesException] IDBRequest get(any key);
39 [CallWith=ScriptState, RaisesException] IDBRequest getKey(any key);
40 [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
IDBObjectStore.idl 32 [CallWith=ScriptState] readonly attribute any keyPath;
37 [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [Default=Undefined] optional any key);
38 [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [Default=Undefined] optional any key);
39 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key);
40 [CallWith=ScriptState, RaisesException] IDBRequest get(any key);
41 [CallWith=ScriptState, RaisesException] IDBRequest clear();
42 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = null);
43 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional DOMString direction = null);
45 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional Dictionary options);
46 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional Dicti (…)
    [all...]
IDBIndex.h 58 ScriptValue keyPath(ScriptState*) const;
62 IDBRequest* openCursor(ScriptState*, const ScriptValue& key, const String& direction, ExceptionState&);
63 IDBRequest* openKeyCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&);
64 IDBRequest* count(ScriptState*, const ScriptValue& range, ExceptionState&);
65 IDBRequest* get(ScriptState*, const ScriptValue& key, ExceptionState&);
66 IDBRequest* getKey(ScriptState*, const ScriptValue& key, ExceptionState&);
72 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, blink::WebIDBCursorDirection);
79 IDBRequest* getInternal(ScriptState*, const ScriptValue& key, ExceptionState&, bool keyOnly);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerClients.h 16 class ScriptState;
25 ScriptPromise getServiced(ScriptState*);
FetchManager.h 15 class ScriptState;
22 ScriptPromise fetch(ScriptState*, PassOwnPtr<ResourceRequest>);
  /external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
WindowImageBitmapFactories.idl 36 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLImageElement image);
37 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLImageElement image, long sx, long sy, long sw, long sh);
38 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLVideoElement video);
39 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLVideoElement video, long sx, long sy, long sw, long sh);
40 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(CanvasRenderingContext2D context);
41 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(CanvasRenderingContext2D context, long sx, long sy, long sw, long sh);
42 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLCanvasElement canvas);
43 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLCanvasElement canvas, long sx, long sy, long sw, long sh);
ImageBitmapFactories.idl 51 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(Blob blob);
52 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(Blob blob, long sx, long sy, long sw, long sh);
53 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(ImageData data);
54 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(ImageData data, long sx, long sy, long sw, long sh);
55 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(ImageBitmap bitmap);
56 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(ImageBitmap bitmap, long sx, long sy, long sw, long sh);
ImageBitmapFactories.h 36 #include "bindings/v8/ScriptState.h"
61 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLImageElement*, ExceptionState&);
62 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLImageElement*, int sx, int sy, int sw, int sh, ExceptionState&);
63 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLVideoElement*, ExceptionState&);
64 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLVideoElement*, int sx, int sy, int sw, int sh, ExceptionState&);
65 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, CanvasRenderingContext2D*, ExceptionState&);
66 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, CanvasRenderingContext2D*, int sx, int sy, int sw, int sh, ExceptionState&);
67 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLCanvasElement*, ExceptionState&);
68 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLCanvasElement*, int sx, int sy, int sw, int sh, ExceptionState&);
69 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, Blob*, ExceptionState&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.h 53 ScriptPromise encrypt(ScriptState*, const Dictionary&, Key*, const ArrayPiece&);
54 ScriptPromise decrypt(ScriptState*, const Dictionary&, Key*, const ArrayPiece&);
55 ScriptPromise sign(ScriptState*, const Dictionary&, Key*, const ArrayPiece&);
57 ScriptPromise verifySignature(ScriptState*, const Dictionary&, Key*, const ArrayPiece& signature, const ArrayPiece& data);
58 ScriptPromise digest(ScriptState*, const Dictionary&, const ArrayPiece& data);
60 ScriptPromise generateKey(ScriptState*, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
61 ScriptPromise importKey(ScriptState*, const String&, const ArrayPiece&, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
62 ScriptPromise importKey(ScriptState*, const String&, const Dictionary&, const Dictionary&, bool extractable, const Vector<String>& keyUsages);
63 ScriptPromise exportKey(ScriptState*, const String&, Key*);
65 ScriptPromise wrapKey(ScriptState*, const String&, Key*, Key*, const Dictionary&)
    [all...]
SubtleCrypto.idl 43 [CallWith=ScriptState] Promise encrypt(Dictionary algorithm, Key key, ArrayBuffer data);
44 [CallWith=ScriptState] Promise encrypt(Dictionary algorithm, Key key, ArrayBufferView data);
46 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, Key key, ArrayBuffer data);
47 [CallWith=ScriptState] Promise decrypt(Dictionary algorithm, Key key, ArrayBufferView data);
49 [CallWith=ScriptState] Promise sign(Dictionary algorithm, Key key, ArrayBuffer data);
50 [CallWith=ScriptState] Promise sign(Dictionary algorithm, Key key, ArrayBufferView data);
53 [CallWith=ScriptState, Custom, ImplementedAs=verifySignature] Promise verify(Dictionary algorithm, Key key, object signature, object data);
55 [CallWith=ScriptState] Promise digest(Dictionary algorithm, ArrayBuffer data);
56 [CallWith=ScriptState] Promise digest(Dictionary algorithm, ArrayBufferView data);
58 [CallWith=ScriptState] Promise generateKey(Dictionary algorithm, boolean extractable, DOMString[] keyUsages)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptState.cpp 6 #include "bindings/v8/ScriptState.h"
14 PassRefPtr<ScriptState> ScriptState::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
16 RefPtr<ScriptState> scriptState = adoptRef(new ScriptState(context, world));
17 // This ref() is for keeping this ScriptState alive as long as the v8::Context is alive.
19 scriptState->ref();
20 return scriptState;
23 static void weakCallback(const v8::WeakCallbackData<v8::Context, ScriptState>& data
    [all...]
ScriptState.h 21 // ScriptState is created when v8::Context is created.
22 // ScriptState is destroyed when v8::Context is garbage-collected and
23 // all V8 proxy objects that have references to the ScriptState are destructed.
24 class ScriptState : public RefCounted<ScriptState> {
25 WTF_MAKE_NONCOPYABLE(ScriptState);
29 // You need to make sure that scriptState->context() is not empty before creating a Scope.
30 explicit Scope(ScriptState* scriptState)
31 : m_handleScope(scriptState->isolate()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/v8/
WebCoreTestSupport.cpp 42 ScriptState* scriptState = ScriptState::from(context);
43 ScriptState::Scope scope(scriptState);
44 v8::Handle<v8::Object> global = scriptState->context()->Global();
45 ExecutionContext* executionContext = scriptState->executionContext();
47 global->Set(v8::String::NewFromUtf8(scriptState->isolate(), Internals::internalsId), toV8(Internals::create(toDocument(executionContext)), global, scriptState->isolate()));
56 ScriptState* scriptState = ScriptState::from(context)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryListListener.h 23 #include "bindings/v8/ScriptState.h"
36 static PassRefPtrWillBeRawPtr<MediaQueryListListener> create(ScriptState* scriptState, const ScriptValue& value)
40 return adoptRefWillBeNoop(new MediaQueryListListener(scriptState, value));
49 MediaQueryListListener(ScriptState*, const ScriptValue&);
51 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptModule.h 34 #include "bindings/v8/ScriptState.h"
52 void ensureInjected(InjectedScriptManager*, ScriptState*);
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuota.idl 42 [CallWith=ScriptState] Promise queryInfo(StorageType type);
43 [CallWith=ScriptState] Promise requestPersistentQuota([Clamp] unsigned long long newQuota);
StorageQuota.h 52 ScriptPromise queryInfo(ScriptState*, String type);
53 ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuota);
  /external/chromium_org/third_party/WebKit/Source/modules/battery/
NavigatorBattery.h 25 static ScriptPromise getBattery(ScriptState*, Navigator&);
26 ScriptPromise getBattery(ScriptState*);
  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushManager.h 16 class ScriptState;
26 ScriptPromise registerPushMessaging(ScriptState*, const String& senderId);

Completed in 324 milliseconds

1 2 3 4 5 6 7 8 91011