You are here
6 calls to PHPExcel_Writer_Excel5_Parser::_createTree() in Loft Data Grids 7.2
PHPExcel_Writer_Excel5_Parser::_condition in vendor/ phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/Parser.php
* It parses a condition. It assumes the following rule:
* Cond -> Expr [(">" | "<") Expr]
*
* @access private
*
PHPExcel_Writer_Excel5_Parser::_expression in vendor/ phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/Parser.php
* It parses a expression. It assumes the following rule:
* Expr -> Term [("+" | "-") Term]
* -> "string"
* -> "-" Term : Negative value
* -> "+" Term : Positive…
PHPExcel_Writer_Excel5_Parser::_fact in vendor/ phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/Parser.php
* It parses a factor. It assumes the following rule:
* Fact -> ( Expr )
* | CellRef
* | CellRange
* | Number
* | Function
*
* @access private
*
PHPExcel_Writer_Excel5_Parser::_func in vendor/ phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/Parser.php
* It parses a function call. It assumes the following rule:
* Func -> ( Expr [,Expr]* )
*
* @access private
*
PHPExcel_Writer_Excel5_Parser::_parenthesizedExpression in vendor/ phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/Parser.php
* This function just introduces a ptgParen element in the tree, so that Excel
* doesn't get confused when working with a parenthesized formula afterwards.
*
* @access private
* *
PHPExcel_Writer_Excel5_Parser::_term in vendor/ phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/Parser.php
* It parses a term. It assumes the following rule:
* Term -> Fact [("*" | "/") Fact]
*
* @access private
*