Lines Matching refs:LE
71 protected $LE = "\r\n"; variable in Swift_Message_Headers
83 $this->LE = $le;
94 return $this->LE;
397 $row, 72, ($key > 0 ? 0 : (75-(strlen($name)+5))), $this->LE);
408 $row, (75-(strlen($spec)+6)), ($key > 0 ? 0 : (75-$used_length)), true, $this->LE));
418 $row, (75-(strlen($spec)+5)), ($key > 0 ? 0 : (76-($used_length+3))), true, $this->LE);
421 if (false !== $p = strpos($encoded_value[$key], $this->LE))
423 $cb = 'str_replace("' . $this->LE . '", "", "<$1>");';
428 $lines = explode($this->LE, $encoded_value[$key]);
467 $encoded_value[$key] = implode($this->LE, $lines);
472 $this->cached[$lname] = implode("," . $this->LE . " ", $encoded_value);
492 $lines = explode($this->LE, $header_line);
503 …der::instance()->rfc2047Encode($att_value, $this->charset, $this->language, $avail_len, $this->LE);
504 $lines = explode($this->LE, $encoded);
510 $encoded = implode($this->LE, $lines);
538 $append .= $this->LE . " " . $att_copy . "=" . $line;
547 $append = $this->LE . " " . $attribute . "=" . $encoded;
569 $ret .= ltrim($name, ".") . ": " . $this->getEncoded($name) . $this->LE;