Home | History | Annotate | Download | only in win

Lines Matching defs:const

27   static const VARIANT kEmptyVariant;
38 explicit ScopedVariant(const wchar_t* str);
41 explicit ScopedVariant(const wchar_t* str, UINT length);
61 explicit ScopedVariant(const VARIANT& var);
65 inline VARTYPE type() const {
70 void Reset(const VARIANT& var = kEmptyVariant);
79 VARIANT Copy() const;
83 int Compare(const VARIANT& var, bool ignore_case = false) const;
91 void Set(const wchar_t* str);
109 void Set(const VARIANT& var);
122 // Allows const access to the contained variant without DCHECKs etc.
126 const VARIANT* operator&() const {
132 ScopedVariant& operator=(const VARIANT& var);
136 // but the function prototype requires a non const variant pointer.
138 VARIANT* AsInput() const {
139 // The nature of this function is const, so we declare
145 // or by const reference.
146 operator const VARIANT&() const {
159 bool operator==(const ScopedVariant& var) const;
160 bool operator!=(const ScopedVariant& var) const;