Lines Matching full:location
43 static Location std_loc = {
46 static Location *cur_loc = &std_loc;
49 * Push location saved in LOC onto the location stack, return it.
50 * The top of that stack is the current location.
53 Location *loc_push_restore(Location *loc) in loc_push_restore()
62 * Initialize *LOC to "nowhere", push it onto the location stack.
63 * The top of that stack is the current location.
67 Location *loc_push_none(Location *loc) in loc_push_none()
75 * Pop the location stack.
76 * LOC must be the current location, i.e. the top of the stack.
78 Location *loc_pop(Location *loc) in loc_pop()
87 * Save the current location in LOC, return LOC.
89 Location *loc_save(Location *loc) in loc_save()
97 * Change the current location to the one saved in LOC.
99 void loc_restore(Location *loc) in loc_restore()
101 Location *prev = cur_loc->prev; in loc_restore()
108 * Change the current location to "nowhere in particular".
116 * Change the current location to argument ARGV[IDX..IDX+CNT-1].
126 * Change the current location to file FNAME, line LNO.
139 * Print current location to current monitor if we have one, else to stderr.
184 * Prepend the current location and append a newline.
223 * Prepend the current location and append a newline.
235 * Prepend the current location and append a newline.
247 * Prepend the current location and append a newline.
258 * Prepend the current location and append a newline.
274 * Prepend the current location and append a newline.
290 * Prepend the current location and append a newline.