------------------------------------------------------------------------------
| 1721 | |
| 1722 | //------------------------------------------------------------------------------ |
| 1723 | int vtkFunctionParser::FindEndOfMathConstant(int beginIndex) |
| 1724 | { |
| 1725 | if (int constantNumber = this->GetMathConstantNumber(beginIndex)) |
| 1726 | { |
| 1727 | return beginIndex + this->GetMathConstantStringLength(constantNumber); |
| 1728 | } |
| 1729 | return beginIndex; |
| 1730 | } |
| 1731 | |
| 1732 | //------------------------------------------------------------------------------ |
| 1733 | unsigned char vtkFunctionParser::GetElementaryOperatorNumber(char op) |
nothing calls this directly
no test coverage detected