Home
last modified time | relevance | path

Searched refs:toImpl (Results 1 – 25 of 99) sorted by relevance

1234

/external/webkit/Source/WebKit2/UIProcess/API/C/
DWKPreferences.cpp57 toImpl(preferencesRef)->setJavaScriptEnabled(javaScriptEnabled); in WKPreferencesSetJavaScriptEnabled()
62 return toImpl(preferencesRef)->javaScriptEnabled(); in WKPreferencesGetJavaScriptEnabled()
67 toImpl(preferencesRef)->setLoadsImagesAutomatically(loadsImagesAutomatically); in WKPreferencesSetLoadsImagesAutomatically()
72 return toImpl(preferencesRef)->loadsImagesAutomatically(); in WKPreferencesGetLoadsImagesAutomatically()
77toImpl(preferencesRef)->setLoadsSiteIconsIgnoringImageLoadingPreference(loadsSiteIconsIgnoringImag… in WKPreferencesSetLoadsSiteIconsIgnoringImageLoadingPreference()
82 return toImpl(preferencesRef)->loadsSiteIconsIgnoringImageLoadingPreference(); in WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference()
87 toImpl(preferencesRef)->setOfflineWebApplicationCacheEnabled(offlineWebApplicationCacheEnabled); in WKPreferencesSetOfflineWebApplicationCacheEnabled()
92 return toImpl(preferencesRef)->offlineWebApplicationCacheEnabled(); in WKPreferencesGetOfflineWebApplicationCacheEnabled()
97 toImpl(preferencesRef)->setLocalStorageEnabled(localStorageEnabled); in WKPreferencesSetLocalStorageEnabled()
102 return toImpl(preferencesRef)->localStorageEnabled(); in WKPreferencesGetLocalStorageEnabled()
[all …]
DWKContext.cpp52 RefPtr<WebContext> context = WebContext::create(toImpl(pathRef)->string()); in WKContextCreateWithInjectedBundlePath()
70 toImpl(contextRef)->initializeInjectedBundleClient(wkClient); in WKContextSetInjectedBundleClient()
77 toImpl(contextRef)->initializeHistoryClient(wkClient); in WKContextSetHistoryClient()
84 toImpl(contextRef)->initializeDownloadClient(wkClient); in WKContextSetDownloadClient()
89 return toAPI(toImpl(contextRef)->download(0, toImpl(requestRef)->resourceRequest())); in WKContextDownloadURLRequest()
94 toImpl(contextRef)->setInjectedBundleInitializationUserData(toImpl(userDataRef)); in WKContextSetInitializationUserDataForInjectedBundle()
99toImpl(contextRef)->postMessageToInjectedBundle(toImpl(messageNameRef)->string(), toImpl(messageBo… in WKContextPostMessageToInjectedBundle()
113 toImpl(contextRef)->addVisitedLink(toImpl(visitedURL)->string()); in WKContextAddVisitedLink()
118 toImpl(contextRef)->setCacheModel(toCacheModel(cacheModel)); in WKContextSetCacheModel()
123 return toAPI(toImpl(contextRef)->cacheModel()); in WKContextGetCacheModel()
[all …]
DWKPage.cpp50 return toAPI(toImpl(pageRef)->process()->context()); in WKPageGetContext()
55 return toAPI(toImpl(pageRef)->pageGroup()); in WKPageGetPageGroup()
60 toImpl(pageRef)->loadURL(toWTFString(URLRef)); in WKPageLoadURL()
65 toImpl(pageRef)->loadURLRequest(toImpl(urlRequestRef)); in WKPageLoadURLRequest()
70 toImpl(pageRef)->loadHTMLString(toWTFString(htmlStringRef), toWTFString(baseURLRef)); in WKPageLoadHTMLString()
75toImpl(pageRef)->loadAlternateHTMLString(toWTFString(htmlStringRef), toWTFString(baseURLRef), toWT… in WKPageLoadAlternateHTMLString()
80 toImpl(pageRef)->loadPlainTextString(toWTFString(plainTextStringRef)); in WKPageLoadPlainTextString()
85 toImpl(pageRef)->stopLoading(); in WKPageStopLoading()
90 toImpl(pageRef)->reload(false); in WKPageReload()
95 toImpl(pageRef)->reload(true); in WKPageReloadFromOrigin()
[all …]
DWKInspector.cpp43 return toAPI(toImpl(inspectorRef)->page()); in WKInspectorGetPage()
48 return toImpl(inspectorRef)->isVisible(); in WKInspectorIsVisible()
53 toImpl(inspectorRef)->show(); in WKInspectorShow()
58 toImpl(inspectorRef)->close(); in WKInspectorClose()
63 toImpl(inspectorRef)->showConsole(); in WKInspectorShowConsole()
68 return toImpl(inspectorRef)->isAttached(); in WKInspectorIsAttached()
73 toImpl(inspectorRef)->attach(); in WKInspectorAttach()
78 toImpl(inspectorRef)->detach(); in WKInspectorDetach()
83 return toImpl(inspectorRef)->isDebuggingJavaScript(); in WKInspectorIsDebuggingJavaScript()
88 toImpl(inspectorRef)->toggleJavaScriptDebugging(); in WKInspectorToggleJavaScriptDebugging()
[all …]
DWKFrame.cpp45 return toImpl(frameRef)->isMainFrame(); in WKFrameIsMainFrame()
50 WebFrameProxy* frame = toImpl(frameRef); in WKFrameGetFrameLoadState()
66 return toCopiedURLAPI(toImpl(frameRef)->provisionalURL()); in WKFrameCopyProvisionalURL()
71 return toCopiedURLAPI(toImpl(frameRef)->url()); in WKFrameCopyURL()
76 return toCopiedURLAPI(toImpl(frameRef)->unreachableURL()); in WKFrameCopyUnreachableURL()
81 toImpl(frameRef)->stopLoading(); in WKFrameStopLoading()
86 return toCopiedAPI(toImpl(frameRef)->mimeType()); in WKFrameCopyMIMEType()
91 return toCopiedAPI(toImpl(frameRef)->title()); in WKFrameCopyTitle()
96 return toAPI(toImpl(frameRef)->page()); in WKFrameGetPage()
101 return toAPI(toImpl(frameRef)->childFrames().releaseRef()); in WKFrameCopyChildFrames()
[all …]
DWKCookieManager.cpp43 toImpl(cookieManagerRef)->initializeClient(wkClient); in WKCookieManagerSetClient()
48 toImpl(cookieManagerRef)->getHostnamesWithCookies(ArrayCallback::create(context, callback)); in WKCookieManagerGetHostnamesWithCookies()
53 toImpl(cookieManagerRef)->deleteCookiesForHostname(toImpl(hostname)->string()); in WKCookieManagerDeleteCookiesForHostname()
58 toImpl(cookieManagerRef)->deleteAllCookies(); in WKCookieManagerDeleteAllCookies()
63 toImpl(cookieManager)->setHTTPCookieAcceptPolicy(toHTTPCookieAcceptPolicy(policy)); in WKCookieManagerSetHTTPCookieAcceptPolicy()
68toImpl(cookieManager)->getHTTPCookieAcceptPolicy(HTTPCookieAcceptPolicyCallback::create(context, c… in WKCookieManagerGetHTTPCookieAcceptPolicy()
73 toImpl(cookieManager)->startObservingCookieChanges(); in WKCookieManagerStartObservingCookieChanges()
78 toImpl(cookieManager)->stopObservingCookieChanges(); in WKCookieManagerStopObservingCookieChanges()
DWKBackForwardList.cpp41 return toAPI(toImpl(listRef)->currentItem()); in WKBackForwardListGetCurrentItem()
46 return toAPI(toImpl(listRef)->backItem()); in WKBackForwardListGetBackItem()
51 return toAPI(toImpl(listRef)->forwardItem()); in WKBackForwardListGetForwardItem()
56 return toAPI(toImpl(listRef)->itemAtIndex(index)); in WKBackForwardListGetItemAtIndex()
61 return toImpl(listRef)->backListCount(); in WKBackForwardListGetBackListCount()
66 return toImpl(listRef)->forwardListCount(); in WKBackForwardListGetForwardListCount()
71 return toAPI(toImpl(listRef)->backListAsImmutableArrayWithLimit(limit).releaseRef()); in WKBackForwardListCopyBackListWithLimit()
76 return toAPI(toImpl(listRef)->forwardListAsImmutableArrayWithLimit(limit).releaseRef()); in WKBackForwardListCopyForwardListWithLimit()
DWKProtectionSpace.cpp41 return toCopiedAPI(toImpl(protectionSpaceRef)->host()); in WKProtectionSpaceCopyHost()
46 return toImpl(protectionSpaceRef)->port(); in WKProtectionSpaceGetPort()
51 return toCopiedAPI(toImpl(protectionSpaceRef)->realm()); in WKProtectionSpaceCopyRealm()
56 return toImpl(protectionSpaceRef)->isProxy(); in WKProtectionSpaceGetIsProxy()
61 return toAPI(toImpl(protectionSpaceRef)->serverType()); in WKProtectionSpaceGetServerType()
66 return toImpl(protectionSpaceRef)->receivesCredentialSecurely(); in WKProtectionSpaceGetReceivesCredentialSecurely()
71 return toAPI(toImpl(protectionSpaceRef)->authenticationScheme()); in WKProtectionSpaceGetAuthenticationScheme()
DWKIconDatabase.cpp43 toImpl(iconDatabaseRef)->initializeIconDatabaseClient(wkClient); in WKIconDatabaseSetIconDatabaseClient()
48 toImpl(iconDatabaseRef)->retainIconForPageURL(toWTFString(pageURLRef)); in WKIconDatabaseRetainIconForURL()
53 toImpl(iconDatabaseRef)->releaseIconForPageURL(toWTFString(pageURLRef)); in WKIconDatabaseReleaseIconForURL()
58 toImpl(iconDatabaseRef)->enableDatabaseCleanup(); in WKIconDatabaseEnableDatabaseCleanup()
63 toImpl(iconDatabaseRef)->removeAllIcons(); in WKIconDatabaseRemoveAllIcons()
68 toImpl(iconDatabaseRef)->checkIntegrityBeforeOpening(); in WKIconDatabaseCheckIntegrityBeforeOpening()
73 toImpl(iconDatabaseRef)->close(); in WKIconDatabaseClose()
DWKDatabaseManager.cpp95 toImpl(databaseManagerRef)->initializeClient(wkClient); in WKDatabaseManagerSetClient()
100 toImpl(databaseManagerRef)->getDatabasesByOrigin(ArrayCallback::create(context, callback)); in WKDatabaseManagerGetDatabasesByOrigin()
119 toImpl(databaseManagerRef)->getDatabaseOrigins(ArrayCallback::create(context, callback)); in WKDatabaseManagerGetDatabaseOrigins()
138toImpl(databaseManagerRef)->deleteDatabaseWithNameForOrigin(toWTFString(databaseNameRef), toImpl(o… in WKDatabaseManagerDeleteDatabasesWithNameForOrigin()
143 toImpl(databaseManagerRef)->deleteDatabasesForOrigin(toImpl(originRef)); in WKDatabaseManagerDeleteDatabasesForOrigin()
148 toImpl(databaseManagerRef)->deleteAllDatabases(); in WKDatabaseManagerDeleteAllDatabases()
153 toImpl(databaseManagerRef)->setQuotaForOrigin(toImpl(originRef), quota); in WKDatabaseManagerSetQuotaForOrigin()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
DWKBundle.cpp45 toImpl(bundleRef)->initializeClient(wkClient); in WKBundleSetClient()
50 toImpl(bundleRef)->postMessage(toImpl(messageNameRef)->string(), toImpl(messageBodyRef)); in WKBundlePostMessage()
56toImpl(bundleRef)->postSynchronousMessage(toImpl(messageNameRef)->string(), toImpl(messageBodyRef)… in WKBundlePostSynchronousMessage()
63 toImpl(bundleRef)->setShouldTrackVisitedLinks(shouldTrackVisitedLinks); in WKBundleSetShouldTrackVisitedLinks()
68 toImpl(bundleRef)->removeAllVisitedLinks(); in WKBundleRemoveAllVisitedLinks()
73 toImpl(bundleRef)->activateMacFontAscentHack(); in WKBundleActivateMacFontAscentHack()
78 toImpl(bundleRef)->garbageCollectJavaScriptObjects(); in WKBundleGarbageCollectJavaScriptObjects()
83 toImpl(bundleRef)->garbageCollectJavaScriptObjectsOnAlternateThreadForDebugging(waitUntilDone); in WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging()
88 return toImpl(bundleRef)->javaScriptObjectsCount(); in WKBundleGetJavaScriptObjectsCount()
93toImpl(bundleRef)->addUserScript(toImpl(pageGroupRef), toImpl(scriptWorldRef), toWTFString(sourceR… in WKBundleAddUserScript()
[all …]
DWKBundleFrame.cpp46 return toImpl(frameRef)->isMainFrame(); in WKBundleFrameIsMainFrame()
51 return toCopiedURLAPI(toImpl(frameRef)->url()); in WKBundleFrameCopyURL()
56 return toCopiedURLAPI(toImpl(frameRef)->provisionalURL()); in WKBundleFrameCopyProvisionalURL()
61 Frame* coreFrame = toImpl(frameRef)->coreFrame(); in WKBundleFrameGetFrameLoadState()
84 return toAPI(toImpl(frameRef)->childFrames().releaseRef()); in WKBundleFrameCopyChildFrames()
89 return toImpl(frameRef)->numberOfActiveAnimations(); in WKBundleFrameGetNumberOfActiveAnimations()
94 …return toImpl(frameRef)->pauseAnimationOnElementWithId(toImpl(name)->string(), toImpl(elementID)->… in WKBundleFramePauseAnimationOnElementWithId()
99 toImpl(frameRef)->suspendAnimations(); in WKBundleFrameSuspendAnimations()
104 toImpl(frameRef)->resumeAnimations(); in WKBundleFrameResumeAnimations()
109 return toImpl(frameRef)->jsContext(); in WKBundleFrameGetJavaScriptContext()
[all …]
DWKBundlePage.cpp53 toImpl(pageRef)->initializeInjectedBundleContextMenuClient(wkClient); in WKBundlePageSetContextMenuClient()
60 toImpl(pageRef)->initializeInjectedBundleEditorClient(wkClient); in WKBundlePageSetEditorClient()
67 toImpl(pageRef)->initializeInjectedBundleFormClient(wkClient); in WKBundlePageSetFormClient()
74 toImpl(pageRef)->initializeInjectedBundleLoaderClient(wkClient); in WKBundlePageSetPageLoaderClient()
81 toImpl(pageRef)->initializeInjectedBundleResourceLoadClient(wkClient); in WKBundlePageSetResourceLoadClient()
88 toImpl(pageRef)->initializeInjectedBundlePolicyClient(wkClient); in WKBundlePageSetPolicyClient()
95 toImpl(pageRef)->initializeInjectedBundleUIClient(wkClient); in WKBundlePageSetUIClient()
103 toImpl(pageRef)->initializeInjectedBundleFullScreenClient(wkClient); in WKBundlePageSetFullScreenClient()
110 toImpl(pageRef)->fullScreenManager()->willEnterFullScreen(); in WKBundlePageWillEnterFullScreen()
117 toImpl(pageRef)->fullScreenManager()->didEnterFullScreen(); in WKBundlePageDidEnterFullScreen()
[all …]
DWKBundleNodeHandle.cpp50 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(nodeHandleRef)->document(); in WKBundleNodeHandleCopyDocument()
56 return toAPI(toImpl(nodeHandleRef)->renderRect(isReplaced)); in WKBundleNodeHandleGetRenderRect()
61 return toAPI(toImpl(elementHandleRef)->elementBounds()); in WKBundleNodeHandleGetElementBounds()
66 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(elementHandleRef)->elementShadowRoot(); in WKBundleNodeHandleCopyElementShadowRoot()
72 toImpl(htmlInputElementHandleRef)->setHTMLInputElementValueForUser(toWTFString(valueRef)); in WKBundleNodeHandleSetHTMLInputElementValueForUser()
77 return toImpl(htmlInputElementHandleRef)->isHTMLInputElementAutofilled(); in WKBundleNodeHandleGetHTMLInputElementAutofilled()
82 toImpl(htmlInputElementHandleRef)->setHTMLInputElementAutofilled(filled); in WKBundleNodeHandleSetHTMLInputElementAutofilled()
87 return toImpl(htmlInputElementHandleRef)->htmlInputElementLastChangeWasUserEdit(); in WKBundleNodeHandleGetHTMLInputElementLastChangeWasUserEdit()
92 return toImpl(htmlTextAreaElementHandleRef)->htmlTextAreaElementLastChangeWasUserEdit(); in WKBundleNodeHandleGetHTMLTextAreaElementLastChangeWasUserEdit()
97 …RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(htmlTableCellElementHandleRef)->htmlTableCell… in WKBundleNodeHandleCopyHTMLTableCellElementCellAbove()
[all …]
DWKBundleHitTestResult.cpp43 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(hitTestResultRef)->nodeHandle(); in WKBundleHitTestResultCopyNodeHandle()
49 return toAPI(toImpl(hitTestResultRef)->frame()); in WKBundleHitTestResultGetFrame()
54 return toAPI(toImpl(hitTestResultRef)->targetFrame()); in WKBundleHitTestResultGetTargetFrame()
59 return toCopiedURLAPI(toImpl(hitTestResultRef)->absoluteImageURL()); in WKBundleHitTestResultCopyAbsoluteImageURL()
64 return toCopiedURLAPI(toImpl(hitTestResultRef)->absoluteLinkURL()); in WKBundleHitTestResultCopyAbsoluteLinkURL()
69 return toCopiedURLAPI(toImpl(hitTestResultRef)->absoluteMediaURL()); in WKBundleHitTestResultCopyAbsoluteMediaURL()
74 return toAPI(toImpl(hitTestResultRef)->imageRect()); in WKBundleHitTestResultGetImageRect()
79 return toImpl(hitTestResultRef)->isSelected(); in WKBundleHitTestResultGetIsSelected()
84 return toCopiedAPI(toImpl(hitTestResultRef)->linkLabel()); in WKBundleHitTestResultCopyLinkLabel()
89 return toCopiedAPI(toImpl(hitTestResultRef)->linkTitle()); in WKBundleHitTestResultCopyLinkTitle()
DWKBundleBackForwardListItem.cpp42 return toImpl(itemRef1)->item() == toImpl(itemRef2)->item(); in WKBundleBackForwardListItemIsSame()
47 return toCopiedURLAPI(toImpl(itemRef)->originalURL()); in WKBundleBackForwardListItemCopyOriginalURL()
52 return toCopiedURLAPI(toImpl(itemRef)->url()); in WKBundleBackForwardListItemCopyURL()
57 return toCopiedAPI(toImpl(itemRef)->title()); in WKBundleBackForwardListItemCopyTitle()
62 return toCopiedAPI(toImpl(itemRef)->target()); in WKBundleBackForwardListItemCopyTarget()
67 return toImpl(itemRef)->isTargetItem(); in WKBundleBackForwardListItemIsTargetItem()
72 return toAPI(toImpl(itemRef)->children().leakRef()); in WKBundleBackForwardListItemCopyChildren()
DWKBundleInspector.cpp45 return toImpl(inspectorRef)->show(); in WKBundleInspectorShow()
50 return toImpl(inspectorRef)->close(); in WKBundleInspectorClose()
55 return toImpl(inspectorRef)->evaluateScriptForTest(callID, toImpl(script)->string()); in WKBundleInspectorEvaluateScriptForTest()
61 toImpl(inspectorRef)->startPageProfiling(); in WKBundleInspectorSetPageProfilingEnabled()
63 toImpl(inspectorRef)->stopPageProfiling(); in WKBundleInspectorSetPageProfilingEnabled()
DWKBundleNavigationAction.cpp44 return toAPI(toImpl(navigationActionRef)->navigationType()); in WKBundleNavigationActionGetNavigationType()
49 return toAPI(toImpl(navigationActionRef)->modifiers()); in WKBundleNavigationActionGetEventModifiers()
54 return toAPI(toImpl(navigationActionRef)->mouseButton()); in WKBundleNavigationActionGetEventMouseButton()
59 … RefPtr<InjectedBundleHitTestResult> hitTestResult = toImpl(navigationActionRef)->hitTestResult(); in WKBundleNavigationActionCopyHitTestResult()
65 RefPtr<InjectedBundleNodeHandle> formElement = toImpl(navigationActionRef)->formElement(); in WKBundleNavigationActionCopyFormElement()
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
DWKView.cpp41 …RefPtr<WebView> view = WebView::create(rect, toImpl(contextRef), toImpl(pageGroupRef), parentWindo… in WKViewCreate()
47 return toImpl(viewRef)->window(); in WKViewGetWindow()
52 return toAPI(toImpl(viewRef)->page()); in WKViewGetPage()
57 toImpl(viewRef)->setParentWindow(hostWindow); in WKViewSetParentWindow()
62 toImpl(viewRef)->windowAncestryDidChange(); in WKViewWindowAncestryDidChange()
67 toImpl(viewRef)->setIsInWindow(isInWindow); in WKViewSetIsInWindow()
72 toImpl(viewRef)->setInitialFocus(forward); in WKViewSetInitialFocus()
77 toImpl(viewRef)->setScrollOffsetOnNextResize(toIntSize(scrollOffset)); in WKViewSetScrollOffsetOnNextResize()
82 toImpl(viewRef)->setFindIndicatorCallback(callback, context); in WKViewSetFindIndicatorCallback()
87 return toImpl(viewRef)->getFindIndicatorCallback(context); in WKViewGetFindIndicatorCallback()
[all …]
/external/webkit/Source/WebKit2/Shared/API/c/
DWKContextMenuItem.cpp45 …return toAPI(WebContextMenuItem::create(WebContextMenuItemData(ActionType, toImpl(tag), toImpl(tit… in WKContextMenuItemCreateAsAction()
50 …ontextMenuItem::create(WebContextMenuItemData(CheckableActionType, toImpl(tag), toImpl(title)->str… in WKContextMenuItemCreateAsCheckableAction()
55 …return toAPI(WebContextMenuItem::create(toImpl(title)->string(), enabled, toImpl(submenuItems)).le… in WKContextMenuItemCreateAsSubmenu()
65 return toAPI(toImpl(itemRef)->data()->action()); in WKContextMenuItemGetTag()
70 return toAPI(toImpl(itemRef)->data()->type()); in WKContextMenuItemGetType()
75 return toCopiedAPI(toImpl(itemRef)->data()->title().impl()); in WKContextMenuItemCopyTitle()
80 return toImpl(itemRef)->data()->enabled(); in WKContextMenuItemGetEnabled()
85 return toImpl(itemRef)->data()->checked(); in WKContextMenuItemGetChecked()
90 return toAPI(toImpl(itemRef)->submenuItemsAsImmutableArray().leakRef()); in WKContextMenuCopySubmenuItems()
95 return toAPI(toImpl(itemRef)->userData()); in WKContextMenuItemGetUserData()
[all …]
DWKMutableDictionary.cpp42 return toImpl(dictionaryRef)->isMutable(); in WKDictionaryIsMutable()
47 return toImpl(dictionaryRef)->add(toImpl(keyRef)->string(), toImpl(itemRef)); in WKDictionaryAddItem()
52 return toImpl(dictionaryRef)->set(toImpl(keyRef)->string(), toImpl(itemRef)); in WKDictionarySetItem()
57 toImpl(dictionaryRef)->remove(toImpl(keyRef)->string()); in WKDictionaryRemoveItem()
DWKString.cpp47 return toImpl(stringRef)->isEmpty(); in WKStringIsEmpty()
52 return toImpl(stringRef)->length(); in WKStringGetLength()
58 return (toImpl(stringRef)->getCharacters(static_cast<UChar*>(buffer), bufferLength)); in WKStringGetCharacters()
63 return toImpl(stringRef)->maximumUTF8CStringSize(); in WKStringGetMaximumUTF8CStringSize()
68 return toImpl(stringRef)->getUTF8CString(buffer, bufferSize); in WKStringGetUTF8CString()
73 return toImpl(aRef)->equal(toImpl(bRef)); in WKStringIsEqual()
78 return toImpl(aRef)->equalToUTF8String(b); in WKStringIsEqualToUTF8CString()
83 return toImpl(aRef)->equalToUTF8StringIgnoringCase(b); in WKStringIsEqualToUTF8CStringIgnoringCase()
94 return toImpl(stringRef)->createJSString(); in WKStringCopyJSString()
DWKSecurityOrigin.cpp41 …RefPtr<WebSecurityOrigin> securityOrigin = WebSecurityOrigin::create(toImpl(identifier)->string()); in WKSecurityOriginCreateFromIdentifier()
47 …SecurityOrigin> securityOrigin = WebSecurityOrigin::create(toImpl(protocol)->string(), toImpl(host… in WKSecurityOriginCreate()
53 return toCopiedAPI(toImpl(securityOrigin)->protocol()); in WKSecurityOriginGetProtocol()
58 return toCopiedAPI(toImpl(securityOrigin)->host()); in WKSecurityOriginGetHost()
63 return toImpl(securityOrigin)->port(); in WKSecurityOriginGetPort()
DWKURL.cpp45 return toCopiedAPI(toImpl(url)->string()); in WKURLCopyString()
50 return toImpl(a)->string() == toImpl(b)->string(); in WKURLIsEqual()
55 return toCopiedAPI(toImpl(url)->host()); in WKURLCopyHostName()
60 return toCopiedAPI(toImpl(url)->protocol()); in WKURLCopyScheme()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundlePageLoaderClient.cpp46 userData = adoptRef(toImpl(userDataToPass)); in didStartProvisionalLoadForFrame()
56 userData = adoptRef(toImpl(userDataToPass)); in didReceiveServerRedirectForProvisionalLoadForFrame()
66 userData = adoptRef(toImpl(userDataToPass)); in didFailProvisionalLoadWithErrorForFrame()
76 userData = adoptRef(toImpl(userDataToPass)); in didCommitLoadForFrame()
86 userData = adoptRef(toImpl(userDataToPass)); in didFinishDocumentLoadForFrame()
96 userData = adoptRef(toImpl(userDataToPass)); in didFinishLoadForFrame()
106 userData = adoptRef(toImpl(userDataToPass)); in didFailLoadWithErrorForFrame()
116 userData = adoptRef(toImpl(userDataToPass)); in didSameDocumentNavigationForFrame()
126 userData = adoptRef(toImpl(userDataToPass)); in didReceiveTitleForFrame()
136 userData = adoptRef(toImpl(userDataToPass)); in didFirstLayoutForFrame()
[all …]

1234