Home
last modified time | relevance | path

Searched refs:mbHasValue (Results 1 – 3 of 3) sorted by relevance

/trunk/main/oox/inc/oox/helper/
H A Dhelper.hxx197 inline explicit OptValue() : maValue(), mbHasValue( false ) {} in OptValue()
198 inline explicit OptValue( const Type& rValue ) : maValue( rValue ), mbHasValue( true ) {} in OptValue()
201 inline bool has() const { return mbHasValue; } in has()
202 inline bool operator!() const { return !mbHasValue; } in operator !()
203 …inline bool differsFrom( const Type& rValue ) const { return mbHasValue && (maValue != rVa… in differsFrom()
206 …inline const Type& get( const Type& rDefValue ) const { return mbHasValue ? maValue : rDefValue; } in get()
208 inline void reset() { mbHasValue = false; } in reset()
209 inline void set( const Type& rValue ) { maValue = rValue; mbHasValue = true; } in set()
210 inline Type& use() { mbHasValue = true; return maValue; } in use()
213 …inline void assignIfUsed( const OptValue& rValue ) { if( rValue.mbHasValue ) set( rValue.m… in assignIfUsed()
[all …]
/trunk/main/sc/source/core/data/
H A Ddpcachetable.cxx75 mbHasValue(false) in FilterItem()
91 maItem.mbHasValue = bHasValue; in SingleFilter()
111 return maItem.mbHasValue; in hasValue()
137 aItem.mbHasValue = bHasValue; in addMatchItem()
/trunk/main/sc/inc/
H A Ddpcachetable.hxx79 bool mbHasValue; member

Completed in 27 milliseconds