OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ScopedVariant
(Results
1 - 4
of
4
) sorted by null
/external/chromium/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
24
class BASE_API
ScopedVariant
{
30
ScopedVariant
() {
38
explicit
ScopedVariant
(const wchar_t* str);
41
explicit
ScopedVariant
(const wchar_t* str, UINT length);
45
explicit
ScopedVariant
(int value, VARTYPE vt = VT_I4);
49
explicit
ScopedVariant
(double value, VARTYPE vt = VT_R8);
52
explicit
ScopedVariant
(IDispatch* dispatch);
55
explicit
ScopedVariant
(IUnknown* unknown);
58
explicit
ScopedVariant
(SAFEARRAY* safearray);
61
explicit
ScopedVariant
(const VARIANT& var)
[
all
...]
/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 43 milliseconds