Searched refs:WKRetainPtr (Results 1 - 25 of 78) sorted by relevance

1234

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/cpp/
H A DWKRetainPtr.h36 template<typename T> class WKRetainPtr { class in namespace:WebKit
40 WKRetainPtr() function in class:WebKit::WKRetainPtr
45 WKRetainPtr(PtrType ptr) function in class:WebKit::WKRetainPtr
52 WKRetainPtr(WKAdoptTag, PtrType ptr) function in class:WebKit::WKRetainPtr
57 template<typename U> WKRetainPtr(const WKRetainPtr<U>& o) function in class:WebKit::WKRetainPtr
64 WKRetainPtr(const WKRetainPtr& o) function in class:WebKit::WKRetainPtr
72 template<typename U> WKRetainPtr(WKRetainPtr< function in class:WebKit::WKRetainPtr
77 WKRetainPtr(WKRetainPtr&& o) function in class:WebKit::WKRetainPtr
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_error_private.h30 #include <WKRetainPtr.h>
46 WKRetainPtr<WKStringRef> domain() const;
53 WKRetainPtr<WKErrorRef> m_wkError;
H A Dewk_file_chooser_request_private.h30 #include "WKRetainPtr.h"
47 WKRetainPtr<WKArrayRef> acceptedMIMETypes() const;
55 WKRetainPtr<WKOpenPanelParametersRef> m_parameters;
56 WKRetainPtr<WKOpenPanelResultListenerRef> m_listener;
H A Dewk_form_submission_request_private.h32 #include "WKRetainPtr.h"
47 WKRetainPtr<WKArrayRef> fieldNames() const;
55 WKRetainPtr<WKDictionaryRef> m_wkValues;
56 WKRetainPtr<WKFormSubmissionListenerRef> m_wkListener;
H A Dewk_auth_request.cpp55 WKRetainPtr<WKCredentialRef> credential = WKAuthenticationChallengeGetProposedCredential(m_authenticationChallenge.get());
58 WKRetainPtr<WKStringRef> suggestedUsername(AdoptWK, WKCredentialCopyUser(credential.get()));
71 WKRetainPtr<WKProtectionSpaceRef> protectionSpace = WKAuthenticationChallengeGetProtectionSpace(m_authenticationChallenge.get());
74 WKRetainPtr<WKStringRef> realm(AdoptWK, WKProtectionSpaceCopyRealm(protectionSpace.get()));
87 WKRetainPtr<WKProtectionSpaceRef> protectionSpace = WKAuthenticationChallengeGetProtectionSpace(m_authenticationChallenge.get());
90 WKRetainPtr<WKStringRef> host(AdoptWK, WKProtectionSpaceCopyHost(protectionSpace.get()));
118 WKRetainPtr<WKStringRef> wkUsername(AdoptWK, WKStringCreateWithUTF8CString(username));
119 WKRetainPtr<WKStringRef> wkPassword(AdoptWK, WKStringCreateWithUTF8CString(password));
120 WKRetainPtr<WKCredentialRef> credential(AdoptWK, WKCredentialCreate(wkUsername.get(), wkPassword.get(), kWKCredentialPersistenceForSession));
H A Dewk_back_forward_list_private.h29 #include "WKRetainPtr.h"
49 WKRetainPtr<WKArrayRef> backList(int limit = -1) const;
50 WKRetainPtr<WKArrayRef> forwardList(int limit = -1) const;
61 WKRetainPtr<WKBackForwardListRef> m_wkList;
H A Dewk_page_group.cpp63 WKRetainPtr<WKStringRef> identifierRef = adoptWK(toCopiedAPI(identifier.isEmpty() ? defaultIdentifier : identifier));
64 WKRetainPtr<WKPageGroupRef> pageGroupRef = adoptWK(WKPageGroupCreateWithIdentifier(identifierRef.get()));
86 WKRetainPtr<WKStringRef> wkSource = adoptWK(toCopiedAPI(source));
87 WKRetainPtr<WKURLRef> wkBaseURL = adoptWK(toCopiedURLAPI(baseURL));
88 WKRetainPtr<WKArrayRef> wkWhitelist = adoptWK(WKArrayCreateWithEinaList(whiteList, convertFromCharToWKString));
89 WKRetainPtr<WKArrayRef> wkBlacklist = adoptWK(WKArrayCreateWithEinaList(blackList, convertFromCharToWKString));
H A Dewk_page_group_private.h32 #include <WebKit2/WKRetainPtr.h>
58 WKRetainPtr<WKPageGroupRef> m_pageGroupRef;
H A Dewk_url_response_private.h59 WKRetainPtr<WKURLResponseRef> m_response;
H A Dewk_form_submission_request.cpp53 WKRetainPtr<WKStringRef> wkFieldName = adoptWK(WKStringCreateWithUTF8CString(fieldName));
59 WKRetainPtr<WKArrayRef> EwkFormSubmissionRequest::fieldNames() const
76 WKRetainPtr<WKArrayRef> wkFieldNames = impl->fieldNames();
H A Dewk_file_chooser_request.cpp61 WKRetainPtr<WKArrayRef> EwkFileChooserRequest::acceptedMIMETypes() const
91 WKRetainPtr<WKArrayRef> mimeTypes = impl->acceptedMIMETypes();
95 WKRetainPtr<WKStringRef> mimeType = static_cast<WKStringRef>(WKArrayGetItemAtIndex(mimeTypes.get(), i));
132 WKRetainPtr<WKArrayRef> wkFileURLs(AdoptWK, WKArrayCreateAdoptingValues(filesURLs.get(), urlCount));
145 WKRetainPtr<WKURLRef> wkURL(AdoptWK, toCopiedURLAPI(fileURL));
148 WKRetainPtr<WKArrayRef> wkFileURLs(AdoptWK, WKArrayCreate(&wkURLPtr, 1));
H A Dewk_auth_request_private.h30 #include "WKRetainPtr.h"
57 WKRetainPtr<WKAuthenticationChallengeRef> m_authenticationChallenge;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqwebnavigationhistory_p_p.h33 #include <WebKit2/WKRetainPtr.h>
51 WKRetainPtr<WKBackForwardListRef> m_backForwardList;
64 WKRetainPtr<WKPageRef> m_page;
65 WKRetainPtr<WKBackForwardListRef> m_backForwardList;
H A Dqwebpermissionrequest.cpp26 #include <WebKit2/WKRetainPtr.h>
37 WKRetainPtr<WKStringRef> url = adoptWK(WKSecurityOriginCopyProtocol(origin.get()));
40 WKRetainPtr<WKStringRef> host = adoptWK(WKSecurityOriginCopyHost(origin.get()));
50 WKRetainPtr<WKSecurityOriginRef> origin;
51 WKRetainPtr<WKGeolocationPermissionRequestRef> geolocationRequest;
52 WKRetainPtr<WKNotificationPermissionRequestRef> notificationRequest;
H A Dqwebnavigationhistory.cpp42 #include <WebKit2/WKRetainPtr.h>
88 WKRetainPtr<WKBackForwardListItemRef> itemRef = WKBackForwardListGetItemAtIndex(m_backForwardList.get(), -(index + 1));
95 WKRetainPtr<WKBackForwardListItemRef> itemRef = WKBackForwardListGetItemAtIndex(m_backForwardList.get(), index + 1);
126 WKRetainPtr<WKBackForwardListItemRef> itemRef = WKBackForwardListGetItemAtIndex(d->m_backForwardList.get(), (index.row() + 1) * d->indexSign);
128 WKRetainPtr<WKURLRef> url(AdoptWK, WKBackForwardListItemCopyURL(itemRef.get()));
133 WKRetainPtr<WKStringRef> title(AdoptWK, WKBackForwardListItemCopyTitle(itemRef.get()));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKTypeRefWrapper.mm32 #import "WKRetainPtr.h"
36 WKRetainPtr<WKTypeRef> _object;
H A DWKBrowsingContextGroup.mm33 #import "WKRetainPtr.h"
41 WKRetainPtr<WKPageGroupRef> _pageGroupRef;
62 WKRetainPtr<WKPreferencesRef> preferences = adoptWK(WKPreferencesCreate());
127 WKRetainPtr<WKStringRef> wkSource = adoptWK(WKStringCreateWithCFString((CFStringRef)source));
128 WKRetainPtr<WKURLRef> wkBaseURL = adoptWK(WKURLCreateWithCFURL((CFURLRef)baseURL));
129 WKRetainPtr<WKArrayRef> wkWhitelist = adoptWK(createWKArray(whitelist));
130 WKRetainPtr<WKArrayRef> wkBlacklist = adoptWK(createWKArray(blacklist));
146 WKRetainPtr<WKStringRef> wkSource = adoptWK(WKStringCreateWithCFString((CFStringRef)source));
147 WKRetainPtr<WKURLRef> wkBaseURL = adoptWK(WKURLCreateWithCFURL((CFURLRef)baseURL));
148 WKRetainPtr<WKArrayRe
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DBatteryProvider.h35 #include <WebKit2/WKRetainPtr.h>
54 WKRetainPtr<WKBatteryManagerRef> m_batteryManager;
H A DContextHistoryClientEfl.h31 #include <WebKit2/WKRetainPtr.h>
56 WKRetainPtr<WKContextRef> m_context;
H A DNetworkInfoProvider.h35 #include <WebKit2/WKRetainPtr.h>
57 WKRetainPtr<WKContextRef> m_context;
H A DRequestManagerClientEfl.h31 #include <WebKit2/WKRetainPtr.h>
53 WKRetainPtr<WKSoupRequestManagerRef> m_soupRequestManager;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtWebError.h27 #include <WKRetainPtr.h>
60 WKRetainPtr<WKErrorRef> error;
H A DWebGeolocationProviderQt.h27 #include <WebKit2/WKRetainPtr.h>
56 WKRetainPtr<WKGeolocationPositionRef> m_lastPosition;
H A DQtWebContext.h27 #include <WKRetainPtr.h>
59 WKRetainPtr<WKContextRef> m_context;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/efl/
H A DWKArrayEfl.cpp32 #include <WebKit2/WKRetainPtr.h>

Completed in 154 milliseconds

1234