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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElementCallbackScheduler.h 34 #include "wtf/PassRefPtr.h"
44 static void scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
45 static void scheduleCreatedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
46 static void scheduleEnteredDocumentCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
47 static void scheduleLeftDocumentCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
MutationRecord.h 35 #include "wtf/PassRefPtr.h"
47 static PassRefPtr<MutationRecord> createChildList(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling);
48 static PassRefPtr<MutationRecord> createAttributes(PassRefPtr<Node> target, const QualifiedName&, const AtomicString& oldValue);
49 static PassRefPtr<MutationRecord> createCharacterData(PassRefPtr<Node> target, const String& oldValue)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBorderImage.h 25 #include "wtf/PassRefPtr.h"
29 PassRefPtr<CSSValueList> createBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<CSSValue> imageSlice, PassRefPtr<CSSValue> borderSlice,
30 PassRefPtr<CSSValue> outset, PassRefPtr<CSSValue> repeat);
ShadowValue.h 25 #include "wtf/PassRefPtr.h"
35 static PassRefPtr<ShadowValue> create(PassRefPtr<CSSPrimitiveValue> x,
36 PassRefPtr<CSSPrimitiveValue> y,
37 PassRefPtr<CSSPrimitiveValue> blur,
38 PassRefPtr<CSSPrimitiveValue> spread,
39 PassRefPtr<CSSPrimitiveValue> style,
40 PassRefPtr<CSSPrimitiveValue> color)
57 ShadowValue(PassRefPtr<CSSPrimitiveValue> x,
58 PassRefPtr<CSSPrimitiveValue> y
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DirectoryEntry.h 36 #include "wtf/PassRefPtr.h"
50 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
56 PassRefPtr<DirectoryReader> createReader();
57 void getFile(const String& path, const Dictionary&, PassRefPtr<EntryCallback> = 0, PassRefPtr<ErrorCallback> = 0);
58 void getDirectory(const String& path, const Dictionary&, PassRefPtr<EntryCallback> = 0, PassRefPtr<ErrorCallback> = 0);
59 void removeRecursively(PassRefPtr<VoidCallback> successCallback = 0, PassRefPtr<ErrorCallback> = 0) const
    [all...]
FileEntry.h 44 static PassRefPtr<FileEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
49 void createWriter(PassRefPtr<FileWriterCallback>, PassRefPtr<ErrorCallback> = 0);
50 void file(PassRefPtr<FileCallback>, PassRefPtr<ErrorCallback> = 0);
55 FileEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
Entry.h 37 #include "wtf/PassRefPtr.h"
53 void getMetadata(PassRefPtr<MetadataCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0);
54 void moveTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
55 void copyTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
56 void remove(PassRefPtr<VoidCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const
    [all...]
EntrySync.h 38 #include "wtf/PassRefPtr.h"
49 static PassRefPtr<EntrySync> create(EntryBase*);
53 PassRefPtr<Metadata> getMetadata(ExceptionState&);
54 PassRefPtr<EntrySync> moveTo(PassRefPtr<DirectoryEntrySync> parent, const String& name, ExceptionState&) const;
55 PassRefPtr<EntrySync> copyTo(PassRefPtr<DirectoryEntrySync> parent, const String& name, ExceptionState&) const;
57 PassRefPtr<EntrySync> getParent() const;
60 EntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DOMWindowFileSystem.h 29 #include "wtf/PassRefPtr.h"
41 static void webkitRequestFileSystem(DOMWindow*, int type, long long size, PassRefPtr<FileSystemCallback>, PassRefPtr<ErrorCallback>);
42 static void webkitResolveLocalFileSystemURL(DOMWindow*, const String&, PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCallbacks.h 48 virtual void onError(PassRefPtr<DOMError>) = 0;
52 virtual void onSuccess(PassRefPtr<IDBCursorBackendInterface>, PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer>) = 0;
54 virtual void onSuccess(PassRefPtr<IDBKey>) = 0;
56 virtual void onSuccess(PassRefPtr<SharedBuffer>) = 0;
58 virtual void onSuccess(PassRefPtr<SharedBuffer>, PassRefPtr<IDBKey>, const IDBKeyPath&) = 0;
66 virtual void onSuccess(PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer>) = 0
    [all...]
IDBRequest.h 52 static PassRefPtr<IDBRequest> create(ScriptExecutionContext*, PassRefPtr<IDBAny> source, IDBTransaction*);
53 static PassRefPtr<IDBRequest> create(ScriptExecutionContext*, PassRefPtr<IDBAny> source, IDBDatabaseBackendInterface::TaskType, IDBTransaction*);
56 PassRefPtr<IDBAny> result(ExceptionState&) const;
57 PassRefPtr<DOMError> error(ExceptionState&) const;
58 PassRefPtr<IDBAny> source() const;
59 PassRefPtr<IDBTransaction> transaction() const;
76 void setPendingCursor(PassRefPtr<IDBCursor>);
81 virtual void onError(PassRefPtr<DOMError>)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisVoice.cpp 31 PassRefPtr<SpeechSynthesisVoice> SpeechSynthesisVoice::create(PassRefPtr<PlatformSpeechSynthesisVoice> voice)
36 SpeechSynthesisVoice::SpeechSynthesisVoice(PassRefPtr<PlatformSpeechSynthesisVoice> voice)
  /external/chromium_org/third_party/WebKit/Source/core/page/
Console.h 36 #include "wtf/PassRefPtr.h"
48 static PassRefPtr<Console> create(Frame* frame) { return adoptRef(new Console(frame)); }
51 void debug(ScriptState*, PassRefPtr<ScriptArguments>);
52 void error(ScriptState*, PassRefPtr<ScriptArguments>);
53 void info(ScriptState*, PassRefPtr<ScriptArguments>);
54 void log(ScriptState*, PassRefPtr<ScriptArguments>);
55 void clear(ScriptState*, PassRefPtr<ScriptArguments>);
56 void warn(ScriptState*, PassRefPtr<ScriptArguments>);
57 void dir(ScriptState*, PassRefPtr<ScriptArguments>);
58 void dirxml(ScriptState*, PassRefPtr<ScriptArguments>)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
AbstractSQLStatementBackend.h 39 virtual PassRefPtr<SQLError> sqlError() const = 0;
40 virtual PassRefPtr<SQLResultSet> sqlResultSet() const = 0;
Database.h 57 void changeVersion(const String& oldVersion, const String& newVersion, PassRefPtr<SQLTransactionCallback>,
58 PassRefPtr<SQLTransactionErrorCallback>, PassRefPtr<VoidCallback> successCallback);
59 void transaction(PassRefPtr<SQLTransactionCallback>, PassRefPtr<SQLTransactionErrorCallback>, PassRefPtr<VoidCallback> successCallback);
60 void readTransaction(PassRefPtr<SQLTransactionCallback>, PassRefPtr<SQLTransactionErrorCallback>, PassRefPtr<VoidCallback> successCallback);
78 Database(PassRefPtr<DatabaseBackendContext>, const String& name
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
SharedGraphicsContext3D.h 42 static PassRefPtr<GraphicsContext3D> get();
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/chromium/
IDBFactoryBackendInterfaceChromium.h 35 typedef PassRefPtr<IDBFactoryBackendInterface> IDBFactoryBackendInterfaceCreate();
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCIceCandidateEvent.h 38 static PassRefPtr<RTCIceCandidateEvent> create();
39 static PassRefPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate>);
47 RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate>);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OfflineAudioCompletionEvent.h 30 #include "wtf/PassRefPtr.h"
39 static PassRefPtr<OfflineAudioCompletionEvent> create();
40 static PassRefPtr<OfflineAudioCompletionEvent> create(PassRefPtr<AudioBuffer> renderedBuffer);
50 explicit OfflineAudioCompletionEvent(PassRefPtr<AudioBuffer> renderedBuffer);
  /external/chromium_org/third_party/WebKit/Source/web/
IDBCursorBackendProxy.h 32 #include "wtf/PassRefPtr.h"
40 static PassRefPtr<WebCore::IDBCursorBackendInterface> create(PassOwnPtr<WebIDBCursor>);
43 virtual void advance(unsigned long, PassRefPtr<WebCore::IDBCallbacks>);
44 virtual void continueFunction(PassRefPtr<WebCore::IDBKey>, PassRefPtr<WebCore::IDBCallbacks>);
  /external/chromium_org/third_party/WebKit/Source/wtf/
Int16Array.h 37 static inline PassRefPtr<Int16Array> create(unsigned length);
38 static inline PassRefPtr<Int16Array> create(const short* array, unsigned length);
39 static inline PassRefPtr<Int16Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
43 static inline PassRefPtr<Int16Array> createUninitialized(unsigned length);
48 inline PassRefPtr<Int16Array> subarray(int start) const;
49 inline PassRefPtr<Int16Array> subarray(int start, int end) const;
57 inline Int16Array(PassRefPtr<ArrayBuffer>,
64 PassRefPtr<Int16Array> Int16Array::create(unsigned length)
69 PassRefPtr<Int16Array> Int16Array::create(const short* array, unsigned length
    [all...]
Int32Array.h 36 static inline PassRefPtr<Int32Array> create(unsigned length);
37 static inline PassRefPtr<Int32Array> create(const int* array, unsigned length);
38 static inline PassRefPtr<Int32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
42 static inline PassRefPtr<Int32Array> createUninitialized(unsigned length);
47 inline PassRefPtr<Int32Array> subarray(int start) const;
48 inline PassRefPtr<Int32Array> subarray(int start, int end) const;
56 inline Int32Array(PassRefPtr<ArrayBuffer>,
63 PassRefPtr<Int32Array> Int32Array::create(unsigned length)
68 PassRefPtr<Int32Array> Int32Array::create(const int* array, unsigned length
    [all...]
Int8Array.h 38 static inline PassRefPtr<Int8Array> create(unsigned length);
39 static inline PassRefPtr<Int8Array> create(const signed char* array, unsigned length);
40 static inline PassRefPtr<Int8Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Int8Array> createUninitialized(unsigned length);
49 inline PassRefPtr<Int8Array> subarray(int start) const;
50 inline PassRefPtr<Int8Array> subarray(int start, int end) const;
58 inline Int8Array(PassRefPtr<ArrayBuffer>,
65 PassRefPtr<Int8Array> Int8Array::create(unsigned length)
70 PassRefPtr<Int8Array> Int8Array::create(const signed char* array, unsigned length
    [all...]
Uint16Array.h 38 static inline PassRefPtr<Uint16Array> create(unsigned length);
39 static inline PassRefPtr<Uint16Array> create(const unsigned short* array, unsigned length);
40 static inline PassRefPtr<Uint16Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Uint16Array> createUninitialized(unsigned length);
49 inline PassRefPtr<Uint16Array> subarray(int start) const;
50 inline PassRefPtr<Uint16Array> subarray(int start, int end) const;
58 inline Uint16Array(PassRefPtr<ArrayBuffer>,
65 PassRefPtr<Uint16Array> Uint16Array::create(unsigned length)
70 PassRefPtr<Uint16Array> Uint16Array::create(const unsigned short* array, unsigned length
    [all...]
Uint32Array.h 38 static inline PassRefPtr<Uint32Array> create(unsigned length);
39 static inline PassRefPtr<Uint32Array> create(const unsigned int* array, unsigned length);
40 static inline PassRefPtr<Uint32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Uint32Array> createUninitialized(unsigned length);
49 inline PassRefPtr<Uint32Array> subarray(int start) const;
50 inline PassRefPtr<Uint32Array> subarray(int start, int end) const;
58 inline Uint32Array(PassRefPtr<ArrayBuffer>,
65 PassRefPtr<Uint32Array> Uint32Array::create(unsigned length)
70 PassRefPtr<Uint32Array> Uint32Array::create(const unsigned int* array, unsigned length
    [all...]

Completed in 991 milliseconds

1 2 3 4 5 6 7 8 91011>>