Home
last modified time | relevance | path

Searched refs:nChar (Results 51 – 75 of 154) sorted by relevance

1234567

/trunk/main/sfx2/source/doc/
H A Dobjcont.cxx844 sal_uInt16 nChar = 1; in Print() local
846 nStart + nChar < aStr.Len() && in Print()
848 aStr, nStart, nChar) < in Print()
850 ++nChar; in Print()
851 aTmp = String(aStr, nStart, nChar-1); in Print()
852 nIdx = nStart + nChar; in Print()
/trunk/main/xmloff/source/core/
H A Dxmluconv.cxx588 int lcl_gethex( int nChar ) in lcl_gethex() argument
590 if( nChar >= '0' && nChar <= '9' ) in lcl_gethex()
591 return nChar - '0'; in lcl_gethex()
592 else if( nChar >= 'a' && nChar <= 'f' ) in lcl_gethex()
593 return nChar - 'a' + 10; in lcl_gethex()
594 else if( nChar >= 'A' && nChar <= 'F' ) in lcl_gethex()
595 return nChar - 'A' + 10; in lcl_gethex()
/trunk/main/oox/source/dump/
H A Ddumperbase.cxx2645 sal_uInt8 nChar; in dumpChar() local
2646 *mxStrm >> nChar; in dumpChar()
2655 sal_uInt16 nChar; in dumpUnicode() local
2656 *mxStrm >> nChar; in dumpUnicode()
2657 sal_Unicode cChar = static_cast< sal_Unicode >( nChar ); in dumpUnicode()
2694 sal_uInt8 nChar; in dumpNullCharArray() local
2695 for( *mxStrm >> nChar; !mxStrm->isEof() && (nChar > 0); *mxStrm >> nChar ) in dumpNullCharArray()
2696 aBuffer.append( static_cast< sal_Char >( nChar ) ); in dumpNullCharArray()
2705 sal_uInt16 nChar; in dumpNullUnicodeArray() local
2706 for( *mxStrm >> nChar; !mxStrm->isEof() && (nChar > 0); *mxStrm >> nChar ) in dumpNullUnicodeArray()
[all …]
/trunk/main/basic/source/sbx/
H A Dsbxint.cxx47 nRes = p->nChar; break; in ImpGetInteger()
233 aTmp.pChar = &p->nChar; goto direct; in ImpPutInteger()
406 nRes = p->nChar; break; in ImpGetInt64()
535 aTmp.pChar = &p->nChar; goto direct; in ImpPutInt64()
694 nRes = p->nChar; break; in ImpGetUInt64()
838 aTmp.pChar = &p->nChar; goto direct; in ImpPutUInt64()
H A Dsbxulng.cxx42 nRes = p->nChar; in ImpGetULong()
168 aTmp.nChar = *p->pChar; goto ref; in ImpGetULong()
222 aTmp.pChar = &p->nChar; goto direct; in ImpPutULong()
H A Dsbxuint.cxx42 nRes = p->nChar; in ImpGetUShort()
190 aTmp.nChar = *p->pChar; goto ref; in ImpGetUShort()
258 aTmp.pChar = &p->nChar; goto direct; in ImpPutUShort()
/trunk/main/sw/source/filter/ww8/
H A Dww8par.cxx2807 sal_Unicode SwWW8ImplReader::TranslateToHindiNumbers(sal_Unicode nChar) in TranslateToHindiNumbers() argument
2809 if (nChar >= 0x0030 && nChar <= 0x0039) in TranslateToHindiNumbers()
2810 return nChar + 0x0630; in TranslateToHindiNumbers()
2812 return nChar; in TranslateToHindiNumbers()
4940 for (xub_StrLen nChar = 0; nChar < sPassword.Len(); ++nChar ) in InitXorWord95Codec() local
4941 pPassword[nChar] = sPassword.GetChar(nChar); in InitXorWord95Codec()
4964 for (xub_StrLen nChar = 0; nChar < nLen; ++nChar ) in InitXorWord95Codec() local
4965 pStd97Pass[nChar] = sUniPassword.GetChar(nChar); in InitXorWord95Codec()
4995 for (xub_StrLen nChar = 0; nChar < nLen; ++nChar ) in InitStd97Codec() local
4996 pPassword[nChar] = sUniPassword.GetChar(nChar); in InitStd97Codec()
/trunk/main/editeng/source/editeng/
H A Dimpedit2.cxx3961 sal_uInt16 nChar = 0xFFFF; in GetChar() local
3973 nChar = nCurIndex; in GetChar()
3986 nChar++; in GetChar()
3993 sal_uInt16 nTmpCurIndex = nChar - pLine->GetStart(); in GetChar()
4033 nChar = nChar + nOffset; in GetChar()
4036 if ( nChar && ( nChar < pParaPortion->GetNode()->Len() ) ) in GetChar()
4038 EditPaM aPaM( pParaPortion->GetNode(), nChar+1 ); in GetChar()
4047 if ( ( nLeft != nChar ) && ( nRight != nChar ) ) in GetChar()
4049nChar = ( Abs( nRight - nChar ) < Abs( nLeft - nChar ) ) ? nRight : nLeft; in GetChar()
4059 if ( nChar == 0xFFFF ) in GetChar()
[all …]
H A Dimpedit3.cxx2028 sal_uInt16 nChar; in ImpAdjustBlocks() local
2029 for ( nChar = nFirstChar; nChar <= nLastChar; nChar++ ) in ImpAdjustBlocks()
2031 if ( pNode->GetChar(nChar) == ' ' ) in ImpAdjustBlocks()
2036 aPositions.Insert( nChar, aPositions.Count() ); in ImpAdjustBlocks()
2083 nChar = aPositions[n]; in ImpAdjustBlocks()
2084 if ( nChar < nLastChar ) in ImpAdjustBlocks()
2098 for ( sal_uInt16 _n = nChar; _n < nPortionEnd; _n++ ) in ImpAdjustBlocks()
4487 sal_Unicode nChar = pString->GetChar( nIdx ); in ImplInitDigitMode() local
4488 if( (nChar < '0') || ('9' < nChar) ) in ImplInitDigitMode()
4490 nChar = (sal_Unicode)(nChar + nOffset); in ImplInitDigitMode()
[all …]
/trunk/main/odk/examples/DevelopersGuide/Forms/
H A DDataAwareness.java354 int nChar = aInput.read( ); in skipLineFeeds() local
355 while ( ( 13 == nChar ) || ( 10 == nChar ) ) in skipLineFeeds()
356 nChar = aInput.read( ); in skipLineFeeds()
362 return nChar; in skipLineFeeds()
/trunk/main/filter/source/flash/
H A Dswfwriter2.cxx446 sal_uInt16 FlashFont::getGlyph( sal_uInt16 nChar, VirtualDevice* pVDev ) in getGlyph() argument
449 std::map<sal_uInt16, sal_uInt16, ltuint16>::iterator aIter( maGlyphIndex.find(nChar) ); in getGlyph()
457 maGlyphIndex[nChar] = mnNextIndex; in getGlyph()
467 pVDev->GetTextOutline( aPolyPoly, nChar ); in getGlyph()
/trunk/main/sw/source/ui/config/
H A Dmodcfg.cxx191 sal_Unicode nVal, nChar; in ConvertWordDelimiter() local
194 for( n = 0, nChar = 0; n < 2 && i < rDelim.Len(); ++n, ++i ) in ConvertWordDelimiter()
209 (nChar <<= 4 ); in ConvertWordDelimiter()
210 nChar = nChar + nVal; in ConvertWordDelimiter()
213 sReturn += nChar; in ConvertWordDelimiter()
/trunk/main/connectivity/source/drivers/file/
H A DFDatabaseMetaData.cxx288 sal_Unicode nChar = aName.toChar(); in getTables() local
289 …n,aName.getStr(),'\0') && ( !bCheckEnabled || ( bCheckEnabled && ((nChar < '0' || nChar > '9')))) ) in getTables()
303 sal_Unicode nChar = aURL.getBase().getStr()[0]; in getTables() local
304 …tBase().getStr(),'\0') && ( !bCheckEnabled || ( bCheckEnabled && ((nChar < '0' || nChar > '9')))) ) in getTables()
/trunk/main/vcl/win/source/gdi/
H A Dsalgdi3.cxx1825 wchar_t nChar; in ImplAddKerningPairs() local
1844 (const char*)aBuf, nLen, &nChar, 1 ) ) in ImplAddKerningPairs()
1845 pTempPair->wFirst = nChar; in ImplAddKerningPairs()
1863 (const char*)aBuf, nLen, &nChar, 1 ) ) in ImplAddKerningPairs()
1864 pTempPair->wSecond = nChar; in ImplAddKerningPairs()
3015 sal_uInt32 nChar = pMap->GetFirstChar(); in GetGlyphWidths() local
3018 if( nChar < 0x00010000 ) in GetGlyphWidths()
3021 static_cast<sal_Ucs>(nChar), in GetGlyphWidths()
3024 rUnicodeEnc[ static_cast<sal_Unicode>(nChar) ] = nGlyph; in GetGlyphWidths()
3026 nChar = pMap->GetNextChar( nChar ); in GetGlyphWidths()
/trunk/main/sw/source/core/text/
H A Dfrminf.cxx153 SwTwips SwTxtFrmInfo::GetCharPos( xub_StrLen nChar, sal_Bool bCenter ) const in GetCharPos() argument
163 if( ((SwTxtCursor&)aLine).GetCharRect( &aRect, nChar ) ) in GetCharPos()
176 if( ((SwTxtCursor&)aLine).GetCharRect( &aRect, nChar+1 ) ) in GetCharPos()
H A Ditrtxt.cxx273 void SwTxtIter::CharToLine(const xub_StrLen nChar) in CharToLine() argument
275 while( nStart + pCurr->GetLen() <= nChar && Next() ) in CharToLine()
277 while( nStart > nChar && Prev() ) in CharToLine()
/trunk/main/vcl/inc/vcl/
H A Devent.hxx61 KeyEvent( xub_Unicode nChar, const KeyCode& rKeyCode,
85 inline KeyEvent::KeyEvent( xub_Unicode nChar, const KeyCode& rKeyCode, in KeyEvent() argument
90 mnCharCode = nChar; in KeyEvent()
/trunk/main/sw/source/core/doc/
H A Ddocstat.cxx43 nChar(0), in SwDocStat()
60 nChar = 0; in Reset()
/trunk/main/xmloff/source/draw/
H A Dximpcustomshape.cxx199 sal_Unicode nChar = rEquation[ nIndex ]; in GetEquationName() local
201 ( ( nChar >= 'a' ) && ( nChar <= 'z' ) ) in GetEquationName()
202 || ( ( nChar >= 'A' ) && ( nChar <= 'Z' ) ) in GetEquationName()
203 || ( ( nChar >= '0' ) && ( nChar <= '9' ) ) in GetEquationName()
/trunk/main/vcl/source/window/
H A Ddlgctrl.cxx1056 sal_Unicode nChar = 0; in getAccel() local
1062 nChar = rStr.GetChar( ++nPos ); in getAccel()
1064 nChar = 0; in getAccel()
1065 } while( nChar == '~' ); in getAccel()
1066 return nChar; in getAccel()
/trunk/main/automation/source/server/
H A Dsvcommstream.cxx38 ICommStream& SvCommStream::operator<<( comm_BOOL nChar ) { *pStream << nChar; return *this; } in operator <<() argument
/trunk/main/sc/source/filter/inc/
H A Dxlstring.hxx71 explicit inline XclFormatRun( sal_uInt16 nChar, sal_uInt16 nFontIdx ) : in XclFormatRun()
72 mnChar( nChar ), mnFontIdx( nFontIdx ) {} in XclFormatRun()
/trunk/main/sw/source/ui/dialog/
H A Dwordcountdialog.cxx89 aCurrentCharacterFI.SetText(String::CreateFromInt32(rCurrent.nChar )); in SetValues()
91 aDocCharacterFI.SetText( String::CreateFromInt32(rDoc.nChar )); in SetValues()
/trunk/main/toolkit/workben/layout/
H A Dwordcountdialog.cxx99 aCurrentCharacterFI.SetText(String::CreateFromInt32(rCurrent.nChar )); in SetValues()
101 aDocCharacterFI.SetText( String::CreateFromInt32(rDoc.nChar )); in SetValues()
/trunk/main/vcl/os2/source/gdi/
H A Dsalgdi3.cxx1793 sal_uInt32 nChar = pMap->GetFirstChar(); in GetGlyphWidths() local
1796 if( nChar < 0x00010000 ) in GetGlyphWidths()
1799 static_cast<sal_uInt16>(nChar), in GetGlyphWidths()
1802 rUnicodeEnc[ static_cast<sal_Unicode>(nChar) ] = nGlyph; in GetGlyphWidths()
1804 nChar = pMap->GetNextChar( nChar ); in GetGlyphWidths()

Completed in 246 milliseconds

1234567