| /AOO41X/main/sfx2/inc/sfx2/ |
| H A D | minarray.hxx | 56 const T& GetObject( sal_uInt16 nPos ) const; \ 57 T& GetObject( sal_uInt16 nPos ); \ 59 void Insert( sal_uInt16 nPos, ARR& rIns, sal_uInt16 nStart = 0, sal_uInt16 nEnd = USHRT_MAX );\ 60 void Insert( sal_uInt16 nPos, const T& rElem );\ 61 void Insert( sal_uInt16 nPos, const T& rElems, sal_uInt16 nLen );\ 65 sal_uInt16 Remove( sal_uInt16 nPos, sal_uInt16 nLen );\ 69 const T& operator[]( sal_uInt16 nPos ) const;\ 70 T& operator[]( sal_uInt16 nPos );\ 76 inline void ARR::Insert( sal_uInt16 nPos, ARR& rIns, sal_uInt16 nStart, sal_uInt16 nEnd )\ 78 Insert( nPos, *(rIns.pData+(sizeof(T)*nStart)), nStart-nEnd+1 );\ [all …]
|
| /AOO41X/main/svl/source/numbers/ |
| H A D | zforfind.cxx | 170 xub_StrLen nPos, nLen; in TransformInput() local 171 for ( nPos = 0, nLen = rStr.Len(); nPos < nLen; ++nPos ) in TransformInput() 173 if ( 256 <= rStr.GetChar( nPos ) && in TransformInput() 174 pFormatter->GetCharClass()->isDigit( rStr, nPos ) ) in TransformInput() 177 if ( nPos < nLen ) in TransformInput() 194 xub_StrLen nPos = 0; in StringToDouble() local 198 while (nPos < nLen) in StringToDouble() 200 if (rStr.GetChar(nPos) == '.') in StringToDouble() 203 fNum = fNum * 10.0 + (double) (rStr.GetChar(nPos) - '0'); in StringToDouble() 206 fFrac = fFrac * 10.0 + (double) (rStr.GetChar(nPos) - '0'); in StringToDouble() [all …]
|
| H A D | zforscan.cxx | 492 xub_StrLen nPos = sString.Match(rColorWord); in GetColor() local 493 if (nPos > 0) in GetColor() 495 sStr.Erase(0, nPos); in GetColor() 506 sString.Erase(0, nPos); in GetColor() 536 short ImpSvNumberformatScan::GetKeyWord( const String& sSymbol, xub_StrLen nPos ) in GetKeyWord() argument 538 String sString = pFormatter->GetCharClass()->toUpper( sSymbol, nPos, sSymbol.Len() - nPos ); in GetKeyWord() 631 xub_StrLen& nPos, String& sSymbol ) in Next_Symbol() argument 637 const xub_StrLen nStart = nPos; in Next_Symbol() 641 while ( nPos < rStr.Len() && eState != SsStop ) in Next_Symbol() 643 sal_Unicode cToken = rStr.GetChar( nPos++ ); in Next_Symbol() [all …]
|
| /AOO41X/main/sax/source/tools/ |
| H A D | converter.cxx | 65 sal_Int32 nPos = 0; in convertMeasure() local 69 while( (nPos < nLen) && (rString[nPos] <= sal_Unicode(' ')) ) in convertMeasure() 70 nPos++; in convertMeasure() 72 if( nPos < nLen && sal_Unicode('-') == rString[nPos] ) in convertMeasure() 75 nPos++; in convertMeasure() 79 while( nPos < nLen && in convertMeasure() 80 sal_Unicode('0') <= rString[nPos] && in convertMeasure() 81 sal_Unicode('9') >= rString[nPos] ) in convertMeasure() 85 nVal += (rString[nPos] - sal_Unicode('0')); in convertMeasure() 86 nPos++; in convertMeasure() [all …]
|
| /AOO41X/main/svgio/source/svgreader/ |
| H A D | svgtools.cxx | 300 …void skip_char(const rtl::OUString& rCandidate, const sal_Unicode& rChar, sal_Int32& nPos, const s… in skip_char() argument 302 while(nPos < nLen && rChar == rCandidate[nPos]) in skip_char() 304 nPos++; in skip_char() 308 …ndidate, const sal_Unicode& rCharA, const sal_Unicode& rCharB, sal_Int32& nPos, const sal_Int32 nL… in skip_char() argument 310 while(nPos < nLen && (rCharA == rCandidate[nPos] || rCharB == rCandidate[nPos])) in skip_char() 312 nPos++; in skip_char() 316 …void copySign(const rtl::OUString& rCandidate, sal_Int32& nPos, rtl::OUStringBuffer& rTarget, cons… in copySign() argument 318 if(nPos < nLen) in copySign() 320 const sal_Unicode aChar(rCandidate[nPos]); in copySign() 325 nPos++; in copySign() [all …]
|
| /AOO41X/main/xmloff/source/draw/ |
| H A D | xexptran.cxx | 89 bool Imp_IsOnNumberChar(const OUString& rStr, const sal_Int32 nPos, bool bSignAllowed = true) in Imp_IsOnNumberChar() argument 91 sal_Unicode aChar(rStr[nPos]); in Imp_IsOnNumberChar() 101 bool Imp_IsOnUnitChar(const OUString& rStr, const sal_Int32 nPos) in Imp_IsOnUnitChar() argument 103 sal_Unicode aChar(rStr[nPos]); in Imp_IsOnUnitChar() 544 sal_Int32 nPos(0); in SetString() local 546 while(nPos < nLen) in SetString() 549 Imp_SkipSpaces(aStr, nPos, nLen); in SetString() 552 if(nPos < nLen) in SetString() 554 if(nPos == aStr.indexOf(aString_rotate, nPos)) in SetString() 557 nPos += 6; in SetString() [all …]
|
| /AOO41X/main/connectivity/source/drivers/ado/ |
| H A D | Awrapado.cxx | 1642 sal_Int32 nPos=0; in getExportedKeys() local 1644 varCriteria[nPos].setString(::comphelper::getString(catalog)); in getExportedKeys() 1646 hr = SafeArrayPutElement(psa,&nPos,&varCriteria[nPos]);nPos++;// TABLE_CATALOG in getExportedKeys() 1648 varCriteria[nPos].setString(schema); in getExportedKeys() 1649 hr = SafeArrayPutElement(psa,&nPos,&varCriteria[nPos]);nPos++;// TABLE_SCHEMA in getExportedKeys() 1651 varCriteria[nPos].setString(table); in getExportedKeys() 1652 hr = SafeArrayPutElement(psa,&nPos,&varCriteria[nPos]);nPos++;// TABLE_NAME in getExportedKeys() 1654 hr = SafeArrayPutElement(psa,&nPos,&varCriteria[nPos]);nPos++;// TABLE_CATALOG in getExportedKeys() 1655 hr = SafeArrayPutElement(psa,&nPos,&varCriteria[nPos]);nPos++;// TABLE_SCHEMA in getExportedKeys() 1656 hr = SafeArrayPutElement(psa,&nPos,&varCriteria[nPos]);nPos++;// TABLE_NAME in getExportedKeys() [all …]
|
| /AOO41X/main/sfx2/source/bastyp/ |
| H A D | minarray.cxx | 125 sal_uInt16 SfxPtrArr::Remove( sal_uInt16 nPos, sal_uInt16 nLen ) in Remove() argument 129 nLen = Min( (sal_uInt16)(nUsed-nPos), nLen ); in Remove() 154 if ( nPos > 0 ) in Remove() 156 DBG_ASSERT( nPos <= nNewSize, "" ); in Remove() 157 memmove( pNewData, pData, sizeof(void*)*nPos ); in Remove() 159 if ( nNewUsed != nPos ) in Remove() 160 memmove( pNewData+nPos, pData+nPos+nLen, in Remove() 161 sizeof(void*)*(nNewUsed-nPos) ); in Remove() 170 if ( nUsed-nPos-nLen > 0 ) in Remove() 171 memmove( pData+nPos, pData+nPos+nLen, (nUsed-nPos-nLen)*sizeof(void*) ); in Remove() [all …]
|
| /AOO41X/main/svtools/source/control/ |
| H A D | headbar.cxx | 197 long HeaderBar::ImplGetItemPos( sal_uInt16 nPos ) const in ImplGetItemPos() 200 for ( sal_uInt16 i = 0; i < nPos; i++ ) in ImplGetItemPos() 207 Rectangle HeaderBar::ImplGetItemRect( sal_uInt16 nPos ) const in ImplGetItemRect() 209 Rectangle aRect( ImplGetItemPos( nPos ), 0, 0, mnDY-1 ); in ImplGetItemRect() 210 aRect.Right() = aRect.Left() + mpItemList->GetObject( nPos )->mnSize - 1; in ImplGetItemRect() 220 long& nMouseOff, sal_uInt16& nPos ) const in ImplHitTest() 238 nPos = i-1; in ImplHitTest() 243 nPos = i; in ImplHitTest() 273 nPos = nCount-1; in ImplHitTest() 333 sal_uInt16 nPos, sal_Bool bHigh, sal_Bool bDrag, in ImplDrawItem() argument [all …]
|
| H A D | svxbox.cxx | 121 void SvxListBox::InsertEntry(const SvxBoxEntry& rEntry, sal_uInt16 nPos) in InsertEntry() argument 123 if(nPos != LISTBOX_ENTRY_NOTFOUND) in InsertEntry() 126 ListBox::InsertEntry(pEntry->aName, nPos); in InsertEntry() 128 aEntryLst.C40_INSERT(SvxBoxEntry, pEntry, nPos); in InsertEntry() 138 void SvxListBox::RemoveEntry(sal_uInt16 nPos) in RemoveEntry() argument 140 if(nPos >= aEntryLst.Count()) in RemoveEntry() 144 SvxBoxEntry* pEntry = aEntryLst[nPos]; in RemoveEntry() 145 aEntryLst.Remove(nPos, 1); in RemoveEntry() 146 ListBox::RemoveEntry(nPos); in RemoveEntry() 162 sal_uInt16 nPos = ListBox::GetEntryPos(rEntry.aName); in RemoveEntry() local [all …]
|
| /AOO41X/main/sc/source/ui/dbgui/ |
| H A D | csvruler.cxx | 184 void ScCsvRuler::MoveCursor( sal_Int32 nPos, bool bScroll ) in MoveCursor() argument 188 Execute( CSVCMD_MAKEPOSVISIBLE, nPos ); in MoveCursor() 189 Execute( CSVCMD_MOVERULERCURSOR, IsVisibleSplitPos( nPos ) ? nPos : CSV_POS_INVALID ); in MoveCursor() 238 sal_Int32 nPos = maSplits[ nIndex ]; in MoveCursorToSplit() local 239 if( nPos != CSV_POS_INVALID ) in MoveCursorToSplit() 240 MoveCursor( nPos ); in MoveCursorToSplit() 264 sal_Int32 ScCsvRuler::GetNoScrollPos( sal_Int32 nPos ) const in GetNoScrollPos() 266 sal_Int32 nNewPos = nPos; in GetNoScrollPos() 272 nNewPos = Max( nPos, GetFirstVisPos() + nScroll ); in GetNoScrollPos() 283 void ScCsvRuler::InsertSplit( sal_Int32 nPos ) in InsertSplit() argument [all …]
|
| /AOO41X/main/cppu/source/uno/ |
| H A D | sequence.cxx | 152 for ( sal_Int32 nPos = nStartIndex; nPos < nStopIndex; ++nPos ) in idefaultConstructElements() local 154 pElements[nPos] = 0.0; in idefaultConstructElements() 166 for ( sal_Int32 nPos = nStartIndex; nPos < nStopIndex; ++nPos ) in idefaultConstructElements() local 168 pElements[nPos] = 0.0; in idefaultConstructElements() 180 for ( sal_Int32 nPos = nStartIndex; nPos < nStopIndex; ++nPos ) in idefaultConstructElements() local 182 pElements[nPos] = 0; in idefaultConstructElements() 183 rtl_uString_new( &pElements[nPos] ); in idefaultConstructElements() 199 for ( sal_Int32 nPos = nStartIndex; nPos < nStopIndex; ++nPos ) in idefaultConstructElements() local 201 pElements[nPos] = _getVoidType(); in idefaultConstructElements() 213 for ( sal_Int32 nPos = nStartIndex; nPos < nStopIndex; ++nPos ) in idefaultConstructElements() local [all …]
|
| /AOO41X/main/i18npool/source/characterclassification/ |
| H A D | cclass_unicode.cxx | 65 cclass_Unicode::toUpper( const OUString& Text, sal_Int32 nPos, sal_Int32 nCount, const Locale& rLoc… in toUpper() argument 67 if (nPos >= len) in toUpper() 69 if (nCount + nPos > len) in toUpper() 70 nCount = len - nPos; in toUpper() 73 return trans->transliterateString2String(Text, nPos, nCount); in toUpper() 77 cclass_Unicode::toLower( const OUString& Text, sal_Int32 nPos, sal_Int32 nCount, const Locale& rLoc… in toLower() argument 79 if (nPos >= len) in toLower() 81 if (nCount + nPos > len) in toLower() 82 nCount = len - nPos; in toLower() 85 return trans->transliterateString2String(Text, nPos, nCount); in toLower() [all …]
|
| /AOO41X/main/vcl/source/window/ |
| H A D | toolbox2.cxx | 567 void ToolBox::InsertItem( const ResId& rResId, sal_uInt16 nPos ) in InsertItem() argument 647 …mpData->m_aItems.insert( (nPos < mpData->m_aItems.size()) ? mpData->m_aItems.begin()+nPos : mpData… in InsertItem() 654 …NewPos = sal::static_int_cast<sal_uInt16>(( nPos == TOOLBOX_APPEND ) ? ( mpData->m_aItems.size() -… in InsertItem() 661 ToolBoxItemBits nBits, sal_uInt16 nPos ) in InsertItem() argument 668 …mpData->m_aItems.insert( (nPos < mpData->m_aItems.size()) ? mpData->m_aItems.begin()+nPos : mpData… in InsertItem() 674 …NewPos = sal::static_int_cast<sal_uInt16>(( nPos == TOOLBOX_APPEND ) ? ( mpData->m_aItems.size() -… in InsertItem() 682 ToolBoxItemBits nBits, sal_uInt16 nPos ) in InsertItem() argument 689 …mpData->m_aItems.insert( (nPos < mpData->m_aItems.size()) ? mpData->m_aItems.begin()+nPos : mpData… in InsertItem() 695 …NewPos = sal::static_int_cast<sal_uInt16>(( nPos == TOOLBOX_APPEND ) ? ( mpData->m_aItems.size() -… in InsertItem() 702 ToolBoxItemBits nBits, sal_uInt16 nPos ) in InsertItem() argument [all …]
|
| H A D | status.cxx | 352 Rectangle StatusBar::ImplGetItemRectPos( sal_uInt16 nPos ) const in ImplGetItemRectPos() 356 pItem = mpItemList->GetObject( nPos ); in ImplGetItemRectPos() 379 for( sal_uInt16 nPos = 0; nPos < mpItemList->Count(); nPos++ ) in ImplGetFirstVisiblePos() local 381 pItem = mpItemList->GetObject( nPos ); in ImplGetFirstVisiblePos() 385 return nPos; in ImplGetFirstVisiblePos() 408 sal_uInt16 nPos = aStr.Search( _LF ); in ImplDrawText() local 409 if ( nPos != STRING_NOTFOUND ) in ImplDrawText() 410 aStr.Erase( nPos ); in ImplDrawText() 431 void StatusBar::ImplDrawItem( sal_Bool bOffScreen, sal_uInt16 nPos, sal_Bool bDrawText, sal_Bool bD… in ImplDrawItem() argument 433 Rectangle aRect = ImplGetItemRectPos( nPos ); in ImplDrawItem() [all …]
|
| /AOO41X/main/basic/source/sbx/ |
| H A D | sbxform.cxx | 173 sal_uInt16 nPos = sStrg.Search( cDecPoint ); in LeftShiftDecimalPoint() local 175 if( nPos!=STRING_NOTFOUND ) in LeftShiftDecimalPoint() 178 sStrg.SetChar( nPos, sStrg.GetChar( nPos - 1 ) ); in LeftShiftDecimalPoint() 179 sStrg.SetChar( nPos-1, cDecPoint ); in LeftShiftDecimalPoint() 187 void SbxBasicFormater::StrRoundDigit( String& sStrg, short nPos, sal_Bool& bOverflow ) in StrRoundDigit() argument 190 if( nPos<0 ) in StrRoundDigit() 195 sal_Unicode c = sStrg.GetChar( nPos ); in StrRoundDigit() 196 if( nPos>0 && (c == cDecPoint || c == cThousandSep) ) in StrRoundDigit() 198 StrRoundDigit( sStrg,nPos-1,bOverflow ); in StrRoundDigit() 208 while( nPos>=0 && (sStrg.GetChar( nPos )<ASCII_0 || sStrg.GetChar( nPos )>ASCII_9) ) in StrRoundDigit() [all …]
|
| /AOO41X/main/basegfx/source/polygon/ |
| H A D | b2dsvgpolypolygon.cxx | 59 sal_Int32 nPos(0); in importFromSvgD() local 65 ::basegfx::internal::lcl_skipSpaces(nPos, rSvgDStatement, nLen); in importFromSvgD() 67 while(nPos < nLen) in importFromSvgD() 70 const sal_Unicode aCurrChar(rSvgDStatement[nPos]); in importFromSvgD() 86 nPos++; in importFromSvgD() 87 ::basegfx::internal::lcl_skipSpaces(nPos, rSvgDStatement, nLen); in importFromSvgD() 130 nPos++; in importFromSvgD() 131 ::basegfx::internal::lcl_skipSpaces(nPos, rSvgDStatement, nLen); in importFromSvgD() 133 … while(nPos < nLen && ::basegfx::internal::lcl_isOnNumberChar(rSvgDStatement, nPos)) in importFromSvgD() 137 … if(!::basegfx::internal::lcl_importDoubleAndSpaces(nX, nPos, rSvgDStatement, nLen)) return false; in importFromSvgD() [all …]
|
| /AOO41X/main/svx/source/xoutdev/ |
| H A D | _xpoly.cxx | 212 void ImpXPolygon::InsertSpace( sal_uInt16 nPos, sal_uInt16 nCount ) in InsertSpace() argument 216 if ( nPos > nPoints ) in InsertSpace() 217 nPos = nPoints; in InsertSpace() 225 if( nPos < nPoints ) in InsertSpace() 227 sal_uInt16 nMove = nPoints - nPos; in InsertSpace() 228 memmove( &pPointAry[nPos+nCount], &pPointAry[nPos], in InsertSpace() 230 memmove( &pFlagAry[nPos+nCount], &pFlagAry[nPos], nMove ); in InsertSpace() 232 memset( &pPointAry[nPos], 0, nCount * sizeof( Point ) ); in InsertSpace() 233 memset( &pFlagAry [nPos], 0, nCount ); in InsertSpace() 249 void ImpXPolygon::Remove( sal_uInt16 nPos, sal_uInt16 nCount ) in Remove() argument [all …]
|
| /AOO41X/main/svx/source/dialog/ |
| H A D | svxruler.cxx | 209 sal_uInt16 nPos = pDebugWindow->GetLBox().InsertEntry(sContent); in AddDebugText() local 210 pDebugWindow->GetLBox().SelectEntryPos(nPos); in AddDebugText() 418 pIndents[nIn].nPos = 0; in SvxRuler() 437 pObjectBorders[nBorder].nPos = 0; in SvxRuler() 866 pBorders[i].nPos = in UpdateColumns() 909 pObjectBorders[0].nPos = in UpdateObject() 912 pObjectBorders[1].nPos = in UpdateObject() 915 pObjectBorders[2].nPos = in UpdateObject() 918 pObjectBorders[3].nPos = in UpdateObject() 957 pIndents[INDENT_FIRST_LINE].nPos = in UpdatePara() [all …]
|
| /AOO41X/main/connectivity/source/drivers/adabas/ |
| H A D | BDatabaseMetaData.cxx | 69 sal_Int32 nPos = 1; in impl_getTypeInfo_throw() local 70 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getString (1)); in impl_getTypeInfo_throw() 72 aRow[nPos-1]->setNull(); in impl_getTypeInfo_throw() 73 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getInt (2)); in impl_getTypeInfo_throw() 75 aRow[nPos-1]->setNull(); in impl_getTypeInfo_throw() 76 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getInt (3)); in impl_getTypeInfo_throw() 78 aRow[nPos-1]->setNull(); in impl_getTypeInfo_throw() 79 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getString (4)); in impl_getTypeInfo_throw() 81 aRow[nPos-1]->setNull(); in impl_getTypeInfo_throw() 82 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getString (5)); in impl_getTypeInfo_throw() [all …]
|
| /AOO41X/main/svl/source/misc/ |
| H A D | urihelper.cxx | 422 inline xub_StrLen nextChar(UniString const & rStr, xub_StrLen nPos) in nextChar() argument 424 return INetMIME::isHighSurrogate(rStr.GetChar(nPos)) in nextChar() 425 && rStr.Len() - nPos >= 2 in nextChar() 426 && INetMIME::isLowSurrogate(rStr.GetChar(nPos + 1)) ? in nextChar() 427 nPos + 2 : nPos + 1; in nextChar() 431 xub_StrLen nPos, xub_StrLen nEnd) in isBoundary1() argument 433 if (nPos == nEnd) in isBoundary1() 435 if (rCharClass.isLetterNumeric(rStr, nPos)) in isBoundary1() 437 switch (rStr.GetChar(nPos)) in isBoundary1() 453 xub_StrLen nPos, xub_StrLen nEnd) in isBoundary2() argument [all …]
|
| /AOO41X/main/xmloff/source/transform/ |
| H A D | TransformerBase.cxx | 498 sal_Int32 nPos = 0; in initialize() local 502 nPos = sRelPath.indexOf( '/', nPos + 1 ); in initialize() 504 while( -1 != nPos ); in initialize() 923 sal_Int32 nPos = rValue.getLength(); in ReplaceSingleInchWithIn() local 924 while( nPos && rValue[nPos-1] <= ' ' ) in ReplaceSingleInchWithIn() 925 --nPos; in ReplaceSingleInchWithIn() 926 if( nPos > 2 && in ReplaceSingleInchWithIn() 927 ('c'==rValue[nPos-2] || 'C'==rValue[nPos-2]) && in ReplaceSingleInchWithIn() 928 ('h'==rValue[nPos-1] || 'H'==rValue[nPos-1]) ) in ReplaceSingleInchWithIn() 930 rValue =rValue.copy( 0, nPos-2 ); in ReplaceSingleInchWithIn() [all …]
|
| /AOO41X/main/unotools/source/i18n/ |
| H A D | charclass.cxx | 172 sal_Bool CharClass::isAlpha( const String& rStr, xub_StrLen nPos ) const in isAlpha() 174 sal_Unicode c = rStr.GetChar( nPos ); in isAlpha() 181 return (xCC->getCharacterType( rStr, nPos, getLocale() ) & in isAlpha() 211 sal_Bool CharClass::isLetter( const String& rStr, xub_StrLen nPos ) const in isLetter() 213 sal_Unicode c = rStr.GetChar( nPos ); in isLetter() 220 return (xCC->getCharacterType( rStr, nPos, getLocale() ) & in isLetter() 250 sal_Bool CharClass::isDigit( const String& rStr, xub_StrLen nPos ) const in isDigit() 252 sal_Unicode c = rStr.GetChar( nPos ); in isDigit() 259 return (xCC->getCharacterType( rStr, nPos, getLocale() ) & in isDigit() 289 sal_Bool CharClass::isAlphaNumeric( const String& rStr, xub_StrLen nPos ) const in isAlphaNumeric() [all …]
|
| /AOO41X/main/cli_ure/source/uno_bridge/ |
| H A D | cli_uno.cxx | 88 for ( sal_Int32 nPos = 0; nPos < nParams; ++nPos ) in call_uno() local 90 typelib_MethodParameter const & param = pParams[ nPos ]; in call_uno() 93 uno_args[ nPos ] = &uno_args_mem[ nPos ]; in call_uno() 99 uno_args[ nPos ] = alloca( td.get()->nSize ); in call_uno() 108 uno_args[ nPos ],args[nPos] , type, false /* no assign */); in call_uno() 113 for (sal_Int32 n = 0; n < nPos; ++n) in call_uno() 134 for ( sal_Int32 nPos = 0; nPos < nParams; ++nPos ) in call_uno() local 136 typelib_MethodParameter const & param = pParams[ nPos ]; in call_uno() 143 &args[nPos], uno_args[nPos], param.pTypeRef, in call_uno() 144 argTypes != NULL ? argTypes[nPos] : NULL, false ); in call_uno() [all …]
|
| /AOO41X/main/dbaccess/source/ui/misc/ |
| H A D | DExport.cxx | 221 sal_Int32 nPos = 1; in ODatabaseExport() local 222 … OSL_ENSURE((nPos) < static_cast<sal_Int32>(aTypes.size()),"aTypes: Illegal index for vector"); in ODatabaseExport() 223 aValue.fill(nPos,aTypes[nPos],aNullable[nPos],xRow); in ODatabaseExport() 225 ++nPos; in ODatabaseExport() 226 … OSL_ENSURE((nPos) < static_cast<sal_Int32>(aTypes.size()),"aTypes: Illegal index for vector"); in ODatabaseExport() 227 aValue.fill(nPos,aTypes[nPos],aNullable[nPos],xRow); in ODatabaseExport() 229 ++nPos; in ODatabaseExport() 238 … OSL_ENSURE((nPos) < static_cast<sal_Int32>(aTypes.size()),"aTypes: Illegal index for vector"); in ODatabaseExport() 239 aValue.fill(nPos,aTypes[nPos],aNullable[nPos],xRow); in ODatabaseExport() 241 ++nPos; in ODatabaseExport() [all …]
|