Lines Matching refs:waitingText
79 private static string $waitingText; variable in Fisharebest\\Webtrees\\Report\\RightToLeftSupport
136 self::$waitingText = '';
163 self::$waitingText .= self::UTF8_PDF;
167 } elseif (self::$waitingText === '') {
170 self::$waitingText .= $element;
185 if (self::$waitingText === '') {
188 self::$waitingText .= $entity;
202 $result .= self::$waitingText . $directive;
203 self::$waitingText = '';
310 self::$waitingText .= $currentLetter;
320 self::$waitingText .= ' ';
326 self::$waitingText .= ' ';
344 $result .= self::$waitingText;
345 self::$waitingText = '';
356 self::$waitingText .= $currentLetter;
358 $result .= self::$waitingText;
359 self::$waitingText = '';
374 if (self::$waitingText === '') {
379 self::$waitingText .= self::UTF8_PDF;
385 if (self::$waitingText !== '') {
388 $result .= self::$waitingText;
392 $result .= self::$waitingText;
395 self::$waitingText = '';
615 $result .= self::$waitingText;
616 self::$waitingText = '';
784 self::$waitingText = $trailingString . self::$waitingText;
822 …self::$waitingText = $trailingBlanks . self::$waitingText; // Put those trailing blanks inside the…
1002 …self::$waitingText = $trailingBlanks . self::$waitingText; // Put those trailing blanks inside the…
1052 self::$waitingText = $trailingString . self::$waitingText;
1060 self::$waitingText = ' - ' . self::$waitingText;
1132 $newLength = strlen(self::$waitingText) + $countTrailingSpaces;
1133 … self::$waitingText = str_pad(self::$waitingText, $newLength, ' ', STR_PAD_LEFT);