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

Method SetInputString

IO/Legacy/vtkDataReader.cxx:200–208  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

198
199//------------------------------------------------------------------------------
200void vtkDataReader::SetInputString(const char* in)
201{
202 int len = 0;
203 if (in != nullptr)
204 {
205 len = static_cast<int>(strlen(in));
206 }
207 this->SetInputString(in, len);
208}
209
210//------------------------------------------------------------------------------
211void vtkDataReader::SetBinaryInputString(const char* in, int len)

Callers 10

SetBinaryInputStringMethod · 0.95
ReadMetaDataSimpleMethod · 0.45
ReadMeshSimpleMethod · 0.45
ReadDataMethod · 0.45
ReadMetaDataSimpleMethod · 0.45
ReadMeshSimpleMethod · 0.45
TestVTKLegacy.pyFile · 0.45
TestLegacyArrayMetaDataFunction · 0.45

Calls 1

ModifiedMethod · 0.45