Searched refs:end_location (Results 1 – 3 of 3) 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/tensorflow/tensorflow/core/common_runtime/ |
D | bfc_allocator.cc | 567 size_t end_location = in RenderRegion() local 570 CHECK_GE(end_location, 0); in RenderRegion() 571 CHECK_LT(end_location, resolution); in RenderRegion() 573 for (size_t i = start_location; i <= end_location; ++i) { in RenderRegion()
|
/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)
|