Lines Matching refs:attr
184 OUString attr; in parseIt() local
187 attr = m_uri.getToken( 0, '&', len ); in parseIt()
188 OSL_TRACE( "chunk: %s\n", ::rtl::OUStringToOString( attr, in parseIt()
191 if( attr.matchAsciiL( RTL_CONSTASCII_STRINGPARAM( "language" ) ) in parseIt()
194 sal_Int32 len2 = attr.indexOf('='); in parseIt()
195 results.language = attr.copy( len2 + 1 ); in parseIt()
198 else if ( attr.matchAsciiL( RTL_CONSTASCII_STRINGPARAM( "location" ) ) in parseIt()
201 sal_Int32 len2 = attr.indexOf( '=' ); in parseIt()
202 results.location = attr.copy( len2 + 1 ); in parseIt()
205 else if ( attr.matchAsciiL( RTL_CONSTASCII_STRINGPARAM( "function" ) ) in parseIt()
208 sal_Int32 len2 = attr.indexOf( '=' ); in parseIt()
209 results.functionName = attr.copy( len2 + 1 ); in parseIt()