Lines Matching refs:lhs

35 ORowSetValue OOp_DayOfWeek::operate(const ORowSetValue& lhs) const  in operate()
37 if ( lhs.isNull() ) in operate()
38 return lhs; in operate()
41 ::com::sun::star::util::Date aD = lhs; in operate()
73 ORowSetValue OOp_DayOfMonth::operate(const ORowSetValue& lhs) const in operate()
75 if ( lhs.isNull() ) in operate()
76 return lhs; in operate()
78 ::com::sun::star::util::Date aD = lhs; in operate()
82 ORowSetValue OOp_DayOfYear::operate(const ORowSetValue& lhs) const in operate()
84 if ( lhs.isNull() ) in operate()
85 return lhs; in operate()
87 ::com::sun::star::util::Date aD = lhs; in operate()
92 ORowSetValue OOp_Month::operate(const ORowSetValue& lhs) const in operate()
94 if ( lhs.isNull() ) in operate()
95 return lhs; in operate()
97 ::com::sun::star::util::Date aD = lhs; in operate()
101 ORowSetValue OOp_DayName::operate(const ORowSetValue& lhs) const in operate()
103 if ( lhs.isNull() ) in operate()
104 return lhs; in operate()
107 ::com::sun::star::util::Date aD = lhs; in operate()
139 ORowSetValue OOp_MonthName::operate(const ORowSetValue& lhs) const in operate()
141 if ( lhs.isNull() ) in operate()
142 return lhs; in operate()
145 ::com::sun::star::util::Date aD = lhs; in operate()
188 ORowSetValue OOp_Quarter::operate(const ORowSetValue& lhs) const in operate()
190 if ( lhs.isNull() ) in operate()
191 return lhs; in operate()
194 ::com::sun::star::util::Date aD = lhs; in operate()
205 ORowSetValue OOp_Week::operate(const ::std::vector<ORowSetValue>& lhs) const in operate()
207 if ( lhs.empty() || lhs.size() > 2 ) in operate()
210 size_t nSize = lhs.size(); in operate()
212 ::com::sun::star::util::Date aD = lhs[nSize-1]; in operate()
216 if ( nSize == 2 && !lhs[0].isNull() ) in operate()
217 nStartDay = lhs[0]; in operate()
222 ORowSetValue OOp_Year::operate(const ORowSetValue& lhs) const in operate()
224 if ( lhs.isNull() ) in operate()
225 return lhs; in operate()
227 ::com::sun::star::util::Date aD = lhs; in operate()
231 ORowSetValue OOp_Hour::operate(const ORowSetValue& lhs) const in operate()
233 if ( lhs.isNull() ) in operate()
234 return lhs; in operate()
236 ::com::sun::star::util::Time aT = lhs; in operate()
240 ORowSetValue OOp_Minute::operate(const ORowSetValue& lhs) const in operate()
242 if ( lhs.isNull() ) in operate()
243 return lhs; in operate()
245 ::com::sun::star::util::Time aT = lhs; in operate()
249 ORowSetValue OOp_Second::operate(const ORowSetValue& lhs) const in operate()
251 if ( lhs.isNull() ) in operate()
252 return lhs; in operate()
254 ::com::sun::star::util::Time aT = lhs; in operate()
258 ORowSetValue OOp_CurDate::operate(const ::std::vector<ORowSetValue>& lhs) const in operate()
260 if ( !lhs.empty() ) in operate()
267 ORowSetValue OOp_CurTime::operate(const ::std::vector<ORowSetValue>& lhs) const in operate()
269 if ( !lhs.empty() ) in operate()
276 ORowSetValue OOp_Now::operate(const ::std::vector<ORowSetValue>& lhs) const in operate()
278 if ( !lhs.empty() ) in operate()