HomeSort by relevance Sort by last modified time
    Searched defs:BSTR (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/platform/win/
BString.h 33 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...]
  /external/chromium/base/
scoped_bstr_win.h 13 // Manages a BSTR string pointer.
20 // Constructor to create a new BSTR.
21 // NOTE: Do not pass a BSTR to this constructor expecting ownership to
26 // Give ScopedBstr ownership over an already allocated BSTR or NULL.
27 // If you need to allocate a new BSTR instance, use |allocate| instead.
28 void Reset(BSTR bstr = NULL);
30 // Releases ownership of the BSTR to the caller.
31 BSTR Release();
33 // Creates a new BSTR from a wide string
    [all...]

Completed in 194 milliseconds