Searched defs:ScopedVariant (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/base/win/
H A Dscoped_variant.h23 class BASE_EXPORT ScopedVariant { class in namespace:base::win
29 ScopedVariant() { function in class:base::win::ScopedVariant
37 explicit ScopedVariant(const wchar_t* str);
40 ScopedVariant(const wchar_t* str, UINT length);
44 explicit ScopedVariant(int value, VARTYPE vt = VT_I4);
48 explicit ScopedVariant(double value, VARTYPE vt = VT_R8);
51 explicit ScopedVariant(IDispatch* dispatch);
54 explicit ScopedVariant(IUnknown* unknown);
57 explicit ScopedVariant(SAFEARRAY* safearray);
60 explicit ScopedVariant(cons
[all...]
H A Dscoped_variant.cc12 const VARIANT ScopedVariant::kEmptyVariant = { VT_EMPTY };
14 ScopedVariant::~ScopedVariant() {
15 COMPILE_ASSERT(sizeof(ScopedVariant) == sizeof(VARIANT), ScopedVariantSize);
19 ScopedVariant::ScopedVariant(const wchar_t* str) { function in class:base::win::ScopedVariant
24 ScopedVariant::ScopedVariant(const wchar_t* str, UINT length) { function in class:base::win::ScopedVariant
29 ScopedVariant::ScopedVariant(in function in class:base::win::ScopedVariant
34 ScopedVariant::ScopedVariant(double value, VARTYPE vt) { function in class:base::win::ScopedVariant
40 ScopedVariant::ScopedVariant(IDispatch* dispatch) { function in class:base::win::ScopedVariant
45 ScopedVariant::ScopedVariant(IUnknown* unknown) { function in class:base::win::ScopedVariant
50 ScopedVariant::ScopedVariant(SAFEARRAY* safearray) { function in class:base::win::ScopedVariant
55 ScopedVariant::ScopedVariant(const VARIANT& var) { function in class:base::win::ScopedVariant
[all...]

Completed in 58 milliseconds