/external/webkit/WebKit/win/ |
DOMCoreClasses.cpp | 104 /* [retval][out] */ BSTR* result) 117 /* [retval][out] */ BSTR* result) 129 /* [in] */ BSTR /*value*/) 268 /* [in] */ BSTR /*feature*/, 269 /* [in] */ BSTR /*version*/, 277 /* [retval][out] */ BSTR* /*result*/) 284 /* [retval][out] */ BSTR* /*result*/) 291 /* [in] */ BSTR /*prefix*/) 298 /* [retval][out] */ BSTR* /*result*/) 343 /* [retval][out] */ BSTR* result [all...] |
WebPreferences.cpp | 152 WebPreferences* WebPreferences::getInstanceForIdentifier(BSTR identifier) 161 void WebPreferences::setInstance(WebPreferences* instance, BSTR identifier) 169 void WebPreferences::removeReferenceForIdentifier(BSTR identifier) 285 BSTR WebPreferences::stringValueForKey(CFStringRef key) 299 BSTR bstr = SysAllocStringLen(0, length); 300 if (!bstr) 303 if (!CFStringGetCString(str, (char*)bstr, (length+1)*sizeof(WCHAR), kCFStringEncodingUTF16)) { 304 SysFreeString(bstr); 308 bstr[length] = 0 [all...] |
WebScriptObject.cpp | 81 /* [in] */ BSTR /*exceptionMessage*/, 89 /* [in] */ BSTR /*name*/, 99 /* [in] */ BSTR /*script*/, 107 /* [in] */ BSTR /*name*/) 114 /* [retval][out] */ BSTR* /*stringRepresentation*/) 137 /* [in] */ BSTR /*description*/)
|
WebHTMLRepresentation.cpp | 107 /* [out][in] */ BSTR* /*types*/, 115 /* [out][in] */ BSTR* /*types*/, 123 /* [out][in] */ BSTR* /*types*/, 142 /* [in] */ BSTR name, 200 /* [size_is][in] */ BSTR* labels, 203 /* [retval][out] */ BSTR* result) 209 /* [size_is][in] */ BSTR* labels, 212 /* [retval][out] */ BSTR* result) 217 HRESULT WebHTMLRepresentation::searchForLabels(BSTR* labels, unsigned cLabels, IDOMElement* beforeElement, unsigned* resultDistance, BOOL* resultIsInCellAbove, BSTR* result [all...] |
MarshallingHelpers.cpp | 44 KURL MarshallingHelpers::BSTRToKURL(BSTR urlStr) 49 BSTR MarshallingHelpers::KURLToBSTR(const KURL& url) 70 CFURLRef MarshallingHelpers::BSTRToCFURLRef(BSTR urlStr) 82 CFStringRef MarshallingHelpers::BSTRToCFStringRef(BSTR str) 92 BSTR MarshallingHelpers::CFStringRefToBSTR(CFStringRef str) 102 BSTR bstr = SysAllocStringLen(0, length); local 103 if (bstr) { 104 CFStringGetCharacters(str, CFRangeMake(0, length), (UniChar*)bstr); 105 bstr[length] = 0 164 BSTR bstr = CFStringRefToBSTR(item); local [all...] |
WebNotificationCenter.h | 54 /* [in] */ BSTR notificationName, 61 /* [in] */ BSTR notificationName, 67 /* [in] */ BSTR notificationName, 72 void postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject);
|
WebURLCredential.h | 54 /* [in] */ BSTR user, 55 /* [in] */ BSTR password, 59 /* [out, retval] */ BSTR* password); 65 /* [out, retval] */ BSTR* result);
|
WebResource.cpp | 102 /* [in] */ BSTR url, 103 /* [in] */ BSTR mimeType, 104 /* [in] */ BSTR textEncodingName, 105 /* [in] */ BSTR frameName) 124 /* [retval][out] */ BSTR *url) 136 /* [retval][out] */ BSTR *mime) 148 /* [retval][out] */ BSTR *encodingName) 160 /* [retval][out] */ BSTR *name)
|
WebMutableURLRequest.cpp | 143 /* [in] */ BSTR /*theURL*/, 180 /* [retval][out] */ BSTR* result) 195 /* [in] */ BSTR url, 207 /* [retval][out] */ BSTR* result) 221 /* [retval][out] */ BSTR* result) 228 /* [in] */ BSTR field, 229 /* [retval][out] */ BSTR* result) 266 /* [in] */ BSTR /*value*/, 267 /* [in] */ BSTR /*field*/) 302 /* [in] */ BSTR method [all...] |
WebDownload.h | 68 /* [in] */ BSTR bundlePath, 72 /* [in] */ BSTR mimeType, 85 /* [in] */ BSTR target, 86 /* [out, retval] */ BSTR* bundle); 95 /* [in] */ BSTR path,
|
WebError.cpp | 107 /* [in] */ BSTR domain, 109 /* [in] */ BSTR url) 123 /* [retval][out] */ BSTR* result) 133 /* [retval][out] */ BSTR* result) 152 /* [retval][out] */ BSTR* /*result*/) 166 /* [retval][out] */ BSTR* /*result*/) 193 /* [retval][out] */ BSTR* result)
|
DefaultDownloadDelegate.h | 51 virtual HRESULT STDMETHODCALLTYPE decideDestinationWithSuggestedFilename(IWebDownload *download, BSTR filename); 53 virtual HRESULT STDMETHODCALLTYPE didCreateDestination(IWebDownload* download, BSTR destination); 58 virtual HRESULT STDMETHODCALLTYPE shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode);
|
WebDatabaseManager.h | 63 /* [in] */ BSTR databaseName, 73 /* [in] */ BSTR databaseName, 77 /* [in] */ BSTR origin,
|
WebNavigationData.h | 49 /* [retval][out] */ BSTR*); 52 /* [retval][out] */ BSTR*); 64 /* [retval][out] */ BSTR*);
|
/external/webkit/WebKit/win/Interfaces/ |
DOMEvents.idl | 91 HRESULT type([out, retval] BSTR* result); 120 HRESULT initEvent([in] BSTR eventTypeArg, [in] BOOL canBubbleArg, [in] BOOL cancelableArg); 134 HRESULT addEventListener([in] BSTR type, [in] IDOMEventListener* listener, [in] BOOL useCapture); 139 HRESULT removeEventListener([in] BSTR type, [in] IDOMEventListener* listener, [in] BOOL useCapture); 155 HRESULT createEvent([in] BSTR eventType, [out, retval] IDOMEvent** result); 173 HRESULT keyIdentifier([out, retval] BSTR* result); 194 HRESULT getModifierState([in] BSTR keyIdentifierArg, [out, retval] BOOL* result); 208 HRESULT initKeyboardEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMWindow* view, [in] BSTR keyIdentifier, [in] unsigned long keyLocation, [in] BOOL ctrlKey, [in] BOOL altKey, [in] BOOL shiftKey, [in] BOOL metaKey, [in] BOOL graphKey); 282 HRESULT initMouseEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMWindow* view, [in] long detail, [in] lon (…) [all...] |
IWebDesktopNotificationsDelegate.idl | 52 HRESULT contentsURL([out, retval] BSTR* result); 53 HRESULT iconURL([out, retval] BSTR* result); 54 HRESULT title([out, retval] BSTR* result); 55 HRESULT text([out, retval] BSTR* result); 106 HRESULT checkNotificationPermission([in] BSTR origin, [out, retval] int* result); 113 HRESULT requestNotificationPermission([in] BSTR origin);
|
IWebDatabaseManager.idl | 57 HRESULT detailsForDatabase([in] BSTR databaseName, [in] IWebSecurityOrigin* origin, [out, retval] IPropertyBag **result); 61 HRESULT deleteDatabase([in] BSTR databaseName, [in] IWebSecurityOrigin* origin); 63 HRESULT setQuota([in] BSTR originName, [in] unsigned long long quota);
|
IWebNavigationData.idl | 45 HRESULT url([out, retval] BSTR*); 46 HRESULT title([out, retval] BSTR*); 50 HRESULT clientRedirectSource([out, retval] BSTR*);
|
IWebView.idl | 162 HRESULT canShowMIMEType([in] BSTR mimeType, [out, retval] BOOL* canShow); 171 HRESULT canShowMIMETypeAsHTML([in] BSTR mimeType, [out, retval] BOOL* canShow); 189 HRESULT setMIMETypesShownAsHTML([in, size_is(cMimeTypes)] BSTR* mimeTypes, [in] int cMimeTypes); 200 HRESULT URLFromPasteboard([in] IDataObject* pasteboard, [out, retval] BSTR* url); 211 HRESULT URLTitleFromPasteboard([in] IDataObject* pasteboard, [out, retval] BSTR* urlTitle); 226 HRESULT initWithFrame([in] RECT frame, [in] BSTR frameName, [in] BSTR groupName); 386 HRESULT setApplicationNameForUserAgent([in] BSTR applicationName); 393 HRESULT applicationNameForUserAgent([out, retval] BSTR* applicationName); 405 HRESULT setCustomUserAgent([in] BSTR userAgentString) [all...] |
IWebHistoryItem.idl | 59 HRESULT initWithURLString([in] BSTR urlString, [in] BSTR title, [in] DATE lastVisited); 68 HRESULT originalURLString([out, retval] BSTR* url); 78 HRESULT URLString([out, retval] BSTR* url); 89 HRESULT title([out, retval] BSTR* pageTitle); 107 HRESULT setAlternateTitle([in] BSTR title); 115 HRESULT alternateTitle([out, retval] BSTR* title);
|
IWebNotificationCenter.idl | 52 HRESULT addObserver([in] IWebNotificationObserver* observer, [in] BSTR notificationName, [in] IUnknown* anObject); 59 HRESULT postNotificationName([in] BSTR notificationName, [in] IUnknown* anObject, [in] IPropertyBag* userInfo); 63 HRESULT removeObserver([in] IWebNotificationObserver* anObserver, [in] BSTR notificationName, [in] IUnknown* anObject);
|
/external/webkit/WebKit/win/WebCoreSupport/ |
WebInspectorDelegate.h | 83 /* [in] */ BSTR) { return E_NOTIMPL; }
87 /* [retval][out] */ BSTR*) { return E_NOTIMPL; }
131 /* [in] */ BSTR) { return E_NOTIMPL; }
135 /* [in] */ BSTR,
140 /* [in] */ BSTR /*message*/,
141 /* [in] */ BSTR /*defaultText*/,
142 /* [retval][out] */ BSTR*) { return E_NOTIMPL; }
146 /* [in] */ BSTR /*message*/,
233 /* [in] */ BSTR /*actionName*/,
240 /* [in] */ BSTR) { return E_NOTIMPL; } [all...] |
WebDesktopNotificationsDelegate.cpp | 54 HRESULT STDMETHODCALLTYPE contentsURL(BSTR* result); 55 HRESULT STDMETHODCALLTYPE iconURL(BSTR* result); 56 HRESULT STDMETHODCALLTYPE title(BSTR* result); 57 HRESULT STDMETHODCALLTYPE text(BSTR* result); 102 HRESULT STDMETHODCALLTYPE NotificationCOMWrapper::contentsURL(BSTR* result) 108 HRESULT STDMETHODCALLTYPE NotificationCOMWrapper::iconURL(BSTR* result) 114 HRESULT STDMETHODCALLTYPE NotificationCOMWrapper::title(BSTR* result) 120 HRESULT STDMETHODCALLTYPE NotificationCOMWrapper::text(BSTR* result)
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
EditingDelegate.h | 64 /* [in] */ BSTR text, 96 /* [in] */ BSTR command, 120 /* [in] */ BSTR word) { return E_NOTIMPL; } 123 /* [in] */ BSTR word) { return E_NOTIMPL; } 141 /* [in] */ BSTR string, 144 /* [in] */ BSTR userDescription, 145 /* [in] */ BSTR *guesses, 149 /* [in] */ BSTR word) { return E_NOTIMPL; } 158 /* [in] */ BSTR word,
|
ResourceLoadDelegate.cpp | 44 static inline wstring wstringFromBSTR(BSTR str) 80 BSTR urlBSTR; 87 BSTR mainDocumentURLBSTR; 94 BSTR httpMethodBSTR; 109 BSTR urlBSTR; 128 BSTR domainSTR; 156 BSTR failingURLSTR; 221 BSTR urlStr; 301 BSTR mimeTypeBSTR; 308 BSTR urlBSTR [all...] |