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

  /external/chromium_org/base/win/
scoped_variant.cc 12 const VARIANT ScopedVariant::kEmptyVariant = { VT_EMPTY };
14 ScopedVariant::~ScopedVariant() {
15 COMPILE_ASSERT(sizeof(ScopedVariant) == sizeof(VARIANT), ScopedVariantSize);
19 ScopedVariant::ScopedVariant(const wchar_t* str) {
24 ScopedVariant::ScopedVariant(const wchar_t* str, UINT length) {
29 ScopedVariant::ScopedVariant(int value, VARTYPE vt)
    [all...]
scoped_variant.h 23 class BASE_EXPORT ScopedVariant {
29 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(const VARIANT& var)
    [all...]

Completed in 47 milliseconds