Boolean searching on a line-by-line basis is only supported in FileLocator Pro. However, you might be able to achieve what you want using a regex, which always match on a line-by-line basis e.g.
word1 AND word2
is the same as the regex:
(word1.*word2)|(word2.*word1)