Home
last modified time | relevance | path

Searched refs:parts (Results 76 – 100 of 925) sorted by last modified time

12345678910>>...37

/plugin/copycode/
H A DLICENSE250 10. If you wish to incorporate parts of the Program into other free
321 parts of the General Public License. Of course, the commands you use may
/plugin/tag/
H A DCOPYING254 10. If you wish to incorporate parts of the Program into other free
327 parts of the General Public License. Of course, the commands you use may
/plugin/bureaucracy/
H A DLICENSE250 10. If you wish to incorporate parts of the Program into other free
321 parts of the General Public License. Of course, the commands you use may
/plugin/htmlok/
H A DLICENSE250 10. If you wish to incorporate parts of the Program into other free
321 parts of the General Public License. Of course, the commands you use may
/plugin/gitbacked/
H A DLICENSE250 10. If you wish to incorporate parts of the Program into other free
321 parts of the General Public License. Of course, the commands you use may
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DSizeConverter.php53 $res = preg_match('/^(?P<size>[-0-9.,]+([eE]\-?[0-9]+)?)?(?P<unit>[%a-z-]+)?$/', $size, $parts);
59 $unit = !empty($parts['unit']) ? $parts['unit'] : null;
60 $size = !empty($parts['size']) ? (float) $parts['size'] : 0.0;
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DLICENSE.txt250 10. If you wish to incorporate parts of the Program into other free
/plugin/dw2pdf/vendor/mpdf/mpdf/ttfonts/
H A DGNUFreeFontinfo.txt20 * ISO 8859 parts 1-15
/plugin/combo/ComboStrap/
H A DLocalPath.php362 $parts = null;
388 $parts[] = substr($workingPath, strlen($parent) + $lastSep);
408 if ($parts !== null) {
412 $parts = array_reverse($parts);
413 $realPath .= implode($this->getDirectorySeparator(), $parts);
H A DMediaMarkup.php444 $parts = explode('|', $match, 2);
446 $ref = $parts[0];
451 if (isset($parts[1])) {
452 $mediaMarkup->setLabel($parts[1]);
H A DConditionalValue.php51 $parts = explode("-", $value);
53 foreach ($parts as $key => $part) {
H A DHttp.php122 $parts = parse_url($url);
123 $fp = fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80, $errno, $errstr, 30);
124 $out = "GET " . $parts['path'] . "?" . $parts['query'] . " HTTP/1.1\r\n";
125 $out .= "Host: " . $parts['host'] . "\r\n";
H A DWikiPath.php157 $parts = preg_split('/' . WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT . '/', $path);
158 switch ($parts[0]) {
161 $parts = array_splice($parts, 1);
173 $parts = array_splice($parts, 1);
195 $countParts = sizeof($parts);
196 if ($countParts > 0 && $parts[$countParts - 1] === "") {
198 $parts = array_splice($parts,
[all...]
H A DSlug.php38 $parts = explode(WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT, $string);
39 $parts = array_map(function ($e) use ($excludedCharacters) {
46 }, $parts);
48 $slug = implode(WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT, $parts);
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DXpath.php250 $parts = explode('"', $literal);
251 foreach ($parts as $part) {
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DAbstractField.php63 $parts = array_map('trim', explode('-', $value, 2));
65 return $dateValue >= $parts[0] && $dateValue <= $parts[1];
78 $parts = array_map('trim', explode('/', $value, 2));
79 $stepSize = isset($parts[1]) ? (int) $parts[1] : 0;
85 if (($parts[0] == '*' || $parts[0] === '0')) {
89 $range = explode('-', $parts[0], 2);
H A DCronExpression.php18 * Schedule parts must map to:
34 * @var array CRON expression parts
49 * @var array Order in which to test of cron parts
339 $parts = array();
346 $parts[$position] = $part;
353 foreach ($parts as $position => $part) {
378 $this->fieldFactory->getField(0)->increment($nextRun, $invert, isset($parts[0]) ? $parts[0] : null);
H A DDayOfWeekField.php91 $parts = explode('-', $value);
92 if ($parts[0] == '7') {
93 $parts[0] = '0';
94 } elseif ($parts[1] == '0') {
95 $parts[1] = '7';
97 $value = implode('-', $parts);
H A DHoursField.php18 public function increment(DateTime $date, $invert = false, $parts = null) argument
23 if (is_null($parts) || $parts == '*') {
37 $parts = strpos($parts, ',') !== false ? explode(',', $parts) : array($parts);
39 foreach ($parts as $part) {
H A DMinutesField.php18 public function increment(DateTime $date, $invert = false, $parts = null) argument
20 if (is_null($parts)) {
29 $parts = strpos($parts, ',') !== false ? explode(',', $parts) : array($parts);
31 foreach ($parts as $part) {
/plugin/combo/ComboStrap/Web/
H A DUrl.php153 $parts = explode($separator, $string);
156 }, $parts);
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.4.js171 if(option.indexOf("=")!=-1){var parts=option.split("=");
172 name=parts[0];
173 value=eval(unescape(parts[1]))
1126 }else{var parts=tail.split("/");
1127 return head+parts.slice(0,parts.length-1).join("/")+"/"+url
1153 ++i){try{var parts=args[i].split("=");
1154 if(parts.length==2){if(parts[1].length>maxValueLength){parts[
4021 Parts(parts) global() argument
[all...]
/plugin/combo/syntax/
H A Dminimap.php159 $parts = explode(':', $nameSpacePath);
160 $lastContainingNameSpace = $parts[count($parts) - 1];
194 // Suppress the parts in the name with the regexp defines in the 'suppress' params
/plugin/combo/
H A DLICENSE250 10. If you wish to incorporate parts of the Program into other free
321 parts of the General Public License. Of course, the commands you use may
/plugin/combo/vendor/dragonmantank/cron-expression/
H A DREADME.md54 A CRON expression is a string representing the schedule for a particular command to execute. The parts of a CRON schedule are as follows:

12345678910>>...37