open               83 Source/bindings/v8/custom/V8HTMLDocumentCustom.cpp     htmlDocument->open(callingDOMWindow(info.GetIsolate())->document());
open              386 Source/bindings/v8/custom/V8WindowCustom.cpp     RefPtrWillBeRawPtr<DOMWindow> openedWindow = impl->open(urlString, frameName, windowFeaturesString, callingDOMWindow(info.GetIsolate()), enteredDOMWindow(info.GetIsolate()));
open              187 Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp                 xmlHttpRequest->open(method, url, async, user, password, exceptionState);
open              189 Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp                 xmlHttpRequest->open(method, url, async, user, exceptionState);
open              192 Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp             xmlHttpRequest->open(method, url, async, exceptionState);
open              195 Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp         xmlHttpRequest->open(method, url, exceptionState);
open              343 Source/core/dom/DOMImplementation.cpp     d->open();
open             1176 Source/core/dom/Document.cpp     open();
open             2666 Source/core/dom/Document.cpp         open(ownerDocument);
open              522 Source/core/dom/Document.h     void open(Document* ownerDocument = 0);
open              155 Source/core/frame/DOMWindow.h         PassRefPtrWillBeRawPtr<DOMWindow> open(const String& urlString, const AtomicString& frameName, const String& windowFeaturesString,
open               82 Source/core/html/track/TextTrack.cpp     DEFINE_STATIC_LOCAL(const AtomicString, open, ("disabled", AtomicString::ConstructFromLiteral));
open               83 Source/core/html/track/TextTrack.cpp     return open;
open              686 Source/core/inspector/InspectorResourceAgent.cpp     xhr->open(xhrReplayData->method(), xhrReplayData->url(), xhrReplayData->async(), IGNORE_EXCEPTION);
open              257 Source/core/page/EventSource.cpp         dispatchEvent(Event::create(EventTypeNames::open));
open               73 Source/core/page/EventSource.h     DEFINE_ATTRIBUTE_EVENT_LISTENER(open);
open               27 Source/core/rendering/style/QuotesData.cpp PassRefPtr<QuotesData> QuotesData::create(String open, String close)
open               30 Source/core/rendering/style/QuotesData.cpp     data->addPair(std::make_pair(open, close));
open               35 Source/core/rendering/style/QuotesData.h     static PassRefPtr<QuotesData> create(const String open, const String close);
open             1567 Source/core/testing/Internals.cpp     m_frontendWindow = window->open(url, "", "", window, window);
open              515 Source/core/xml/XMLHttpRequest.cpp     open(method, url, true, exceptionState);
open              593 Source/core/xml/XMLHttpRequest.cpp     open(method, urlWithCredentials, async, exceptionState);
open              602 Source/core/xml/XMLHttpRequest.cpp     open(method, urlWithCredentials, async, exceptionState);
open              101 Source/core/xml/XMLHttpRequest.h     void open(const AtomicString& method, const KURL&, ExceptionState&);
open              102 Source/core/xml/XMLHttpRequest.h     void open(const AtomicString& method, const KURL&, bool async, ExceptionState&);
open              103 Source/core/xml/XMLHttpRequest.h     void open(const AtomicString& method, const KURL&, bool async, const String& user, ExceptionState&);
open              104 Source/core/xml/XMLHttpRequest.h     void open(const AtomicString& method, const KURL&, bool async, const String& user, const String& password, ExceptionState&);
open              130 Source/modules/indexeddb/IDBFactory.cpp     blink::Platform::current()->idbFactory()->open(name, version, transactionId, WebIDBCallbacksImpl::create(request).leakPtr(), WebIDBDatabaseCallbacksImpl::create(databaseCallbacks.release()).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin()));
open               56 Source/modules/indexeddb/IDBFactory.h     PassRefPtr<IDBOpenDBRequest> open(ExecutionContext*, const String& name, ExceptionState&);
open               57 Source/modules/indexeddb/IDBFactory.h     PassRefPtr<IDBOpenDBRequest> open(ExecutionContext*, const String& name, unsigned long long version, ExceptionState&);
open              100 Source/modules/indexeddb/IDBKeyRange.cpp PassRefPtr<IDBKeyRange> IDBKeyRange::lowerBound(ExecutionContext* context, const ScriptValue& boundValue, bool open, ExceptionState& exceptionState)
open              109 Source/modules/indexeddb/IDBKeyRange.cpp     return IDBKeyRange::create(bound, nullptr, open ? LowerBoundOpen : LowerBoundClosed, UpperBoundOpen);
open              112 Source/modules/indexeddb/IDBKeyRange.cpp PassRefPtr<IDBKeyRange> IDBKeyRange::upperBound(ExecutionContext* context, const ScriptValue& boundValue, bool open, ExceptionState& exceptionState)
open              121 Source/modules/indexeddb/IDBKeyRange.cpp     return IDBKeyRange::create(nullptr, bound, LowerBoundOpen, open ? UpperBoundOpen : UpperBoundClosed);
open               69 Source/modules/indexeddb/IDBKeyRange.h     static PassRefPtr<IDBKeyRange> lowerBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
open               70 Source/modules/indexeddb/IDBKeyRange.h     static PassRefPtr<IDBKeyRange> upperBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
open              194 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp     RefPtr<IDBOpenDBRequest> idbOpenDBRequest = idbFactory->open(context(), databaseName, exceptionState);
open               87 Source/modules/mediasource/MediaSourceBase.cpp     DEFINE_STATIC_LOCAL(const AtomicString, open, ("open", AtomicString::ConstructFromLiteral));
open               88 Source/modules/mediasource/MediaSourceBase.cpp     return open;
open              233 Source/modules/mediastream/RTCDataChannel.cpp         scheduleDispatchEvent(Event::create(EventTypeNames::open));
open               78 Source/modules/mediastream/RTCDataChannel.h     DEFINE_ATTRIBUTE_EVENT_LISTENER(open);
open              320 Source/modules/webdatabase/DatabaseBackendBase.cpp     if (!m_sqliteDatabase.open(m_filename, true)) {
open               63 Source/modules/webdatabase/sqlite/SQLiteDatabase.h     bool open(const String& filename, bool forWebSQLDatabase = false);
open              610 Source/modules/websockets/WebSocket.cpp     m_eventQueue->dispatch(Event::create(EventTypeNames::open));
open              100 Source/modules/websockets/WebSocket.h     DEFINE_ATTRIBUTE_EVENT_LISTENER(open);
open               63 Source/wtf/DataLog.cpp         file = FilePrintStream::open(actualFilename, "w").leakPtr();
open               45 Source/wtf/FilePrintStream.h     static PassOwnPtr<FilePrintStream> open(const char* filename, const char* mode);
open               51 public/platform/WebIDBFactory.h     virtual void open(const WebString& name, long long version, long long transactionId, WebIDBCallbacks* callbacks, WebIDBDatabaseCallbacks* databaseCallbacks, const WebString& databaseIdentifier) { BLINK_ASSERT_NOT_REACHED(); }