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

Method Start

IO/Exodus/vtkExodusIIReaderVariableCheck.cxx:18–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16#include <cctype>
17
18VTK_ABI_NAMESPACE_BEGIN
19bool vtkExodusIIReaderVariableCheck::Start(std::string name, const int* truth, int numTruth)
20{
21 this->SeqTruth.clear();
22 this->SeqTruth.insert(this->SeqTruth.begin(), truth, truth + numTruth);
23 this->OriginalNames.clear();
24 bool result = this->StartInternal(name, truth, numTruth);
25 bool atLeastOne = false;
26 for (int i = 0; i < numTruth; ++i)
27 {
28 if (truth[i])
29 atLeastOne = true;
30 }
31 return result && atLeastOne;
32}
33
34std::vector<std::string>::size_type vtkExodusIIReaderVariableCheck::Length()
35{

Callers 15

TestGL2PSScalarBarFunction · 0.45
TestGL2PSExporterRasterFunction · 0.45
TestGL2PSTextActor3DFunction · 0.45
TestStackedPlotGL2PSFunction · 0.45
TestGL2PSTextActorFunction · 0.45
TestGL2PSContextFunction · 0.45
TestGL2PSTextMapperFunction · 0.45
TestSVGContextShadingFunction · 0.45

Calls 4

StartInternalMethod · 0.80
clearMethod · 0.45
insertMethod · 0.45
beginMethod · 0.45

Tested by 15

TestGL2PSScalarBarFunction · 0.36
TestGL2PSExporterRasterFunction · 0.36
TestGL2PSTextActor3DFunction · 0.36
TestStackedPlotGL2PSFunction · 0.36
TestGL2PSTextActorFunction · 0.36
TestGL2PSContextFunction · 0.36
TestGL2PSTextMapperFunction · 0.36
TestSVGContextShadingFunction · 0.36