MCPcopy Create free account
hub / github.com/Kitware/VTK / ReadInlineData

Method ReadInlineData

IO/XMLParser/vtkXMLDataParser.cxx:932–945  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

930
931//------------------------------------------------------------------------------
932size_t vtkXMLDataParser::ReadInlineData(vtkXMLDataElement* element, int isAscii, void* buffer,
933 vtkTypeUInt64 startWord, size_t numWords, int wordType)
934{
935 this->DataStream = this->InlineDataStream;
936 this->SeekInlineDataPosition(element);
937 if (isAscii)
938 {
939 return this->ReadAsciiData(buffer, startWord, numWords, wordType);
940 }
941 else
942 {
943 return this->ReadBinaryData(buffer, startWord, numWords, wordType);
944 }
945}
946
947//------------------------------------------------------------------------------
948size_t vtkXMLDataParser::ReadAppendedData(

Callers 2

ReadInlineDataFunction · 0.80

Calls 3

ReadAsciiDataMethod · 0.95
ReadBinaryDataMethod · 0.95

Tested by

no test coverage detected