Home
last modified time | relevance | path

Searched refs:part (Results 76 – 100 of 948) sorted by relevance

12345678910>>...38

/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php183 foreach(explode(';', $value) as $part) {
186 if (empty($part)) {
189 list($partName, $partValue) = explode('=', $part);
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php183 foreach(explode(';', $value) as $part) {
186 if (empty($part)) {
189 list($partName, $partValue) = explode('=', $part);
/plugin/prolog/
H A Dattribute_include.php98 foreach($exValues as $part) {
99 $part = trim($part);
100 if(!empty($part))
101 array_push($parts, $part);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DCssRewriteFilter.php89 foreach (explode('/', $host.$path.$url) as $part) {
90 if ('..' === $part && count($parts) && '..' !== end($parts)) {
93 $parts[] = $part;
/plugin/accscounter/
H A Dadmin.php71 foreach ($counterarray as $part) {
72 $writing .= $part . "\n";
79 foreach ($newcontents as $part) {
80 $writing .= $part . "\n";
/plugin/tagadd/
H A Daction.php133 foreach($ns as $key => $part){
136 $output.=$part;
138 $root .=$part.':';
141 …put.="<a href='' onclick='tagadd__loadForm(\"".$root."\");return false;'><b>[".$part."]</b></a>->";
143 … $output.="<a href='' onclick='tagadd__loadForm(\"".$root."\");return false;'>[".$part."]</a>->";
/plugin/webdav/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php244 $d = function ($part) use ($parts) {
245 return !is_null($parts[$part]);
249 $r = function ($part) use ($parts) {
250 return $parts[$part];
/plugin/icalevents/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php268 $d = function($part) use ($parts) {
269 return !is_null($parts[$part]);
273 $r = function($part) use ($parts) {
274 return $parts[$part];
/plugin/codeprettify/code-prettify/src/
H A Dlang-dart.js42 [PR['PR_KEYWORD'], /^\b(?:import|library|part of|part|as|show|hide)\b/i],
/plugin/fckg/fckeditor/editor/js/
H A Dfckadobeair.js112 var part = targetWindowParts.shift() ;
113 if ( part.length > 0 )
114 toolbarTarget = toolbarTarget[ part ] ;
/plugin/rrdgraph/inc/
H A Drpncomputer.php89 foreach (explode(",", $expression) as $part) {
90 switch (trim($part)) {
145 $v = strtolower(trim($part));
/plugin/findologicxmlexport/vendor/sebastian/version/
H A DREADME.md40 * If `$path` is not (part of) a Git repository and `$release` is in `X.Y.Z` format then `$release` …
41 * If `$path` is not (part of) a Git repository and `$release` is in `X.Y` format then `$release` is…
42 * If `$path` is (part of) a Git repository and `$release` is in `X.Y.Z` format then the output of `…
43 * If `$path` is (part of) a Git repository and `$release` is in `X.Y` format then a string is retur…
/plugin/aichat/
H A DEmbeddings.php203 foreach ($parts as $part) {
204 if (trim((string)$part) == '') continue; // skip empty chunks
207 $embedding = $this->embedModel->getEmbedding($part);
217 $chunkList[] = new Chunk($page, $firstChunkID, $part, $embedding);
/plugin/var/
H A Dsyntax.php42 $part = substr($meta, 0, -1);
43 if ($part == 'ALIAS' && strpos ($this->aliasSeps, $meta[$length-1]) !== false) {
45 $meta = $part;
/plugin/tagsections/action/
H A Dajax.php115 foreach ($ns_parts as $level => $part) {
116 if ($tmp_ns) $tmp_ns .= ':'.$part;
117 else $tmp_ns = $part;
/plugin/icon/
H A Daction.php78 $part = $parts[$i];
80 if(preg_match($regex, $part, $m)) {
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DMinutesField.php31 foreach ($parts as $part) {
32 $minutes = array_merge($minutes, $this->getRangeForExpression($part, 59));
H A DHoursField.php39 foreach ($parts as $part) {
40 $hours = array_merge($hours, $this->getRangeForExpression($part, 23));
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php4 * This file is part of the Symfony package.
42 * - mb_substr - Get part of string
61 * - mb_strcut - Get part of string
646 public static function mb_stristr($haystack, $needle, $part = false, $encoding = null) argument
650 return self::getSubpart($pos, $part, $haystack, $encoding);
653 public static function mb_strrchr($haystack, $needle, $part = false, $encoding = null) argument
663 return self::getSubpart($pos, $part, $haystack, $encoding);
666 public static function mb_strrichr($haystack, $needle, $part = false, $encoding = null) argument
671 return self::getSubpart($pos, $part, $haystack, $encoding);
682 public static function mb_strstr($haystack, $needle, $part argument
800 getSubpart($pos, $part, $haystack, $encoding) global() argument
[all...]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DIntrospectionProcessor.php79 foreach ($this->skipClassesPartials as $part) {
80 if (strpos($trace[$i]['class'], $part) !== false) {
/plugin/swiftmail/Swift/Plugin/
H A DFileEmbedder.php409 $part = $this->message->getChild($id);
410 $body = $part->getData();
411 … if (!is_string($body) || substr(strtolower($part->getContentType()), 0, 5) != "text/") continue;
428 $part->setData($body);
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/
H A DDecoder.php307 $part = \ord($bytes[$i]);
311 $integer = ($integer << 8) + $part;
313 $integer = gmp_strval(gmp_add(gmp_mul($integer, 256), $part));
315 $integer = bcadd(bcmul($integer, 256), $part);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php293 foreach ($parts as $part) {
294 $xor = $part[0] == '1' ? PHP_INT_MIN : 0;
295 $part[0] = '0';
298 $xor ^ eval('return 0b' . $part . ';')
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php213 foreach (explode(';', $value) as $part) {
216 if (empty($part)) {
219 list($partName, $partValue) = explode('=', $part);
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php198 foreach (explode(';', $value) as $part) {
200 if (empty($part)) {
203 list($partName, $partValue) = explode('=', $part);

12345678910>>...38