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

Method inq_dimlen

IO/NetCDF/vtkXArrayAccessor.cxx:148–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146}
147
148int vtkXArrayAccessor::inq_dimlen(int vtkNotUsed(ncid), int dimid, size_t* lenp)
149{
150 if (static_cast<size_t>(dimid) >= Dim.size())
151 return NC_EBADDIM;
152 *lenp = this->DimLen[dimid];
153 return NC_NOERR;
154}
155
156int vtkXArrayAccessor::inq_dimname(int vtkNotUsed(ncid), int dimid, char* name)
157{

Callers 6

RequestInformationMethod · 0.45
GetTimeValuesMethod · 0.45
LoadMetaDataMethod · 0.45
LoadBoundsVariableMethod · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected