Lines Matching defs:sectionData

262   /// contents of the section in `sectionData`.
264 ArrayRef<uint8_t> &sectionData) {
290 return parseBytes(static_cast<size_t>(length), sectionData);
374 LogicalResult initialize(Location fileLoc, ArrayRef<uint8_t> sectionData);
407 ArrayRef<uint8_t> sectionData) {
408 EncodingReader stringReader(sectionData, fileLoc);
418 size_t stringDataEndOffset = sectionData.size();
431 reinterpret_cast<const char *>(sectionData.data() + stringOffset),
438 if ((sectionData.size() - stringReader.size()) != stringDataEndOffset) {
541 StringSectionReader &stringReader, ArrayRef<uint8_t> sectionData,
691 StringSectionReader &stringReader, ArrayRef<uint8_t> sectionData,
694 EncodingReader resourceReader(sectionData, fileLoc);
815 ArrayRef<uint8_t> sectionData,
1056 LogicalResult initialize(Location fileLoc, ArrayRef<uint8_t> sectionData) {
1057 if (sectionData.empty())
1059 EncodingReader propReader(sectionData, fileLoc);
1136 ArrayRef<uint8_t> sectionData, ArrayRef<uint8_t> offsetSectionData) {
1163 if (currentOffset + entrySize > sectionData.size()) {
1168 entry.data = sectionData.slice(currentOffset, entrySize);
1408 LogicalResult parseDialectSection(ArrayRef<uint8_t> sectionData);
1474 LogicalResult parseIRSection(ArrayRef<uint8_t> sectionData, Block *block);
1660 ArrayRef<uint8_t> sectionData;
1661 if (failed(reader.parseSection(sectionID, sectionData)))
1669 sectionDatas[sectionID] = sectionData;
1771 BytecodeReader::Impl::parseDialectSection(ArrayRef<uint8_t> sectionData) {
1772 EncodingReader sectionReader(sectionData, fileLoc);
2065 BytecodeReader::Impl::parseIRSection(ArrayRef<uint8_t> sectionData,
2067 EncodingReader reader(sectionData, fileLoc);
2161 ArrayRef<uint8_t> sectionData;
2162 if (failed(reader.parseSection(sectionID, sectionData)))
2167 std::make_unique<EncodingReader>(sectionData, fileLoc);