HomeSort by relevance Sort by last modified time
    Searched refs:ScriptState (Results 1 - 25 of 299) 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/core/v8/ScriptState.h"
52 void debug(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
53 void error(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
54 void info(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
55 void log(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
56 void clear(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
57 void warn(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
58 void dir(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
59 void dirxml(ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>);
60 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/serviceworkers/
Cache.h 24 class ScriptState;
33 ScriptPromise match(ScriptState*, Request*, const QueryParams&);
34 ScriptPromise match(ScriptState*, const String&, const QueryParams&);
35 ScriptPromise matchAll(ScriptState*, Request*, const QueryParams&);
36 ScriptPromise matchAll(ScriptState*, const String&, const QueryParams&);
37 ScriptPromise add(ScriptState*, Request*);
38 ScriptPromise add(ScriptState*, const String&);
39 ScriptPromise addAll(ScriptState*, const Vector<ScriptValue>&);
40 ScriptPromise deleteFunction(ScriptState*, Request*, const QueryParams&);
41 ScriptPromise deleteFunction(ScriptState*, const String&, const QueryParams&)
    [all...]
Body.h 20 class ScriptState;
40 ScriptPromise arrayBuffer(ScriptState*);
41 ScriptPromise blob(ScriptState*);
42 ScriptPromise formData(ScriptState*);
43 ScriptPromise json(ScriptState*);
44 ScriptPromise text(ScriptState*);
63 ScriptPromise readAsync(ScriptState*, ResponseType);
ServiceWorkerContainer.idl 37 [CallWith=ScriptState] readonly attribute Promise ready;
39 [CallWith=ScriptState, ImplementedAs=registerServiceWorker] Promise register(ScalarValueString url, optional RegistrationOptionList options);
40 [CallWith=ScriptState] Promise getRegistration(optional ScalarValueString documentURL = "");
  /external/chromium_org/third_party/WebKit/Source/modules/geofencing/
Geofencing.h 17 class ScriptState;
27 ScriptPromise registerRegion(ScriptState*, GeofencingRegion*);
28 ScriptPromise unregisterRegion(ScriptState*, const String& regionId);
29 ScriptPromise getRegisteredRegions(ScriptState*) const;
  /external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
CredentialsContainer.h 16 class ScriptState;
24 ScriptPromise request(ScriptState*, const Dictionary&);
25 ScriptPromise notifySignedIn(ScriptState*, Credential* = 0);
26 ScriptPromise notifyFailedSignIn(ScriptState*, Credential* = 0);
27 ScriptPromise notifySignedOut(ScriptState*);
  /external/chromium_org/third_party/WebKit/Source/core/streams/
UnderlyingSource.h 15 class ScriptState;
22 virtual ScriptPromise cancelSource(ScriptState*, ScriptValue reason) = 0;
  /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 40 [CallWith=ScriptState, CachedAttribute=isKeyDirty] readonly attribute any key;
41 [CallWith=ScriptState, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey;
42 [CallWith=ScriptState] readonly attribute any source;
44 [CallWith=ScriptState, RaisesException] IDBRequest update(any value);
46 [CallWith=ScriptState, ImplementedAs=continueFunction, RaisesException] void continue([Default=Undefined] optional any key);
47 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] void continuePrimaryKey(any key, any primaryKey);
48 [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 41 [CallWith=ScriptState] readonly attribute any keyPath;
45 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
46 [CallWith=ScriptState, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
48 [CallWith=ScriptState, RaisesException] IDBRequest get(any key);
49 [CallWith=ScriptState, RaisesException] IDBRequest getKey(any key);
50 [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIInputMap.h 14 class ScriptState;
21 ScriptValue getForBinding(ScriptState*, const String& id);
MIDIOutputMap.h 14 class ScriptState;
21 ScriptValue getForBinding(ScriptState*, const String& id);
  /external/chromium_org/third_party/WebKit/Source/core/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);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Iterator.h 22 virtual ScriptValue next(ScriptState*, ExceptionState&) = 0;
23 virtual ScriptValue next(ScriptState*, ScriptValue /* value */, ExceptionState&) = 0;
24 Iterator* iterator(ScriptState*, ExceptionState&) { return this; }
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.idl 38 [CallWith=ScriptState] readonly attribute Promise closed;
41 [CallWith=ScriptState] Promise generateRequest(DOMString initDataType, ArrayBuffer initData);
42 [CallWith=ScriptState] Promise generateRequest(DOMString initDataType, ArrayBufferView initData);
45 [CallWith=ScriptState] Promise update(ArrayBuffer response);
46 [CallWith=ScriptState] Promise update(ArrayBufferView response);
47 [CallWith=ScriptState] Promise release();
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptState.cpp 6 #include "bindings/core/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...]
PrivateScriptRunner.h 15 class ScriptState;
20 static v8::Handle<v8::Value> runDOMAttributeGetter(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* attributeName, v8::Handle<v8::Value> holder);
21 static bool runDOMAttributeSetter(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* attributeName, v8::Handle<v8::Value> holder, v8::Handle<v8::Value> v8Value);
22 static v8::Handle<v8::Value> runDOMMethod(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* methodName, v8::Handle<v8::Value> holder, int argc, v8::Handle<v8::Value> argv[]);
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...]
ScriptFunction.h 46 // static v8::Handle<v8::Function> createFunction(ScriptState* scriptState)
48 // DerivedFunction* self = new DerivedFunction(scriptState);
55 ScriptState* scriptState() const { return m_scriptState.get(); }
59 explicit ScriptFunction(ScriptState* scriptState)
60 : m_scriptState(scriptState)
70 RefPtr<ScriptState> m_scriptState;
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.h 53 ScriptPromise encrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
54 ScriptPromise decrypt(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
55 ScriptPromise sign(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece&);
57 ScriptPromise verifySignature(ScriptState*, const Dictionary&, CryptoKey*, 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&, CryptoKey*);
65 ScriptPromise wrapKey(ScriptState*, const String&, CryptoKey*, CryptoKey*, const Dictionary&)
    [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...]

Completed in 979 milliseconds

1 2 3 4 5 6 7 8 91011>>