Home | History | Annotate | Download | only in kcm

Lines Matching defs:lineno

31     int lineno;
37 PropValue() { lineno = -1; }
38 PropValue(const PropValue& that) { lineno=that.lineno; value=that.value; }
39 PropValue(int l, const string& v) { lineno = l; value = v; }
41 int lineno;
49 static int parse_key_line(const char* filename, int lineno, char* line,
85 int lineno = 1;
121 filename, lineno, thisline);
132 filename, lineno, thisline);
136 properties[prop] = PropValue(lineno, value);
142 err = parse_key_line(filename, lineno, thisline, &kr);
144 kr.lineno = lineno;
149 filename, lineno, kr.values[0]);
151 filename, old->second.lineno);
161 lineno++;
168 lineno);
194 " or QWERTY, not %s\n", filename, pv.lineno, pv.value.c_str());
249 printf("%2d/ [%d] [%d] [%d] [%d] [%d] [%d] [%d]\n", kr.lineno,
292 parse_keycode(const char* filename, int lineno, char* str, int* value)
307 "%s\n", filename, lineno, str);
313 filename, lineno);
321 parse_number(const char* filename, int lineno, char* str, int* value)
331 " quotes near: %s\n", filename, lineno, str);
340 filename, lineno, str);
346 "nothing larger than 0xfffe): %s\n", filename, lineno, str);
354 parse_key_line(const char* filename, int lineno, char* line, KeyRecord* out)
371 lineno, line);
389 lineno, p);
390 fprintf(stderr, "%s:%d: -->%s<--\n", filename, lineno, line);
394 int errorcount = parse_keycode(filename, lineno, s[0], &out->values[0]);
396 errorcount += parse_number(filename, lineno, s[i], &out->values[i]);