/external/webkit/Source/WebCore/platform/win/ |
BString.h | 35 typedef wchar_t* BSTR; 59 void adoptBSTR(BSTR); 63 BString& operator=(const BSTR&); 65 operator BSTR() const { return m_bstr; } 67 BSTR release() { BSTR result = m_bstr; m_bstr = 0; return result; } 70 BSTR m_bstr; 75 bool operator ==(const BString&, BSTR); 76 bool operator !=(const BString&, BSTR); 77 bool operator ==(BSTR, const BString&) [all...] |
BString.cpp | 128 void BString::adoptBSTR(BSTR bstr) 132 m_bstr = bstr; 142 BString& BString::operator=(const BSTR& other) 154 if (SysStringLen((BSTR)a) != SysStringLen((BSTR)b)) 156 if (!(BSTR)a && !(BSTR)b) 158 if (!(BSTR)a || !(BSTR)b [all...] |
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebResource.idl | 57 HRESULT initWithData([in] IStream* data, [in] BSTR url, [in] BSTR mimeType, [in] BSTR textEncodingName, [in] BSTR frameName); 71 HRESULT URL([out, retval] BSTR* url); 78 HRESULT MIMEType([out, retval] BSTR* mime); 85 HRESULT textEncodingName([out, retval] BSTR* encodingName); 92 HRESULT frameName([out, retval] BSTR* name);
|
IWebURLResponse.idl | 50 HRESULT initWithURL([in] BSTR url, [in] BSTR mimeType, [in] int expectedContentLength, [in] BSTR textEncodingName); 55 HRESULT MIMEType([out, retval] BSTR* result); 60 HRESULT suggestedFilename([out, retval] BSTR* result); 65 HRESULT textEncodingName([out, retval] BSTR* result); 70 HRESULT URL([out, retval] BSTR* result);
|
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);
|
IWebMutableURLRequest.idl | 46 HRESULT addValue([in] BSTR value, [in] BSTR field); 71 HRESULT setHTTPMethod([in] BSTR method); 81 HRESULT setMainDocumentURL([in] BSTR theURL); 91 HRESULT setURL([in] BSTR theURL); 96 HRESULT setValue([in] BSTR value, [in] BSTR field);
|
DOMHTML.idl | 66 HRESULT namedItem([in] BSTR name, [out, retval] IDOMNode** node); 98 HRESULT namedItem([in] BSTR name, [out, retval] IDOMNode** result); 115 HRESULT title([out, retval] BSTR* result); 120 HRESULT setTitle([in] BSTR title); 125 HRESULT referrer([out, retval] BSTR* result); 130 HRESULT domain([out, retval] BSTR* result); 135 HRESULT URL([out, retval] BSTR* result); 175 HRESULT cookie([out, retval] BSTR* result); 180 HRESULT setCookie([in] BSTR cookie); 195 HRESULT write([in] BSTR text) [all...] |
IWebHistoryDelegate.idl | 45 HRESULT didPerformClientRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFrame* webFrame); 46 HRESULT didPerformServerRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFrame* webFrame); 47 HRESULT updateHistoryTitle([in] IWebView* webView, [in] BSTR title, [in] BSTR url);
|
IWebScriptObject.idl | 71 HRESULT throwException([in] BSTR exceptionMessage, [out, retval] BOOL* result); 82 HRESULT callWebScriptMethod([in] BSTR name, [in, size_is(cArgs)] const VARIANT args[], [in] int cArgs, [out, retval] VARIANT* result); 92 HRESULT evaluateWebScript([in] BSTR script, [out, retval] VARIANT* result); 100 HRESULT removeWebScriptKey([in] BSTR name); 109 HRESULT stringRepresentation([out, retval] BSTR* stringRepresentation); 136 HRESULT setException([in] BSTR description);
|
IWebUserContentURLPattern.idl | 38 HRESULT parse([in] BSTR patternString); 40 HRESULT scheme([out, retval] BSTR*); 41 HRESULT host([out, retval] BSTR*); 43 HRESULT matchesURL([in] BSTR url, [out, retval] BOOL* matches);
|
DOMCore.idl | 73 HRESULT hasFeature([in] BSTR feature, [in] BSTR version, [out, retval] BOOL* result); 78 HRESULT createDocumentType([in] BSTR qualifiedName, [in] BSTR publicId, [in] BSTR systemId, [out, retval] IDOMDocumentType** result); 83 HRESULT createDocument([in] BSTR namespaceURI, [in] BSTR qualifiedName, [in] IDOMDocumentType* doctype, [out, retval] IDOMDocument** result); 100 HRESULT nodeName([out, retval] BSTR* result); 105 HRESULT nodeValue([out, retval] BSTR* result); 110 HRESULT setNodeValue([in] BSTR value) [all...] |
DOMCSS.idl | 54 HRESULT getComputedStyle([in] IDOMElement* elt, [in] BSTR pseudoElt, [out, retval] IDOMCSSStyleDeclaration** result); 98 HRESULT cssText([out, retval] BSTR* text); 103 HRESULT setCssText([in] BSTR cssText); 130 HRESULT cssText([out, retval] BSTR* result); 135 HRESULT setCssText([in] BSTR cssText); 140 HRESULT getPropertyValue([in] BSTR propertyName, [out, retval] BSTR* result); 145 HRESULT getPropertyCSSValue([in] BSTR propertyName, [out, retval] IDOMCSSValue** result); 150 HRESULT removeProperty([in] BSTR propertyName, [out, retval] BSTR* result) [all...] |
/external/chromium/base/win/ |
scoped_bstr.h | 19 // Manages a BSTR string pointer. 26 // Constructor to create a new BSTR. 28 // NOTE: Do not pass a BSTR to this constructor expecting ownership to 33 // Give ScopedBstr ownership over an already allocated BSTR or NULL. 34 // If you need to allocate a new BSTR instance, use |allocate| instead. 35 void Reset(BSTR bstr = NULL); 37 // Releases ownership of the BSTR to the caller. 38 BSTR Release(); 40 // Creates a new BSTR from a 16-bit C-style string [all...] |
scoped_bstr.cc | 17 COMPILE_ASSERT(sizeof(ScopedBstr) == sizeof(BSTR), ScopedBstrSize); 21 void ScopedBstr::Reset(BSTR bstr) { 22 if (bstr != bstr_) { 25 bstr_ = bstr; 29 BSTR ScopedBstr::Release() { 30 BSTR bstr = bstr_; local 32 return bstr; 36 BSTR tmp = bstr_ [all...] |
/external/webkit/Source/WebKit/win/ |
WebURLProtectionSpace.h | 48 /* [out, retval] */ BSTR* result); 51 /* [out, retval] */ BSTR* result); 54 /* [in] */ BSTR host, 56 /* [in] */ BSTR protocol, 57 /* [in] */ BSTR realm, 58 /* [in] */ BSTR authenticationMethod); 61 /* [in] */ BSTR host, 63 /* [in] */ BSTR proxyType, 64 /* [in] */ BSTR realm, 65 /* [in] */ BSTR authenticationMethod) [all...] |
DOMCSSClasses.h | 51 /* [in] */ BSTR exceptionMessage, 55 /* [in] */ BSTR name, 61 /* [in] */ BSTR script, 65 /* [in] */ BSTR name) { return DOMObject::removeWebScriptKey(name); } 68 /* [retval][out] */ BSTR* stringRepresentation) { return DOMObject::stringRepresentation(stringRepresentation); } 79 /* [in] */ BSTR description) { return DOMObject::setException(description); } 83 /* [retval][out] */ BSTR *result); 86 /* [in] */ BSTR cssText); 89 /* [in] */ BSTR propertyName, 90 /* [retval][out] */ BSTR *result) [all...] |
WebScriptObject.h | 44 /* [in] */ BSTR exceptionMessage, 48 /* [in] */ BSTR name, 54 /* [in] */ BSTR script, 58 /* [in] */ BSTR name); 61 /* [retval][out] */ BSTR* stringRepresentation); 72 /* [in] */ BSTR description);
|
WebURLResponse.h | 52 /* [in] */ BSTR url, 53 /* [in] */ BSTR mimeType, 55 /* [in] */ BSTR textEncodingName); 58 /* [retval][out] */ BSTR *result); 61 /* [retval][out] */ BSTR *result); 64 /* [retval][out] */ BSTR *result); 67 /* [retval][out] */ BSTR *result); 75 /* [retval][out] */ BSTR *statusString); 90 HRESULT suggestedFileExtension(BSTR* result);
|
WebResource.h | 53 /* [in] */ BSTR url, 54 /* [in] */ BSTR mimeType, 55 /* [in] */ BSTR textEncodingName, 56 /* [in] */ BSTR frameName); 62 /* [retval][out] */ BSTR *url); 65 /* [retval][out] */ BSTR *mime); 68 /* [retval][out] */ BSTR *encodingName); 71 /* [retval][out] */ BSTR *name);
|
WebNotification.h | 34 static WebNotification* createInstance(BSTR name = 0, IUnknown* anObject = 0, IPropertyBag* userInfo = 0); 36 WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo); 47 /* [in] */ BSTR aName, 52 /* [retval][out] */ BSTR *result); 62 BSTR m_name;
|
DOMHTMLClasses.h | 53 /* [in] */ BSTR exceptionMessage, 57 /* [in] */ BSTR name, 63 /* [in] */ BSTR script, 67 /* [in] */ BSTR name) { return DOMObject::removeWebScriptKey(name); } 70 /* [retval][out] */ BSTR* stringRepresentation) { return DOMObject::stringRepresentation(stringRepresentation); } 81 /* [in] */ BSTR description) { return DOMObject::setException(description); } 92 /* [in] */ BSTR name, 111 /* [in] */ BSTR exceptionMessage, 115 /* [in] */ BSTR name, 121 /* [in] */ BSTR script [all...] |
DOMCSSClasses.cpp | 83 /* [retval][out] */ BSTR* /*result*/) 90 /* [in] */ BSTR cssText) 100 /* [in] */ BSTR propertyName, 101 /* [retval][out] */ BSTR* result) 112 /* [in] */ BSTR /*propertyName*/, 120 /* [in] */ BSTR /*propertyName*/, 121 /* [retval][out] */ BSTR* /*result*/) 128 /* [in] */ BSTR /*propertyName*/, 129 /* [retval][out] */ BSTR* /*result*/) 136 /* [in] */ BSTR propertyName [all...] |
/external/webkit/Source/JavaScriptCore/API/ |
JSStringRefBSTR.cpp | 34 JSStringRef JSStringCreateWithBSTR(BSTR string) 39 BSTR JSStringCopyBSTR(const JSStringRef string)
|
JSStringRefBSTR.h | 44 @abstract Creates a JavaScript string from a BSTR. 45 @param string The BSTR to copy into the new JSString. 48 JS_EXPORT JSStringRef JSStringCreateWithBSTR(const BSTR string); 52 @abstract Creates a BSTR from a JavaScript string. 53 @param string The JSString to copy into the new BSTR. 54 @result A BSTR containing string. Ownership follows the Create Rule. 56 JS_EXPORT BSTR JSStringCopyBSTR(const JSStringRef string);
|
/external/webkit/Tools/DumpRenderTree/win/ |
HistoryDelegate.h | 50 /* [in] */ BSTR sourceURL, 51 /* [in] */ BSTR destinationURL, 56 /* [in] */ BSTR sourceURL, 57 /* [in] */ BSTR destinationURL, 62 /* [in] */ BSTR title, 63 /* [in] */ BSTR url);
|