Searched refs:i_rIniLine (Results 1 – 1 of 1) sorted by relevance
104 …static bool lcl_extractCompDesc( const ::rtl::OUString& i_rIniLine, ::rtl::OUString& o_rStorName, … in lcl_extractCompDesc() argument106 const sal_Int32 nEqualSignPos = i_rIniLine.indexOf( sal_Unicode( '=' ) ); in lcl_extractCompDesc()112 o_rStorName = i_rIniLine.copy( 0, nEqualSignPos ); in lcl_extractCompDesc()114 const sal_Int32 nCommaPos = i_rIniLine.lastIndexOf( sal_Unicode( ',' ) ); in lcl_extractCompDesc()115 if ( nCommaPos != i_rIniLine.getLength() - 2 ) in lcl_extractCompDesc()120 o_rCompDesc.sName = i_rIniLine.copy( nEqualSignPos + 1, nCommaPos - nEqualSignPos - 1 ); in lcl_extractCompDesc()121 o_rCompDesc.bForEditing = ( i_rIniLine.getStr()[ nCommaPos + 1 ] == '1' ); in lcl_extractCompDesc()172 …static bool lcl_isSectionStart( const ::rtl::OUString& i_rIniLine, ::rtl::OUString& o_rSectionName… in lcl_isSectionStart() argument174 const sal_Int32 nLen = i_rIniLine.getLength(); in lcl_isSectionStart()175 …if ( ( nLen > 0 ) && ( i_rIniLine.getStr()[0] == '[' ) && ( i_rIniLine.getStr()[ nLen - 1 ] == ']'… in lcl_isSectionStart()[all …]
Completed in 30 milliseconds