Home
last modified time | relevance | path

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

/trunk/main/comphelper/inc/comphelper/
H A Dflagguard.hxx40 …FlagRestorationGuard( bool& i_flagRef, bool i_temporaryValue, exc_handling i_excHandling = IGNORE_… in FlagRestorationGuard() argument
41 … :ScopeGuard( ::boost::bind( RestoreFlag, ::boost::ref( i_flagRef ), !!i_flagRef ), i_excHandling ) in FlagRestorationGuard()
43 i_flagRef = i_temporaryValue; in FlagRestorationGuard()
49 static void RestoreFlag( bool& i_flagRef, bool i_originalValue ) in RestoreFlag() argument
51 i_flagRef = i_originalValue; in RestoreFlag()
61 explicit FlagGuard( bool& i_flagRef, exc_handling i_excHandling = IGNORE_EXCEPTIONS ) in FlagGuard() argument
62 :ScopeGuard( ::boost::bind( ResetFlag, ::boost::ref( i_flagRef ) ), i_excHandling ) in FlagGuard()
64 i_flagRef = true; in FlagGuard()
70 static void ResetFlag( bool& i_flagRef ) in ResetFlag() argument
72 i_flagRef = false; in ResetFlag()

Completed in 5 milliseconds