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

Method BuildInternalFunctionStructure

Common/Misc/vtkFunctionParser.cxx:1219–1234  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1217
1218//------------------------------------------------------------------------------
1219int vtkFunctionParser::BuildInternalFunctionStructure()
1220{
1221 this->ByteCode.clear();
1222
1223 delete[] this->Immediates;
1224 this->Immediates = nullptr;
1225
1226 delete[] this->Stack;
1227 this->Stack = nullptr;
1228
1229 this->ByteCodeSize = this->ImmediatesSize = this->StackSize = 0;
1230 this->StackPointer = 0;
1231 this->BuildInternalSubstringStructure(0, this->FunctionLength - 1);
1232
1233 return 1;
1234}
1235
1236//------------------------------------------------------------------------------
1237void vtkFunctionParser::BuildInternalSubstringStructure(int beginIndex, int endIndex)

Callers 1

ParseMethod · 0.95

Calls 2

clearMethod · 0.45

Tested by

no test coverage detected