Searched refs:formulaStr (Results 1 – 1 of 1) sorted by relevance
46 private String formulaStr; field in FormulaParser83 formulaStr = formula; in parse()84 Debug.log(Debug.TRACE,"Creating a Formula Parser for " + formulaStr); in parse()120 …} else if ((index+1) >= formulaStr.length()) {//logical operators in their own right : if at end t… in isLogicalOp()122 } else if (!isLogicalOpChar(formulaStr.charAt(index))) { // we have >, < or = on their own in isLogicalOp()124 …} else if ((look == '<') && ((formulaStr.charAt(index) == '>') || formulaStr.charAt(index) == '=')… in isLogicalOp()126 } else if ((look == '>') && (formulaStr.charAt(index) == '=')) { // >= in isLogicalOp()298 if(index<formulaStr.length()) { in getChar()299 look = formulaStr.charAt(index); in getChar()452 … } while((isDigit(look) || ((look == '.') && isDigit(formulaStr.charAt(index)))) && status); in getNum()[all …]