Home
last modified time | relevance | path

Searched refs:ILLEGAL_IN_NAMES (Results 1 – 2 of 2) sorted by relevance

/dports/math/libqalculate/libqalculate-3.17.0/libqalculate/
H A DCalculator.cc351 ILLEGAL_IN_NAMES = "\a\b" + DOT_S + RESERVED OPERATORS SPACES PARENTHESISS VECTOR_WRAPS COMMAS; in Calculator()
353 ILLEGAL_IN_UNITNAMES = ILLEGAL_IN_NAMES + NUMBERS; in Calculator()
580 ILLEGAL_IN_NAMES = "\a\b" + DOT_S + RESERVED OPERATORS SPACES PARENTHESISS VECTOR_WRAPS COMMAS; in Calculator()
582 ILLEGAL_IN_UNITNAMES = ILLEGAL_IN_NAMES + NUMBERS; in Calculator()
637 if(is_in(ILLEGAL_IN_NAMES, pos[0])) { in utf8_pos_is_valid_in_name()
2610 …return !name_.empty() && name_.find_first_of(ILLEGAL_IN_NAMES) == string::npos && is_not_in(NUMBER… in variableNameIsValid()
2613 …return !name_.empty() && name_.find_first_of(ILLEGAL_IN_NAMES) == string::npos && is_not_in(NUMBER… in functionNameIsValid()
2622 if(is_in(ILLEGAL_IN_NAMES, name_[i])) return false; in variableNameIsValid()
2630 if(is_in(ILLEGAL_IN_NAMES, name_[i])) return false; in functionNameIsValid()
2656 if(is_in(ILLEGAL_IN_NAMES, name_[i])) { in variableNameIsValid()
[all …]
H A DCalculator.h298 …BER_PRE_S, NAME_NUMBER_PRE_STR, DOT_STR, DOT_S, COMMA_S, COMMA_STR, ILLEGAL_IN_NAMES, ILLEGAL_IN_U… variable