Lines Matching refs:l
60 for (LineNumber l : lines) {
61 if (l.location > location) {
64 best = l.line;
145 public static void setBreakpoint(Executable m, LineNumber l) {
146 setBreakpoint(m, l.location);
150 public static void clearBreakpoint(Executable m, LineNumber l) {
151 clearBreakpoint(m, l.location);
175 for (Breakpoint.LineNumber l : lines) {
176 if (l.location > location) {
179 best = l.line;
191 for (Breakpoint.LineNumber l : lines) {
192 if (l.line == line) {
193 return l.location;