Lines Matching refs:NOPOS
83 import static com.sun.tools.javac.util.Position.NOPOS;
341 && self.pos == NOPOS) {
342 // If pos is NOPOS, so should be the start and end positions
343 check("start == NOPOS", encl, self, self.start == NOPOS);
344 check("end == NOPOS", encl, self, self.end == NOPOS);
347 check("start != NOPOS", encl, self, self.start != NOPOS);
348 check("pos != NOPOS", encl, self, self.pos != NOPOS);
349 check("end != NOPOS", encl, self, self.end != NOPOS);