| /plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/ |
| D | JsonFormatter.php | 77 $normalized = $this->normalize($record); 79 if (isset($normalized['context']) && $normalized['context'] === []) { 81 unset($normalized['context']); 83 $normalized['context'] = new \stdClass; 86 if (isset($normalized['extra']) && $normalized['extra'] === []) { 88 unset($normalized['extra']); 90 $normalized['extra'] = new \stdClass; 94 return $this->toJson($normalized, true) . ($this->appendNewline ? "\n" : ''); 166 $normalized = []; 171 …$normalized['...'] = 'Over '.$this->maxNormalizeItemCount.' items ('.count($data).' total), aborti… [all …]
|
| D | ScalarFormatter.php | 43 $normalized = $this->normalize($value); 45 if (is_array($normalized)) { 46 return $this->toJson($normalized, true); 49 return $normalized;
|
| D | NormalizerFormatter.php | 150 $normalized = []; 155 …$normalized['...'] = 'Over ' . $this->maxNormalizeItemCount . ' items ('.count($data).' total), ab… 159 $normalized[$key] = $this->normalize($value, $depth + 1); 162 return $normalized;
|
| /plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
| D | MessageTrait.php | 72 $normalized = strtolower($header); 75 if (isset($new->headerNames[$normalized])) { 76 unset($new->headers[$new->headerNames[$normalized]]); 78 $new->headerNames[$normalized] = $header; 88 $normalized = strtolower($header); 91 if (isset($new->headerNames[$normalized])) { 92 $header = $this->headerNames[$normalized]; 95 $new->headerNames[$normalized] = $header; 104 $normalized = strtolower($header); 106 if (!isset($this->headerNames[$normalized])) { [all …]
|
| D | ServerRequest.php | 89 $normalized = []; 93 $normalized[$key] = $value; 95 $normalized[$key] = self::createUploadedFileFromSpec($value); 97 $normalized[$key] = self::normalizeFiles($value); 104 return $normalized;
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/ |
| D | MessageTrait.php | 76 $normalized = strtolower($header); 79 if (isset($new->headerNames[$normalized])) { 80 unset($new->headers[$new->headerNames[$normalized]]); 82 $new->headerNames[$normalized] = $header; 92 $normalized = strtolower($header); 95 if (isset($new->headerNames[$normalized])) { 96 $header = $this->headerNames[$normalized]; 99 $new->headerNames[$normalized] = $header; 108 $normalized = strtolower($header); 110 if (!isset($this->headerNames[$normalized])) { [all …]
|
| D | ServerRequest.php | 89 $normalized = []; 93 $normalized[$key] = $value; 95 $normalized[$key] = self::createUploadedFileFromSpec($value); 97 $normalized[$key] = self::normalizeFiles($value); 104 return $normalized;
|
| /plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/Slack/ |
| D | SlackRecord.php | 229 $normalized = $this->normalizerFormatter->format($fields); 231 $hasSecondDimension = count(array_filter($normalized, 'is_array')); 232 $hasNonNumericKeys = !count(array_filter(array_keys($normalized), 'is_numeric')); 235 ? Utils::jsonEncode($normalized, JSON_PRETTY_PRINT|Utils::DEFAULT_JSON_FLAGS) 236 : Utils::jsonEncode($normalized, Utils::DEFAULT_JSON_FLAGS); 350 $normalized = $this->normalizerFormatter->format($data); 353 foreach ($normalized as $key => $value) {
|
| /plugin/authgoogle/google/service/ |
| D | Google_Utils.php | 111 $normalized = array(); 113 $normalized[strtolower($key)] = $val; 115 return $normalized;
|
| /plugin/strata/helper/ |
| D | util.php | 132 function getIsaKey($normalized=true) { argument 134 if($normalized) $result = $this->normalizePredicate($result); 141 function getTitleKey($normalized=true) { argument 143 if($normalized) $result = $this->normalizePredicate($result);
|
| /plugin/rater/scripts/ |
| D | jquery.tablesorter.js | 259 normalized: [] property 282 cols.push(cache.normalized.length); // add position for rowCache 283 cache.normalized.push(cols); 330 n = c.normalized, 611 var orgOrderCol = cache.normalized[0].length - 1; 627 cache.normalized.sort(sortWrapper); 811 cache.normalized[pos[0]][pos[1]] = config.parsers[pos[1]].format(
|
| /plugin/wysiwyg/fckeditor/editor/_source/internals/ |
| D | fckdomtools.js | 566 GetNodeAddress : function( node, normalized ) argument 576 if ( normalized === true && 595 GetNodeFromAddress : function( doc, addr, normalized ) argument 601 if ( ! normalized ) 611 if ( normalized === true &&
|
| /plugin/geophp/vendor/funiq/geophp/src/Geometry/ |
| D | Geometry.php | 886 * @param null $normalized 891 public function project(Geometry $point, $normalized = null) argument 895 return $this->getGeos()->project($point->getGeos(), $normalized);
|
| /plugin/combo/ComboStrap/ |
| H A D | StringUtility.php | 40 public static function normalized($string) function in ComboStrap\\StringUtility
|
| /plugin/asciidocjs/node_modules/wrap-ansi/ |
| D | readme.md | 35 …styled by [`chalk`](https://github.com/chalk/chalk). Newline characters will be normalized to `\n`.
|
| /plugin/evesso/phpoauthlib/ |
| D | README.md | 97 * Extract normalized user data from OAuth Services with the library [PHPoAuthUserData](https://gith…
|
| /plugin/oauth/vendor/lusitanian/oauth/ |
| H A D | README.md | 122 * Extract normalized user data from OAuth Services with the library [PHPoAuthUserData](https://gith…
|
| /plugin/sphinxsearch-was/ |
| H A D | sphinxapi.php | 1409 $normalized = $len ? substr($response, $pos, $len) : ""; 1412 $res[] = array("tokenized" => $tokenized, "normalized" => $normalized);
|
| /plugin/sphinxsearch/ |
| D | sphinxapi.php | 1442 $normalized = $len ? substr ( $response, $pos, $len ) : ""; 1445 $res[] = array ( "tokenized"=>$tokenized, "normalized"=>$normalized );
|
| /plugin/matrixnotifierwas/vendor/psr/http-message/docs/ |
| D | PSR7-Interfaces.md | 58 | `getUploadedFiles()` | Retrieve normalized file upload data | |
|
| /plugin/authgooglesheets/vendor/guzzlehttp/psr7/ |
| D | README.md | 736 Returns a normalized URI. The scheme and host component are already normalized to lowercase per PSR… 806 Whether two URIs can be considered equivalent. Both URIs are normalized automatically before compar…
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/ |
| D | README.md | 790 Returns a normalized URI. The scheme and host component are already normalized to lowercase per PSR… 860 Whether two URIs can be considered equivalent. Both URIs are normalized automatically before compar…
|
| /plugin/diagramsnet/lib/js/grapheditor/ |
| D | Sidebar.js | 644 var normalized = tmp[i].replace(/\.*\d*$/, ''); 646 if (normalized != tmp[i]) 648 if (hash[normalized] == null) 650 hash[normalized] = true; 651 tagList.push(normalized);
|
| /plugin/asciidocjs/node_modules/yargs-parser/ |
| D | CHANGELOG.md | 268 * normalized keys were not enumerable ([#247](https://www.github.com/yargs/yargs-parser/issues/247)…
|
| /plugin/stlviewer/stlviewer/ |
| D | three.min.js | 2 …normalized&&(this.r/=255,this.g/=255,this.b/=255),this},e.toJSON=function(){return this.getHex()},…
|