Searched refs:from_position (Results 1 – 2 of 2) sorted by relevance
/external/clang/bindings/python/tests/cindex/ |
D | test_location.py | 50 location = SourceLocation.from_position(tu, file, 1, 5) 58 location2 = SourceLocation.from_position(tu, file, 1, 5) 60 location3 = SourceLocation.from_position(tu, file, 1, 4) 86 location1 = SourceLocation.from_position(tu, file, 1, 1) 87 location2 = SourceLocation.from_position(tu, file, 1, 8) 93 location3 = SourceLocation.from_position(tu, file, 1, 6)
|
/external/clang/bindings/python/clang/ |
D | cindex.py | 180 def from_position(tu, file, line, column): member in SourceLocation 2495 return SourceLocation.from_position(self, f, position[0], position[1]) 2520 start_location = SourceLocation.from_position(self, f, 2527 end_location = SourceLocation.from_position(self, f,
|