Lines Matching refs:current
501 rtl::OUString current,lang_,program,startid,title,heading,fulltext; in getStaticInformationForModule() local
511 current = rtl::OUString( lineBuffer,pos ); in getStaticInformationForModule()
513 if( current.compareToAscii( "Title",5 ) == 0 ) in getStaticInformationForModule()
515 title = current.copy( current.indexOf(sal_Unicode( '=' ) ) + 1 ); in getStaticInformationForModule()
517 else if( current.compareToAscii( "Start",5 ) == 0 ) in getStaticInformationForModule()
519 startid = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()
521 else if( current.compareToAscii( "Language",8 ) == 0 ) in getStaticInformationForModule()
523 lang_ = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()
525 else if( current.compareToAscii( "Program",7 ) == 0 ) in getStaticInformationForModule()
527 program = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()
529 else if( current.compareToAscii( "Heading",7 ) == 0 ) in getStaticInformationForModule()
531 heading = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()
533 else if( current.compareToAscii( "FullText",8 ) == 0 ) in getStaticInformationForModule()
535 fulltext = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()
537 else if( current.compareToAscii( "Order",5 ) == 0 ) in getStaticInformationForModule()
539 order = current.copy( current.indexOf('=') + 1 ); in getStaticInformationForModule()