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

Method GetFileName

IO/IOSS/vtkIOSSReader.cxx:266–275  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

264
265//----------------------------------------------------------------------------
266const char* vtkIOSSReader::GetFileName(int index) const
267{
268 auto& internals = (*this->Internals);
269 if (static_cast<int>(internals.FileNames.size()) > index)
270 {
271 auto iter = std::next(internals.FileNames.begin(), index);
272 return iter->c_str();
273 }
274 return nullptr;
275}
276
277//----------------------------------------------------------------------------
278int vtkIOSSReader::GetNumberOfFileNames() const

Callers 13

RequestDataMethod · 0.45
RequestInformationMethod · 0.45
RequestDataMethod · 0.45
TestDIMACSGraphReaderFunction · 0.45
ImportBeginMethod · 0.45
ReadDataMethod · 0.45
RequestDataMethod · 0.45
ImportBeginMethod · 0.45
Read3DSMethod · 0.45
OpenImportFileMethod · 0.45

Calls 4

nextFunction · 0.50
sizeMethod · 0.45
beginMethod · 0.45
c_strMethod · 0.45

Tested by 1

TestDIMACSGraphReaderFunction · 0.36