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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
PassRefPtr.h 1 #include <JavaScriptCore/PassRefPtr.h>
  /external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
PassRefPtr.h 1 #import <JavaScriptCore/PassRefPtr.h>
  /external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
PassRefPtr.h 1 #include <JavaScriptCore/PassRefPtr.h>
  /external/webkit/Source/WebCore/html/
HTMLAllCollection.h 35 static PassRefPtr<HTMLAllCollection> create(PassRefPtr<Node>);
39 HTMLAllCollection(PassRefPtr<Node>);
HTMLOptionsCollection.h 38 static PassRefPtr<HTMLOptionsCollection> create(PassRefPtr<HTMLSelectElement>);
40 void add(PassRefPtr<HTMLOptionElement>, ExceptionCode&);
41 void add(PassRefPtr<HTMLOptionElement>, int index, ExceptionCode&);
50 HTMLOptionsCollection(PassRefPtr<HTMLSelectElement>);
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
PassRefPtr.h 3 #include <JavaScriptCore/PassRefPtr.h>
  /external/webkit/Source/WebCore/storage/
IDBCallbacks.h 50 virtual void onError(PassRefPtr<IDBDatabaseError>) = 0;
51 virtual void onSuccess(PassRefPtr<IDBCursorBackendInterface>) = 0;
52 virtual void onSuccess(PassRefPtr<IDBDatabaseBackendInterface>) = 0;
53 virtual void onSuccess(PassRefPtr<IDBKey>) = 0;
54 virtual void onSuccess(PassRefPtr<IDBTransactionBackendInterface>) = 0;
55 virtual void onSuccess(PassRefPtr<SerializedScriptValue>) = 0;
IDBCursorBackendInterface.h 32 #include <wtf/PassRefPtr.h>
56 virtual PassRefPtr<IDBKey> key() const = 0;
57 virtual PassRefPtr<IDBKey> primaryKey() const = 0;
58 virtual PassRefPtr<SerializedScriptValue> value() const = 0;
60 virtual void update(PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBCallbacks>, ExceptionCode&) = 0;
61 virtual void continueFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks>, ExceptionCode&) = 0;
62 virtual void deleteFunction(PassRefPtr<IDBCallbacks>, ExceptionCode&) = 0;
IDBIndexBackendInterface.h 51 virtual void openCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
52 virtual void openKeyCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
53 virtual void get(PassRefPtr<IDBKey>, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
54 virtual void getKey(PassRefPtr<IDBKey>, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
IDBKeyRange.cpp 35 IDBKeyRange::IDBKeyRange(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool lowerOpen, bool upperOpen)
43 PassRefPtr<IDBKeyRange> IDBKeyRange::only(PassRefPtr<IDBKey> prpValue)
49 PassRefPtr<IDBKeyRange> IDBKeyRange::lowerBound(PassRefPtr<IDBKey> bound, bool open)
54 PassRefPtr<IDBKeyRange> IDBKeyRange::upperBound(PassRefPtr<IDBKey> bound, bool open)
59 PassRefPtr<IDBKeyRange> IDBKeyRange::bound(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool lowerOpen, bool upperOpen
    [all...]
IDBObjectStoreBackendImpl.h 45 static PassRefPtr<IDBObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement)
49 static PassRefPtr<IDBObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement)
66 virtual PassRefPtr<DOMStringList> indexNames() const;
69 virtual void get(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&);
70 virtual void put(PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBKey>, PutMode, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&);
71 virtual void deleteFunction(PassRefPtr<IDBKey> key, PassRefPtr<IDBCallbacks>, IDBTransactionBackendInterface*, ExceptionCode&)
    [all...]
IDBKeyRange.h 33 #include <wtf/PassRefPtr.h>
40 static PassRefPtr<IDBKeyRange> create(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool lowerOpen, bool upperOpen)
46 PassRefPtr<IDBKey> lower() const { return m_lower; }
47 PassRefPtr<IDBKey> upper() const { return m_upper; }
51 static PassRefPtr<IDBKeyRange> only(PassRefPtr<IDBKey> value);
52 static PassRefPtr<IDBKeyRange> lowerBound(PassRefPtr<IDBKey> bound, bool open = false)
    [all...]
  /external/webkit/Source/WebCore/css/
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)
55 ShadowValue(PassRefPtr<CSSPrimitiveValue> x,
56 PassRefPtr<CSSPrimitiveValue> y
    [all...]
  /external/webkit/Source/WebCore/fileapi/
Entry.h 38 #include <wtf/PassRefPtr.h>
54 void getMetadata(PassRefPtr<MetadataCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0);
55 void moveTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
56 void copyTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
57 void remove(PassRefPtr<VoidCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const
    [all...]
FileEntry.h 46 static PassRefPtr<FileEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
51 void createWriter(PassRefPtr<FileWriterCallback>, PassRefPtr<ErrorCallback> = 0);
52 void file(PassRefPtr<FileCallback>, PassRefPtr<ErrorCallback> = 0);
57 FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath);
DirectoryEntry.h 39 #include <wtf/PassRefPtr.h>
52 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
58 PassRefPtr<DirectoryReader> createReader();
59 void getFile(const String& path, PassRefPtr<WebKitFlags> = 0, PassRefPtr<EntryCallback> = 0, PassRefPtr<ErrorCallback> = 0);
60 void getDirectory(const String& path, PassRefPtr<WebKitFlags> = 0, PassRefPtr<EntryCallback> = 0, PassRefPtr<ErrorCallback> = 0)
    [all...]
DirectoryEntrySync.h 39 #include <wtf/PassRefPtr.h>
49 static PassRefPtr<DirectoryEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
55 PassRefPtr<DirectoryReaderSync> createReader(ExceptionCode&);
56 PassRefPtr<FileEntrySync> getFile(const String& path, PassRefPtr<WebKitFlags>, ExceptionCode&);
57 PassRefPtr<DirectoryEntrySync> getDirectory(const String& path, PassRefPtr<WebKitFlags>, ExceptionCode&);
62 DirectoryEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DOMFileSystemBase.h 39 #include <wtf/PassRefPtr.h>
59 static PassRefPtr<DOMFileSystemBase> create(ScriptExecutionContext* context, const String& name, PassOwnPtr<AsyncFileSystem> asyncFileSystem)
79 bool getMetadata(const EntryBase*, PassRefPtr<MetadataCallback>, PassRefPtr<ErrorCallback>);
80 bool move(const EntryBase* source, EntryBase* parent, const String& name, PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>);
81 bool copy(const EntryBase* source, EntryBase* parent, const String& name, PassRefPtr<EntryCallback>, PassRefPtr<ErrorCallback>);
82 bool remove(const EntryBase*, PassRefPtr<VoidCallback>, PassRefPtr<ErrorCallback>)
    [all...]
  /external/webkit/Source/WebCore/loader/archive/android/
WebArchiveAndroid.h 38 static PassRefPtr<WebArchiveAndroid> create(PassRefPtr<ArchiveResource> mainResource,
39 Vector<PassRefPtr<ArchiveResource> >& subresources,
40 Vector<PassRefPtr<Archive> >& subframeArchives);
42 static PassRefPtr<WebArchiveAndroid> create(Frame* frame);
43 static PassRefPtr<WebArchiveAndroid> create(SharedBuffer* buffer);
48 WebArchiveAndroid(PassRefPtr<ArchiveResource> mainResource,
49 Vector<PassRefPtr<ArchiveResource> >& subresources,
50 Vector<PassRefPtr<Archive> >& subframeArchives);
  /external/webkit/Source/WebCore/editing/
AppendNodeCommand.h 35 static PassRefPtr<AppendNodeCommand> create(PassRefPtr<ContainerNode> parent, PassRefPtr<Node> node)
41 AppendNodeCommand(PassRefPtr<ContainerNode> parent, PassRefPtr<Node>);
JoinTextNodesCommand.h 37 static PassRefPtr<JoinTextNodesCommand> create(PassRefPtr<Text> text1, PassRefPtr<Text> text2)
43 JoinTextNodesCommand(PassRefPtr<Text>, PassRefPtr<Text>);
  /external/webkit/Source/WebCore/page/
Console.h 38 #include <wtf/PassRefPtr.h>
84 static PassRefPtr<Console> create(Frame* frame) { return adoptRef(new Console(frame)); }
90 void addMessage(MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack);
92 void debug(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
93 void error(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
94 void info(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
95 void log(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
IDBBindingUtilities.h 40 PassRefPtr<IDBKey> createIDBKeyFromValue(v8::Handle<v8::Value>);
41 PassRefPtr<IDBKey> createIDBKeyFromSerializedValueAndKeyPath(PassRefPtr<SerializedScriptValue> value, const Vector<IDBKeyPathElement, 0>& keyPath);
42 PassRefPtr<SerializedScriptValue> injectIDBKeyIntoSerializedValue(PassRefPtr<IDBKey>, PassRefPtr<SerializedScriptValue>, const Vector<IDBKeyPathElement, 0>&);
  /external/webkit/Source/WebKit/chromium/src/
IDBCallbacksProxy.h 36 #include <wtf/PassRefPtr.h>
45 static PassRefPtr<IDBCallbacksProxy> create(PassOwnPtr<WebIDBCallbacks>);
48 virtual void onError(PassRefPtr<WebCore::IDBDatabaseError>);
49 virtual void onSuccess(PassRefPtr<WebCore::IDBCursorBackendInterface>);
50 virtual void onSuccess(PassRefPtr<WebCore::IDBDatabaseBackendInterface>);
51 virtual void onSuccess(PassRefPtr<WebCore::IDBKey>);
52 virtual void onSuccess(PassRefPtr<WebCore::IDBTransactionBackendInterface>);
53 virtual void onSuccess(PassRefPtr<WebCore::SerializedScriptValue>);
  /external/webkit/Source/WebCore/inspector/
TimelineRecordFactory.h 47 static PassRefPtr<InspectorObject> createGenericRecord(double startTime);
49 static PassRefPtr<InspectorObject> createGCEventData(const size_t usedHeapSizeDelta);
51 static PassRefPtr<InspectorObject> createFunctionCallData(const String& scriptName, int scriptLine);
53 static PassRefPtr<InspectorObject> createEventDispatchData(const Event&);
55 static PassRefPtr<InspectorObject> createGenericTimerData(int timerId);
57 static PassRefPtr<InspectorObject> createTimerInstallData(int timerId, int timeout, bool singleShot);
59 static PassRefPtr<InspectorObject> createXHRReadyStateChangeData(const String& url, int readyState);
61 static PassRefPtr<InspectorObject> createXHRLoadData(const String& url);
63 static PassRefPtr<InspectorObject> createEvaluateScriptData(const String&, double lineNumber);
65 static PassRefPtr<InspectorObject> createMarkTimelineData(const String&)
    [all...]

Completed in 213 milliseconds

1 2 3 4 5 6 7 8 91011>>