Lines Matching refs:aMatchString

366         ::rtl::OUString aMatchString;  in whereAnalysis()
368 aMatchString = pRHS->getTokenValue(); in whereAnalysis()
370 aMatchString = pRHS->getChild( 0 )->getTokenValue(); in whereAnalysis()
372 pResult = createTest( aColumnName, E_BOOK_QUERY_IS, aMatchString ); in whereAnalysis()
403 rtl::OUString aMatchString; in whereAnalysis() local
404 aMatchString = pAtom->getTokenValue(); in whereAnalysis()
407 if( aMatchString.equals( ::rtl::OUString::valueOf( WILDCARD ) ) ) in whereAnalysis()
413 else if( aMatchString.indexOf( WILDCARD ) == -1 ) in whereAnalysis()
415 EVO_TRACE_STRING( "Plain contains '%s'", aMatchString ); in whereAnalysis()
416 pResult = createTest( aColumnName, E_BOOK_QUERY_CONTAINS, aMatchString ); in whereAnalysis()
425 else if( (aMatchString.indexOf ( WILDCARD ) == aMatchString.lastIndexOf ( WILDCARD ) ) ) in whereAnalysis()
427 if ( aMatchString.indexOf ( WILDCARD ) == 0 ) in whereAnalysis()
428 pResult = createTest( aColumnName, E_BOOK_QUERY_ENDS_WITH, aMatchString.copy( 1 ) ); in whereAnalysis()
429 else if ( aMatchString.indexOf ( WILDCARD ) == aMatchString.getLength() - 1 ) in whereAnalysis()
430 …pResult = createTest( aColumnName, E_BOOK_QUERY_BEGINS_WITH, aMatchString.copy( 0, aMatchString.ge… in whereAnalysis()
437 else if( aMatchString.getLength() >= 3 && in whereAnalysis()
438 aMatchString.indexOf ( WILDCARD ) == 0 && in whereAnalysis()
439 aMatchString.indexOf ( WILDCARD, 1) == aMatchString.getLength() - 1 ) { in whereAnalysis()
441 …pResult = createTest( aColumnName, E_BOOK_QUERY_CONTAINS, aMatchString.copy (1, aMatchString.getLe… in whereAnalysis()