Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/
Ddescriptor.h279 bool GetSourceLocation(SourceLocation* out_location) const;
553 bool GetSourceLocation(SourceLocation* out_location) const;
653 bool GetSourceLocation(SourceLocation* out_location) const;
736 bool GetSourceLocation(SourceLocation* out_location) const;
814 bool GetSourceLocation(SourceLocation* out_location) const;
884 bool GetSourceLocation(SourceLocation* out_location) const;
953 bool GetSourceLocation(SourceLocation* out_location) const;
1098 bool GetSourceLocation(const std::vector<int>& path,
Ddescriptor.cc561 const SourceCodeInfo_Location* GetSourceLocation(
885 const SourceCodeInfo_Location* FileDescriptorTables::GetSourceLocation( in GetSourceLocation() function in google::protobuf::FileDescriptorTables
2123 bool FileDescriptor::GetSourceLocation(const vector<int>& path, in GetSourceLocation() function in google::protobuf::FileDescriptor
2128 tables_->GetSourceLocation(path, source_code_info_)) { in GetSourceLocation()
2149 bool Descriptor::GetSourceLocation(SourceLocation* out_location) const { in GetSourceLocation() function in google::protobuf::Descriptor
2152 return file()->GetSourceLocation(path, out_location); in GetSourceLocation()
2155 bool FieldDescriptor::GetSourceLocation(SourceLocation* out_location) const { in GetSourceLocation() function in google::protobuf::FieldDescriptor
2158 return file()->GetSourceLocation(path, out_location); in GetSourceLocation()
2161 bool OneofDescriptor::GetSourceLocation(SourceLocation* out_location) const { in GetSourceLocation() function in google::protobuf::OneofDescriptor
2164 return containing_type()->file()->GetSourceLocation(path, out_location); in GetSourceLocation()
[all …]
Ddescriptor_unittest.cc5345 TEST_F(SourceLocationTest, GetSourceLocation) { in TEST_F() argument
5352 EXPECT_TRUE(a_desc->GetSourceLocation(&loc)); in TEST_F()
5356 EXPECT_TRUE(a_b_desc->GetSourceLocation(&loc)); in TEST_F()
5360 EXPECT_TRUE(e_desc->GetSourceLocation(&loc)); in TEST_F()
5364 EXPECT_TRUE(yes_desc->GetSourceLocation(&loc)); in TEST_F()
5368 EXPECT_TRUE(s_desc->GetSourceLocation(&loc)); in TEST_F()
5372 EXPECT_TRUE(m_desc->GetSourceLocation(&loc)); in TEST_F()
5385 EXPECT_TRUE(int32_extension_desc->GetSourceLocation(&loc)); in TEST_F()
5389 EXPECT_TRUE(c_desc->GetSourceLocation(&loc)); in TEST_F()
5394 EXPECT_TRUE(message_extension_desc->GetSourceLocation(&loc)); in TEST_F()
[all …]
/external/protobuf/src/google/protobuf/compiler/java/
Djava_doc_comment.cc144 if (descriptor->GetSourceLocation(&location)) { in WriteDocCommentBody()