Lines Matching refs:rInfo

1764 void OSelectionBrowseBox::AddGroupBy( const OTableFieldDescRef& rInfo , sal_uInt32 /*_nCurrentPos*/)  in AddGroupBy()  argument
1770 DBG_ASSERT(!rInfo->IsEmpty(),"AddGroupBy:: OTableFieldDescRef sollte nicht Empty sein!"); in AddGroupBy()
1787 if (bCase(aField,rInfo->GetField()) && in AddGroupBy()
1788 bCase(aAlias,rInfo->GetAlias()) && in AddGroupBy()
1789 pEntry->GetFunctionType() == rInfo->GetFunctionType() && in AddGroupBy()
1790 pEntry->GetFunction() == rInfo->GetFunction()) in AddGroupBy()
1792 if ( pEntry->isNumericOrAggreateFunction() && rInfo->IsGroupBy() ) in AddGroupBy()
1802 pEntry->SetGroupBy(rInfo->IsGroupBy()); in AddGroupBy()
1814 OTableFieldDescRef pTmp = InsertField(rInfo, BROWSER_INVALIDID, sal_False, sal_False ); in AddGroupBy()
1815 …if ( (pTmp->isNumericOrAggreateFunction() && rInfo->IsGroupBy()) ) // das GroupBy wird bereits von… in AddGroupBy()
1846 void OSelectionBrowseBox::AddCondition( const OTableFieldDescRef& rInfo, const String& rValue, cons… in AddCondition() argument
1852 …DBG_ASSERT(rInfo.isValid() && !rInfo->IsEmpty(),"AddCondition:: OTableFieldDescRef sollte nicht Em… in AddCondition()
1867 if (bCase(aField,rInfo->GetField()) && in AddCondition()
1868 bCase(aAlias,rInfo->GetAlias()) && in AddCondition()
1869 pEntry->GetFunctionType() == rInfo->GetFunctionType() && in AddCondition()
1870 pEntry->GetFunction() == rInfo->GetFunction() && in AddCondition()
1871 pEntry->IsGroupBy() == rInfo->IsGroupBy() ) in AddCondition()
1873 if ( pEntry->isNumericOrAggreateFunction() && rInfo->IsGroupBy() ) in AddCondition()
1923 OTableFieldDescRef pTmp = InsertField(rInfo, BROWSER_INVALIDID, sal_False, sal_False ); in AddCondition()
1924 …if ( pTmp->isNumericOrAggreateFunction() && rInfo->IsGroupBy() ) // das GroupBy wird bereits von r… in AddCondition()
1940 void OSelectionBrowseBox::AddOrder( const OTableFieldDescRef& rInfo, const EOrderDir eDir, sal_uInt… in AddOrder() argument
1946 DBG_ASSERT(!rInfo->IsEmpty(),"AddOrder:: OTableFieldDescRef sollte nicht Empty sein!"); in AddOrder()
1961 if (bCase(aField,rInfo->GetField()) && in AddOrder()
1962 bCase(aAlias,rInfo->GetAlias())) in AddOrder()
1980 OTableFieldDescRef pTmp = InsertField(rInfo, BROWSER_INVALIDID, sal_False, sal_False ); in AddOrder()
2864 …nBrowseBox::HasFieldByAliasName(const ::rtl::OUString& rFieldName, OTableFieldDescRef& rInfo) const in HasFieldByAliasName()
2874 rInfo.getBody() = (*aIter).getBody(); in HasFieldByAliasName()