Lines Matching refs:rOpt

79 	inline void		CopyTo(ScDocOptions& rOpt);
81 inline const ScDocOptions& operator=( const ScDocOptions& rOpt );
82 inline int operator==( const ScDocOptions& rOpt ) const;
83 inline int operator!=( const ScDocOptions& rOpt ) const;
99 inline void ScDocOptions::CopyTo(ScDocOptions& rOpt) in CopyTo() argument
101 rOpt.bIsIgnoreCase = bIsIgnoreCase; in CopyTo()
102 rOpt.bIsIter = bIsIter; in CopyTo()
103 rOpt.nIterCount = nIterCount; in CopyTo()
104 rOpt.fIterEps = fIterEps; in CopyTo()
105 rOpt.nPrecStandardFormat = nPrecStandardFormat; in CopyTo()
106 rOpt.nDay = nDay; in CopyTo()
107 rOpt.nMonth = nMonth; in CopyTo()
108 rOpt.nYear2000 = nYear2000; in CopyTo()
109 rOpt.nYear = nYear; in CopyTo()
110 rOpt.nTabDistance = nTabDistance; in CopyTo()
111 rOpt.bCalcAsShown = bCalcAsShown; in CopyTo()
112 rOpt.bMatchWholeCell = bMatchWholeCell; in CopyTo()
113 rOpt.bDoAutoSpell = bDoAutoSpell; in CopyTo()
114 rOpt.bLookUpColRowNames = bLookUpColRowNames; in CopyTo()
115 rOpt.bFormulaRegexEnabled = bFormulaRegexEnabled; in CopyTo()
139 inline int ScDocOptions::operator==( const ScDocOptions& rOpt ) const in operator ==()
142 rOpt.bIsIgnoreCase == bIsIgnoreCase in operator ==()
143 && rOpt.bIsIter == bIsIter in operator ==()
144 && rOpt.nIterCount == nIterCount in operator ==()
145 && rOpt.fIterEps == fIterEps in operator ==()
146 && rOpt.nPrecStandardFormat == nPrecStandardFormat in operator ==()
147 && rOpt.nDay == nDay in operator ==()
148 && rOpt.nMonth == nMonth in operator ==()
149 && rOpt.nYear == nYear in operator ==()
150 && rOpt.nYear2000 == nYear2000 in operator ==()
151 && rOpt.nTabDistance == nTabDistance in operator ==()
152 && rOpt.bCalcAsShown == bCalcAsShown in operator ==()
153 && rOpt.bMatchWholeCell == bMatchWholeCell in operator ==()
154 && rOpt.bDoAutoSpell == bDoAutoSpell in operator ==()
155 && rOpt.bLookUpColRowNames == bLookUpColRowNames in operator ==()
156 && rOpt.bFormulaRegexEnabled == bFormulaRegexEnabled in operator ==()
160 inline int ScDocOptions::operator!=( const ScDocOptions& rOpt ) const in operator !=()
162 return !(operator==(rOpt)); in operator !=()
175 const ScDocOptions& rOpt );