Home | History | Annotate | Download | only in protobuf

Lines Matching refs:line

38  * <p>A location is the starting line number and starting column number.
50 * @param line the starting line number
54 static TextFormatParseLocation create(int line, int column) {
55 if (line == -1 && column == -1) {
58 if (line < 0 || column < 0) {
60 String.format("line and column values must be >= 0: line %d, column: %d", line, column));
62 return new TextFormatParseLocation(line, column);
65 private final int line;
68 private TextFormatParseLocation(int line, int column) {
69 this.line = line;
74 return line;
83 return String.format("ParseLocation{line=%d, column=%d}", line, column);
95 return (this.line == that.getLine())
101 int[] values = {line, column};