Searched refs:end_location (Results 1 – 2 of 2) sorted by relevance
/external/protobuf/src/google/protobuf/compiler/ |
D | parser.cc | 1452 LocationRecorder end_location( in ParseExtensions() local 1463 LocationRecorder end_location( in ParseExtensions() local 1465 end_location.StartAt(start_token); in ParseExtensions() 1466 end_location.EndAt(start_token); in ParseExtensions() 1529 LocationRecorder end_location( in ParseReservedNumbers() local 1533 LocationRecorder end_location( in ParseReservedNumbers() local 1535 end_location.StartAt(start_token); in ParseReservedNumbers() 1536 end_location.EndAt(start_token); in ParseReservedNumbers()
|
/external/clang/bindings/python/clang/ |
D | cindex.py | 2517 start_location, end_location = locations 2526 if hasattr(end_location, '__len__'): 2527 end_location = SourceLocation.from_position(self, f, 2528 end_location[0], end_location[1]) 2529 elif isinstance(end_location, int): 2530 end_location = SourceLocation.from_offset(self, f, end_location) 2533 assert isinstance(end_location, SourceLocation) 2535 return SourceRange.from_locations(start_location, end_location)
|