/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/view/text/ |
H A D | TextEditDialog.java | 80 int nBack = 0; in UpdateText() local 81 while ((nBack < nMinLength) && in UpdateText() 82 (sNew.charAt(sNew.length()-nBack-1) == in UpdateText() 83 sOld.charAt(sOld.length()-nBack-1) )) in UpdateText() 84 nBack++; in UpdateText() 85 if (nFront + nBack > nMinLength) in UpdateText() 86 nBack = nMinLength - nFront; in UpdateText() 90 String sDel = sOld.substring (nFront, sOld.length() - nBack); in UpdateText() 91 String sIns = sNew.substring (nFront, sNew.length() - nBack); in UpdateText() 96 sOld.substring(sOld.length() - nBack)); in UpdateText() [all …]
|
/trunk/main/toolkit/test/accessibility/ |
H A D | TextUpdateListener.java | 121 int nBack = 0; in updateText() local 122 while( (nBack < nMinLength) && in updateText() 123 ( sNew.charAt(sNew.length()-nBack-1) == in updateText() 124 sOld.charAt(sOld.length()-nBack-1) ) ) in updateText() 125 nBack++; in updateText() 126 if( nFront + nBack > nMinLength ) in updateText() 127 nBack = nMinLength - nFront; in updateText() 131 String sDel = sOld.substring( nFront, sOld.length() - nBack ); in updateText() 132 String sIns = sNew.substring( nFront, sNew.length() - nBack ); in updateText() 137 sOld.substring(sOld.length() - nBack) ); in updateText() [all …]
|
H A D | AccessibleTextHandler.java | 651 int nBack = 0; in updateText() local 652 while( (nBack < nMinLength) && in updateText() 653 ( sNew.charAt(sNew.length()-nBack-1) == in updateText() 654 sOld.charAt(sOld.length()-nBack-1) ) ) in updateText() 655 nBack++; in updateText() 656 if( nFront + nBack > nMinLength ) in updateText() 657 nBack = nMinLength - nFront; in updateText() 661 String sDel = sOld.substring( nFront, sOld.length() - nBack ); in updateText() 662 String sIns = sNew.substring( nFront, sNew.length() - nBack ); in updateText() 667 sOld.substring(sOld.length() - nBack) ); in updateText() [all …]
|
/trunk/main/sc/source/filter/lotus/ |
H A D | lotattr.cxx | 187 sal_uInt8 nBack = rAttr.nBack & 0x1F; in GetPattAttr() local 188 if( nBack ) in GetPattAttr() 189 rItemSet.Put( SvxBrushItem( GetColor( nBack & 0x07 ), ATTR_BACKGROUND ) ); in GetPattAttr() 191 if( rAttr.nBack & 0x80 ) in GetPattAttr()
|
/trunk/main/writerfilter/source/dmapper/ |
H A D | CellColorHandler.cxx | 216 sal_Int32 nBack = m_nFillColor; in getProperties() local 221 nRed += ((nBack & 0xff0000)>>0x10) * (1000L - nWW8BrushStyle); in getProperties() 222 nGreen += ((nBack & 0xff00)>>0x8)* (1000L - nWW8BrushStyle); in getProperties() 223 nBlue += (nBack & 0xff) * (1000L - nWW8BrushStyle); in getProperties()
|
/trunk/main/sc/source/filter/inc/ |
H A D | lotattr.hxx | 48 sal_uInt8 nBack; member 57 return ( nFont || nLineStyle || nFontCol || ( nBack & 0x7F ) ); in HasStyles() 64 return ( nBack & 0x80 ); in IsCentered() 100 ( ( sal_uInt8* ) &rOut )[ 3 ] = rAttr.nBack; in MakeHash()
|
H A D | lotimpop.hxx | 153 *pIn >> r.nFont >> r.nFontCol >> r.nBack >> r.nLineStyle; in Read()
|
H A D | ftools.hxx | 277 static sal_uInt8 GetMixedColorComp( sal_uInt8 nFore, sal_uInt8 nBack, sal_uInt8 nTrans );
|
/trunk/main/tools/source/stream/ |
H A D | stream.cxx | 1152 sal_sSize nBack = sizeof(nFlag); in StartReadingUnicodeText() local 1160 nBack = 0; in StartReadingUnicodeText() 1168 nBack = 0; in StartReadingUnicodeText() 1189 nBack += sizeof(nChar); in StartReadingUnicodeText() 1192 nBack = 0; // it is UTF-8 in StartReadingUnicodeText() 1194 if (nBack) in StartReadingUnicodeText() 1195 SeekRel( -nBack ); // no BOM, pure data in StartReadingUnicodeText()
|
/trunk/main/sw/source/filter/ww8/ |
H A D | ww8par6.cxx | 4695 ColorData nBack(SwWW8ImplReader::GetCol(b)); in SwWW8Shade() local 4699 SetShade(nFore, nBack, b); in SwWW8Shade() 4702 void SwWW8Shade::SetShade(ColorData nFore, ColorData nBack, sal_uInt16 nIndex) in SetShade() argument 4783 ColorData nUseBack = nBack; in SetShade() 4796 aColor.SetColor( nBack ); in SetShade() 4876 sal_uInt32 nBack = wwUtility::BGRToRGB(SVBT32ToUInt32(rpData)); in ExtractColour() local 4882 if (nBack == 0xFF000000) in ExtractColour() 4883 nBack = COL_AUTO; in ExtractColour() 4884 ASSERT(nBack == COL_AUTO || !(nBack & 0xFF000000), in ExtractColour() 4886 SwWW8Shade aShade(nFore, nBack, nIndex); in ExtractColour()
|
H A D | ww8par.hxx | 552 SwWW8Shade(ColorData nFore, ColorData nBack, sal_uInt16 nIndex) in SwWW8Shade() argument 554 SetShade(nFore, nBack, nIndex); in SwWW8Shade() 557 void SetShade(ColorData nFore, ColorData nBack, sal_uInt16 nIndex);
|
/trunk/main/sc/source/filter/ftools/ |
H A D | ftools.cxx | 140 sal_uInt8 ScfTools::GetMixedColorComp( sal_uInt8 nFore, sal_uInt8 nBack, sal_uInt8 nTrans ) in GetMixedColorComp() argument 142 sal_Int32 nTemp = ((static_cast< sal_Int32 >( nBack ) - nFore) * nTrans) / 0x80 + nFore; in GetMixedColorComp()
|
/trunk/main/sc/source/ui/vba/ |
H A D | vbainterior.cxx | 251 ScVbaInterior::GetMixedColorComp( sal_uInt8 nFore, sal_uInt8 nBack, sal_uInt8 nTrans ) in GetMixedColorComp() argument 253 sal_uInt32 nTemp = ((static_cast< sal_Int32 >( nBack ) - nFore) * nTrans) / 0x80 + nFore; in GetMixedColorComp()
|
H A D | vbainterior.hxx | 56 sal_uInt8 GetMixedColorComp( sal_uInt8 nFore, sal_uInt8 nBack, sal_uInt8 nTrans );
|
/trunk/main/svtools/source/contnr/ |
H A D | imivctl1.cxx | 3284 sal_uLong nBack = GetEntryListPos( pEnd ); in SelectRange() local 3285 sal_uLong nFirst = std::min( nFront, nBack ); in SelectRange() 3286 sal_uLong nLast = std::max( nFront, nBack ); in SelectRange()
|