Lines Matching refs:nStart
103 sal_Int32 nStart = RTL_CONSTASCII_LENGTH( "<prop:" ); in createSerfPropName() local
104 sal_Int32 nLen = aFullName.indexOf( ' ' ) - nStart; in createSerfPropName()
105 rName.name = strdup( aFullName.copy( nStart, nLen ).getStr() ); in createSerfPropName()
107 nStart = aFullName.indexOf( '=', nStart + nLen ) + 2; // after =" in createSerfPropName()
108 nLen = aFullName.getLength() - RTL_CONSTASCII_LENGTH( "\">" ) - nStart; in createSerfPropName()
109 rName.nspace = strdup( aFullName.copy( nStart, nLen ).getStr() ); in createSerfPropName()
205 sal_Int32 nStart = RTL_CONSTASCII_LENGTH( "<prop:" ); in isUCBSpecialProperty() local
206 sal_Int32 nEnd = rFullName.indexOf( sal_Unicode( ' ' ), nStart ); in isUCBSpecialProperty()
210 rtl::OUString sPropName = rFullName.copy( nStart, nEnd - nStart ); in isUCBSpecialProperty()
218 nStart = nEnd + RTL_CONSTASCII_LENGTH( "xmlns:prop=\"" ); in isUCBSpecialProperty()
219 nEnd = rFullName.indexOf( sal_Unicode( '"' ), nStart ); in isUCBSpecialProperty()
223 rtl::OUString sNamesp = rFullName.copy( nStart, nEnd - nStart ); in isUCBSpecialProperty()