Lines Matching defs:ignore

1990 			$ignore = $this->_getGSUBignoreString($Lookup[$i]['Flag'], $Lookup[$i]['MarkFilteringSet']);
1991 if ($ignore) {
1992 $html .= '<div class="ignore">Ignoring: ' . $ignore . '</div> ';
2690 $ignore = false;
2693 $ignore = true;
2696 $ignore = true;
2699 $ignore = true;
2703 $ignore = true;
2707 $ignore = true;
2710 return $ignore;
2715 // If ignoreFlag set, combine all ignore glyphs into -> "((?:(?: FBA1| FBA2| FBA3))*)"
2812 function _makeGSUBcontextInputMatch($inputGlyphs, $ignore, $lookupGlyphs, $seqIndex)
2814 // $ignore = "((?:(?: FBA1| FBA2| FBA3))*)" or "()"
2815 // Returns e.g. ¦(0612)¦(ignore) (0613)¦(ignore) (0614)¦
2823 $str .= $ignore . " ";
2835 function _makeGSUBinputMatch($inputGlyphs, $ignore)
2837 // $ignore = "((?:(?: FBA1| FBA2| FBA3))*)" or "()"
2838 // Returns e.g. ¦(0612)¦(ignore) (0613)¦(ignore) (0614)¦
2844 $str .= $ignore . " ";
2852 function _makeGSUBbacktrackMatch($backtrackGlyphs, $ignore)
2854 // $ignore = "((?:(?: FBA1| FBA2| FBA3))*)" or "()"
2855 // Returns e.g. ¦(FEEB|FEEC)(ignore) ¦(FD12|FD13)(ignore) ¦
2861 $str .= "" . $backtrackGlyphs[$i] . " " . $ignore . " ";
2867 function _makeGSUBlookaheadMatch($lookaheadGlyphs, $ignore)
2869 // $ignore = "((?:(?: FBA1| FBA2| FBA3))*)" or "()"
2870 // Returns e.g. ¦(ignore) (FD12|FD13)¦(ignore) (FEEB|FEEC)¦
2876 $str .= $ignore . " " . $lookaheadGlyphs[$i] . "";
2882 function _makeGSUBinputReplacement($nInput, $REPL, $ignore, $nBsubs, $mLen, $seqIndex)
2887 // $ignore = "((?:(?: FBA1| FBA2| FBA3))*)" or "()"
2891 if ($ignore == "()") {
3235 $ignore = $this->_getGSUBignoreString($Lookup[$luli]['Flag'], $Lookup[$luli]['MarkFilteringSet']);
3236 if ($ignore) {
3237 $html .= '<div class="ignore">Ignoring: ' . $ignore . '</div> ';