名前が "m_" で始まらないすべての非パブリッククラスフィールドを検索する

// FieldDecl / Declrs[*]::*[ not isPublic() ] [ not getName().starts-with('m_') ]

public class Foo {
   // no match - starts with 'm_'
   static int m_count;

   // no match - public member
   public static char symbol;

   // no match - starts with 'm_'
   protected int m_foo;

   // finds this field
   private final boolean flag = false;
}