------------------------------------------------------------------------------
| 930 | |
| 931 | //------------------------------------------------------------------------------ |
| 932 | size_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 | //------------------------------------------------------------------------------ |
| 948 | size_t vtkXMLDataParser::ReadAppendedData( |
no test coverage detected