Lines Matching defs:Loc
192 CXSourceLocation Loc;
196 Loc = clang_getCursorLocation(Ovl);
197 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
202 CXSourceLocation Loc = clang_getCursorLocation(Referenced);
203 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
259 CXSourceLocation Loc = clang_getCursorLocation(SpecializationOf);
261 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
272 CXSourceLocation Loc = clang_getCursorLocation(overridden[I]);
273 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
295 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
298 clang_getSpellingLocation(Loc, &file, 0, 0, 0);
302 return "<invalid loc>";
434 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
436 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
468 CXSourceLocation Loc;
479 Loc = clang_getCursorLocation(Cursor);
480 clang_getSpellingLocation(Loc, &file, 0, 0, 0);
1218 unsigned NumLocations = 0, Loc;
1230 for (Loc = 0; Loc < NumLocations; ++Loc) {
1231 const char *input = argv[Loc + 1] + strlen("-cursor-at=");
1232 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
1233 &Locations[Loc].line,
1234 &Locations[Loc].column, 0, 0)))
1268 for (Loc = 0; Loc < NumLocations; ++Loc) {
1269 CXFile file = clang_getFile(TU, Locations[Loc].filename);
1274 clang_getLocation(TU, file, Locations[Loc].line,
1275 Locations[Loc].column));
1279 free(Locations[Loc].filename);