Home
last modified time | relevance | path

Searched refs:fromString (Results 1 – 25 of 71) sorted by relevance

123

/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.pseudo.table.border.inc.php12 …$this->_defaultValue = BorderPDF::create(array('top' => array('width' => Value::fromString('2px…
15 … 'right' => array('width' => Value::fromString('2px'),
18 … 'bottom' => array('width' => Value::fromString('2px'),
21 … 'left' => array('width' => Value::fromString('2px'),
H A Dcss.max-height.inc.php11 $this->_defaultValue = ValueMaxHeight::fromString("auto");
41 return ValueMaxHeight::fromString('auto');
43 return ValueMaxHeight::fromString($value);
H A Dcss.border.width.inc.php54 return Value::fromString('1px');
56 return Value::fromString('3px');
58 return Value::fromString('5px');
60 return Value::fromString($value);
H A Dcss.border.inc.php42 …$this->_defaultValue = BorderPDF::create(array('top' => array('width' => Value::fromString('2px…
45 … 'right' => array('width' => Value::fromString('2px'),
48 … 'bottom' => array('width' => Value::fromString('2px'),
51 … 'left' => array('width' => Value::fromString('2px'),
H A Dcss.right.inc.php9 $this->_autoValue = ValueRight::fromString('auto');
21 return ValueRight::fromString($value);
H A Dcss.left.inc.php9 $this->_autoValue = ValueLeft::fromString('auto');
21 return ValueLeft::fromString($value);
H A Dcss.top.inc.php9 $this->_autoValue = ValueTop::fromString('auto');
29 return ValueTop::fromString($value);
H A Dcss.bottom.inc.php30 $this->_autoValue = ValueBottom::fromString('auto');
50 return ValueBottom::fromString($value);
H A Dcss.letter-spacing.inc.php10 $this->_default_value = Value::fromString("0");
28 return Value::fromString($value);
H A Dcss.word-spacing.inc.php10 $this->_default_value = Value::fromString("0");
28 return Value::fromString($value);
H A Dcss.height.inc.php11 $this->_autoValue = ValueHeight::fromString('auto');
32 return ValueHeight::fromString($value);
H A Dcss.min-height.inc.php11 $this->_defaultValue = ValueMinHeight::fromString("0px");
40 return ValueMinHeight::fromString($value);
H A Dvalue.max-height.php6 function fromString($value) { function in ValueMaxHeight
H A Dvalue.min-height.php6 function fromString($value) { function in ValueMinHeight
H A Dvalue.height.php6 function fromString($value) { function in ValueHeight
H A Dvalue.left.php6 function fromString($value) { function in ValueLeft
H A Dvalue.bottom.php6 function fromString($value) { function in ValueBottom
H A Dvalue.right.php6 function fromString($value) { function in ValueRight
/plugin/ipban/ip-lib/src/
H A DFactory.php25 $result = Address\IPv4::fromString($address, $mayIncludePort);
28 $result = Address\IPv6::fromString($address, $mayIncludePort, $mayIncludeZoneID);
65 $result = Range\Subnet::fromString($range);
68 $result = Range\Pattern::fromString($range);
71 $result = Range\Single::fromString($range);
/plugin/ipban/ip-lib/src/Range/
H A DPattern.php68 public static function fromString($range) function in IPLib\\Range\\Pattern
74 … $result = new static(IPv4::fromString('0.0.0.0'), IPv4::fromString('255.255.255.255'), 4);
84 $fromAddress = IPv4::fromString(str_replace('*', '0', $range));
92 …$result = new static(IPv6::fromString('::'), IPv6::fromString('ffff:ffff:ffff:ffff:ffff:ffff:ffff:…
95 $fromAddress = IPv6::fromString(str_replace('*', '0', $range));
/plugin/ipban/ip-lib/src/Address/
H A DIPv4.php72 public static function fromString($address, $mayIncludePort = true) function in IPLib\\Address\\IPv4
231 … $exceptions[] = new AssignedRange(Subnet::fromString($exceptionRange), $exceptionType);
234 … $reservedRanges[] = new AssignedRange(Subnet::fromString($range), $data[0], $exceptions);
272 …return IPv6::fromString('2002:'.sprintf('%02x', $myBytes[0]).sprintf('%02x', $myBytes[1]).':'.spri…
H A DIPv6.php83 public static function fromString($address, $mayIncludePort = true, $mayIncludeZoneID = true) function in IPLib\\Address\\IPv6
99 $address6 = static::fromString($matches[1].'0:0', false);
101 $address4 = IPv4::fromString($matches[2], false);
380 … $exceptions[] = new AssignedRange(Subnet::fromString($exceptionRange), $exceptionType);
383 … $reservedRanges[] = new AssignedRange(Subnet::fromString($range), $data[0], $exceptions);
/plugin/icalevents/
H A Dsyntax-impl.php106 $fromString = $params['from'];
116 $hasRelativeRange = static::isRelativeDateTimeString($fromString)
125 $fromString,
140 $fromString,
152 $from = new DateTime($fromString);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInputStream.php39 public static function fromString(string $input) : InputStream function in Antlr\\Antlr4\\Runtime\\InputStream
54 return self::fromString($content);
/plugin/ipban/ip-lib/
H A DREADME.md49 $address = \IPLib\Address\IPv4::fromString('127.0.0.1');
55 $address = \IPLib\Address\IPv6::fromString('::1');
82 $range = \IPLib\Range\Subnet::fromString('127.0.0.1/24');
83 $range = \IPLib\Range\Subnet::fromString('::1/128');
89 $range = \IPLib\Range\Pattern::fromString('127.0.0.*');
90 $range = \IPLib\Range\Pattern::fromString('::*');
96 $range = \IPLib\Range\Single::fromString('127.0.0.1');
97 $range = \IPLib\Range\Single::fromString('::1');

123