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

Method SeekG

IO/XMLParser/vtkXMLParser.cxx:77–85  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

75
76//------------------------------------------------------------------------------
77void vtkXMLParser::SeekG(vtkTypeInt64 position)
78{
79 // Standard seekg does nothing if fail() is true.
80 if (!this->Stream || vtkXMLParserFail(this->Stream))
81 {
82 return;
83 }
84 this->Stream->seekg(std::streampos(position));
85}
86
87//------------------------------------------------------------------------------
88int vtkXMLParser::Parse(const char* inputString)

Callers 3

ReadAppendedDataMethod · 0.80

Calls 1

vtkXMLParserFailFunction · 0.85

Tested by

no test coverage detected