D | TypeIndexDiscovery.cpp | 69 static void handleMethodOverloadList(ArrayRef<uint8_t> Content, in handleMethodOverloadList() argument 73 while (!Content.empty()) { in handleMethodOverloadList() 85 uint16_t Attrs = support::endian::read16le(Content.data()); in handleMethodOverloadList() 91 Content = Content.drop_front(Len); in handleMethodOverloadList() 209 static void handleFieldList(ArrayRef<uint8_t> Content, in handleFieldList() argument 213 while (!Content.empty()) { in handleFieldList() 215 static_cast<TypeLeafKind>(support::endian::read16le(Content.data())); in handleFieldList() 218 ThisLen = handleBaseClass(Content, Offset, Refs); in handleFieldList() 221 ThisLen = handleEnumerator(Content, Offset, Refs); in handleFieldList() 224 ThisLen = handleDataMember(Content, Offset, Refs); in handleFieldList() [all …]
|