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

  /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...]
  /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...]

Completed in 1027 milliseconds