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

Method Load

IO/Core/vtkURILoader.cxx:128–137  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

126
127//------------------------------------------------------------------------------
128vtkSmartPointer<vtkResourceStream> vtkURILoader::Load(const char* uri, std::size_t size)
129{
130 auto parsed = vtkURI::Parse(uri, size);
131 if (!parsed)
132 {
133 return nullptr;
134 }
135
136 return this->Load(parsed);
137}
138
139//------------------------------------------------------------------------------
140vtkSmartPointer<vtkResourceStream> vtkURILoader::Load(const vtkURI* uri)

Callers 9

LoadImageDataMethod · 0.45
GetBinaryBufferFromUriFunction · 0.45
GetRelatedFilesMethod · 0.45
LoadFunction · 0.45
TestFileLoadingFunction · 0.45
TestBase64DataLoadingFunction · 0.45
TestRawDataLoadingFunction · 0.45
OpenMethod · 0.45
LoadLibrariesInPathMethod · 0.45

Calls 3

DoLoadMethod · 0.95
ResolveFunction · 0.85
ParseFunction · 0.70

Tested by 3

TestFileLoadingFunction · 0.36
TestBase64DataLoadingFunction · 0.36
TestRawDataLoadingFunction · 0.36