Home | History | Annotate | Download | only in c-index-test

Lines Matching defs:Locations

1887   CursorSourceLocation *Locations = 0;
1892 /* Count the number of locations. */
1896 /* Parse the locations. */
1897 assert(NumLocations > 0 && "Unable to count locations?");
1898 Locations = (CursorSourceLocation *)malloc(
1902 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
1903 &Locations[Loc].line,
1904 &Locations[Loc].column, 0, 0)))
1945 CXFile file = clang_getFile(TU, Locations[Loc].filename);
1950 clang_getLocation(TU, file, Locations[Loc].line,
1951 Locations[Loc].column));
2017 free(Locations[Loc].filename);
2025 free(Locations);
2048 CursorSourceLocation *Locations = 0;
2053 /* Count the number of locations. */
2057 /* Parse the locations. */
2058 assert(NumLocations > 0 && "Unable to count locations?");
2059 Locations = (CursorSourceLocation *)malloc(
2063 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
2064 &Locations[Loc].line,
2065 &Locations[Loc].column, 0, 0)))
2106 CXFile file = clang_getFile(TU, Locations[Loc].filename);
2111 clang_getLocation(TU, file, Locations[Loc].line,
2112 Locations[Loc].column));
2122 free(Locations[Loc].filename);
2133 free(Locations);
2156 /* Count the number of locations. */
2160 /* Parse the locations. */