Home
last modified time | relevance | path

Searched refs:end_location (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/
Dparser.cc1585 LocationRecorder end_location( in ParseExtensions() local
1596 LocationRecorder end_location( in ParseExtensions() local
1598 end_location.StartAt(start_token); in ParseExtensions()
1599 end_location.EndAt(start_token); in ParseExtensions()
1707 LocationRecorder end_location( in ParseReservedNumbers() local
1718 LocationRecorder end_location( in ParseReservedNumbers() local
1720 end_location.StartAt(start_token); in ParseReservedNumbers()
1721 end_location.EndAt(start_token); in ParseReservedNumbers()
1786 LocationRecorder end_location( in ParseReservedNumbers() local
1796 LocationRecorder end_location( in ParseReservedNumbers() local
[all …]
/external/clang/bindings/python/clang/
Dcindex.py2517 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)
/external/llvm-project/clang/bindings/python/clang/
Dcindex.py2948 start_location, end_location = locations
2957 if hasattr(end_location, '__len__'):
2958 end_location = SourceLocation.from_position(self, f,
2959 end_location[0], end_location[1])
2960 elif isinstance(end_location, int):
2961 end_location = SourceLocation.from_offset(self, f, end_location)
2964 assert isinstance(end_location, SourceLocation)
2966 return SourceRange.from_locations(start_location, end_location)
/external/tensorflow/tensorflow/core/common_runtime/
Dbfc_allocator.cc928 size_t end_location = in RenderRegion() local
931 CHECK_GE(end_location, 0); in RenderRegion()
932 CHECK_LT(end_location, resolution); in RenderRegion()
934 for (size_t i = start_location; i <= end_location; ++i) { in RenderRegion()