Lines Matching defs:a

244 		// URLencode ( and ), but change ";" to a code which can be converted back after parsing (so as not to confuse ;
245 // with a segment delimiter in the URI)
479 // URLencode ( and ), but change ";" to a code which can be converted back after parsing (so as not to confuse ;
480 // with a segment delimiter in the URI)
897 if (preg_match('/([0-9a-zA-Z]*)-L/i', $v, $m)) { // e.g. A4-L = A$ landscape
1025 } elseif (preg_match('/["\'](\\\[a-fA-F0-9]{1,6})["\']/i', $v, $m)) {
1053 } elseif (preg_match('/U\+([a-fA-F0-9]+)/i', $v, $m)) {
1190 if (preg_match('/^\s*(#[0-9a-fA-F]{3,6}|(rgba|rgb|device-cmyka|cmyka|device-cmyk|cmyk|hsla|hsl|spot)\(.*?\)|[a-zA-Z]{3,})\s+(url\(.*)/i', $s, $m)) {
1231 } elseif (preg_match('/^\s*(#[0-9a-fA-F]{3,6}|(rgba|rgb|device-cmyka|cmyka|device-cmyk|cmyk|hsla|hsl|spot)\(.*?\)|[a-zA-Z]{3,})/i', $s, $m)) {
1409 if (preg_match('/(([\-+]?\d*)?N([\-+]\d+)?|[\-+]?\d+|ODD|EVEN)/', $m[1], $a)) { // mPDF 5.7.4
1410 $select = $this->_nthchild($a, $row);
1413 if (preg_match('/(([\-+]?\d*)?N([\-+]\d+)?|[\-+]?\d+|ODD|EVEN)/', $m[1], $a)) { // mPDF 5.7.4
1414 $select = $this->_nthchild($a, $this->mpdf->col);
1479 function _mergeBorders(&$b, &$a)
1481 // Merges $a['BORDER-TOP-STYLE'] to $b['BORDER-TOP'] etc.
1484 if (isset($a['BORDER-' . $side . '-' . $el])) { // e.g. $b['BORDER-TOP-STYLE']
1485 $s = trim($a['BORDER-' . $side . '-' . $el]);
1799 if (preg_match('/(([\-+]?\d*)?N([\-+]\d+)?|[\-+]?\d+|ODD|EVEN)/', $m[1], $a)) { // mPDF 5.7.4
1800 $select = $this->_nthchild($a, $row);
1803 if (preg_match('/(([\-+]?\d*)?N([\-+]\d+)?|[\-+]?\d+|ODD|EVEN)/', $m[1], $a)) { // mPDF 5.7.4
1804 $select = $this->_nthchild($a, $this->mpdf->col);
1952 if (preg_match('/(([\-+]?\d*)?N([\-+]\d+)?|[\-+]?\d+|ODD|EVEN)/', $m[1], $a)) { // mPDF 5.7.4
1953 $select = $this->_nthchild($a, $row);
1956 if (preg_match('/(([\-+]?\d*)?N([\-+]\d+)?|[\-+]?\d+|ODD|EVEN)/', $m[1], $a)) { // mPDF 5.7.4
1957 $select = $this->_nthchild($a, $this->mpdf->col);
2135 // Looks ahead from current block level to a new level
2229 // $f is formula e.g. 2N+1 split into a preg_match array
2236 $a = 2;
2239 $a = 2;
2242 $a = 0;
2247 $a = 1;
2249 $a = -1;
2251 $a = $f[2] + 0;
2256 $a = 1;
2258 $a = -1;
2260 $a = $f[2] + 0;
2266 if ($a > 0) {
2267 if (((($c % $a) - $b) % $a) === 0 && $c >= $b) {
2270 } elseif ($a == 0) {
2274 } else { // if ($a<0)
2275 if (((($c % $a) - $b) % $a) === 0 && $c <= $b) {