/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/ |
H A D | ASN1.php | 529 * @param array $mapping 602 if (isset($mapping['min']) && isset($mapping['max'])) { 674 if (isset($mapping['min']) && isset($mapping['max'])) { 854 * @param array $mapping 869 * @param array $mapping 882 if (isset($mapping['default']) && $source === $mapping['default']) { 901 if (isset($mapping['min']) && isset($mapping['max'])) { 1048 if (isset($mapping['min']) && $mapping['min'] >= 1 && $size < $mapping['min']) { 1144 if (isset($mapping['explicit']) || $mapping['type'] == self::TYPE_CHOICE) { 1146 $tag = ($mapping['class'] << 6) | 0x20 | $mapping['cast']; [all …]
|
/plugin/sequencediagram/bower_components/lodash/lib/fp/ |
H A D | build-modules.js | 9 const mapping = require('../common/mapping'); constant 16 mapping.aryMethod[1], 17 mapping.aryMethod[2], 18 mapping.aryMethod[3], 19 mapping.aryMethod[4] 54 return _.has(mapping.aliasToReal, name); 89 'name': _.get(mapping.aliasToReal, moduleName, moduleName), 90 'mapping': mapping property in getTemplate.data 127 _.each([mapping.aliasToReal, mapping.remap], data => {
|
H A D | build-doc.js | 8 const mapping = require('../common/mapping'); constant 17 mapping,
|
/plugin/sequencediagram/bower_components/lodash/fp/ |
H A D | _baseConvert.js | 1 var mapping = require('./_mapping'), variable 197 var aryMethodKeys = keys(mapping.aryMethod); 279 var indexes = mapping.iterateeRearg[name]; 283 var n = !isLib && mapping.iterateeAry[name]; 317 var data = mapping.methodSpread[name], 336 ? rearg(func, mapping.methodRearg[name] || mapping.aryRearg[n]) 478 if (mapping.mutate.array[realName]) { 481 else if (mapping.mutate.object[realName]) { 484 else if (mapping.mutate.set[realName]) { 528 each(mapping.aryMethod[aryKey], function(key) { [all …]
|
/plugin/sequencediagram/bower_components/lodash/lib/fp/template/doc/ |
H A D | wiki.jst | 85 <%= toFuncList(_.difference(mapping.aryMethod[1], _.keys(mapping.skipFixed))) %> 88 <%= toFuncList(_.difference(mapping.aryMethod[2], _.keys(mapping.skipFixed))) %> 91 <%= toFuncList(_.difference(mapping.aryMethod[3], _.keys(mapping.skipFixed))) %> 94 <%= toFuncList(_.difference(mapping.aryMethod[4], _.keys(mapping.skipFixed))) %> 116 <%= toArgOrder(mapping.aryRearg[2]) %> 119 <%= toArgOrder(mapping.aryRearg[3]) %> 122 <%= toArgOrder(mapping.aryRearg[4]) %> 127 <%= toFuncList(_.keys(mapping.methodSpread)) %> 130 <%= toFuncList(_.keys(mapping.skipRearg)) %> 147 <%= toFuncList(_.keys(mapping.remap)) %> [all …]
|
/plugin/elasticsearch/vendor/ruflin/elastica/src/ |
H A D | Mapping.php | 14 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html 38 * Sets the mapping properties. 50 * Gets the mapping properties. 60 * Sets the mapping _meta. 66 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-meta.html 83 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html 146 * Converts the mapping to an array. 158 * Submits the mapping and sends it to the server. 161 * @param array $query Query string parameters to send with mapping 176 * Creates a mapping objec 184 create($mapping) global() argument [all...] |
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/ |
H A D | TextStream.php | 47 public function setMapping($mapping) argument 49 $this->mapping = $mapping; 56 return $this->mapping;
|
H A D | AudioStream.php | 105 public function setMapping($mapping) argument 107 $this->mapping = $mapping; 114 return $this->mapping;
|
/plugin/sequencediagram/bower_components/lodash/dist/ |
H A D | lodash.fp.js | 81 var mapping = __webpack_require__(2), 277 var aryMethodKeys = keys(mapping.aryMethod); 359 var indexes = mapping.iterateeRearg[name]; 363 var n = !isLib && mapping.iterateeAry[name]; 397 var data = mapping.methodSpread[name], 416 ? rearg(func, mapping.methodRearg[name] || mapping.aryRearg[n]) 558 if (mapping.mutate.array[realName]) { 561 else if (mapping.mutate.object[realName]) { 564 else if (mapping.mutate.set[realName]) { 608 each(mapping.aryMethod[aryKey], function(key) { [all …]
|
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/ |
H A D | YtsBasicTests.yml | 85 a mapping. 94 A value in a mapping can be a sequence. 105 A value in a mapping can be another mapping. 124 A mapping can contain any assortment 159 If you are adding a mapping to a sequence, you 160 can place the mapping on the same line as the 172 you can add a sequence inside of a mapping without 185 A merge key ('<<') can be used in a mapping to insert other mappings. If 187 pairs is inserted into the current mapping. 189 mapping: [all …]
|
H A D | YtsNullsAndEmpties.yml | 13 You can represent the empty mapping 14 with an empty inline mapping.
|
/plugin/findologicxmlexport/vendor/symfony/yaml/ |
H A D | Inline.php | 409 $len = \strlen($mapping); 415 switch ($mapping[$i]) { 430 $isKeyQuoted = \in_array($mapping[$i], ['"', "'"], true); 431 $key = self::parseScalar($mapping, $flags, [':', ' '], $i, false, []); 437 if (false === $i = strpos($mapping, ':', $i)) { 449 …if (!$isKeyQuoted && (!isset($mapping[$i + 1]) || !\in_array($mapping[$i + 1], [' ', ',', '[', ']'… 458 if (':' === $mapping[$i] || ' ' === $mapping[$i]) { 464 $tag = self::parseTag($mapping, $i, $flags); 465 switch ($mapping[$i]) { 468 $value = self::parseSequence($mapping, $flags, $i, $references); [all …]
|
H A D | CHANGELOG.md | 19 * duplicate mapping keys throw a `ParseException` 20 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS` 63 * Deprecated support for implicitly parsing non-string mapping keys as strings. 92 * Omitted mapping values will be parsed as `null`. 94 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0. 106 when the mapping key is not quoted and will lead to a `ParseException` in 115 * Support for silently ignoring duplicate mapping keys in YAML has been 163 * Deprecated usage of a colon in an unquoted mapping value
|
/plugin/combo/vendor/symfony/yaml/ |
H A D | Inline.php | 371 // nested mapping 379 // embedded mapping? 409 * Parses a YAML mapping. 415 private static function parseMapping(string $mapping, int $flags, int &$i = 0, array &$references = []) argument 418 $len = \strlen($mapping); 424 switch ($mapping[$i]) { 440 $isKeyQuoted = \in_array($mapping[$i], ['"', "'"], true); 441 $key = self::parseScalar($mapping, $flags, [':', ' '], $i, false); 444 throw new ParseException('Missing mapping key.', self::$parsedLineNumber + 1, $mapping); [all...] |
H A D | CHANGELOG.md | 55 * Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.0. 72 * duplicate mapping keys throw a `ParseException` 73 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS` 116 * Deprecated support for implicitly parsing non-string mapping keys as strings. 145 * Omitted mapping values will be parsed as `null`. 147 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0. 159 when the mapping key is not quoted and will lead to a `ParseException` in 168 * Support for silently ignoring duplicate mapping keys in YAML has been 216 * Deprecated usage of a colon in an unquoted mapping value
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | css.property.stringset.class.php | 7 function CSSPropertyStringSet($inherit, $inherit_text, $mapping) { argument 10 $this->_mapping = $mapping; 17 $this->_keys = $mapping;
|
H A D | converter.class.php | 47 function something_to_utf8($html, &$mapping) { argument 49 $replacement = code_to_utf8($mapping[$html{$i}]);
|
H A D | box.inline.php | 188 $mapping = $manager_encoding->get_mapping($char); 196 if (is_null($mapping)) { 216 if (isset($mapping[$encoding])) { 217 $word .= $mapping[$encoding]; 226 reset($mapping); 227 list($encoding, $add) = each($mapping); 229 $word = $mapping[$encoding];
|
/plugin/diagramsnet/lib/plugins/ |
H A D | animation.js | 40 function mapCell(cell, clone, mapping) argument 42 mapping = (mapping != null) ? mapping : new Object(); 43 mapping[cell.id] = clone; 49 mapCell(cell.getChildAt(i), clone.getChildAt(i), mapping); 52 return mapping; 89 var mapping = mapCell(editorUi.editor.graph.getModel().getRoot(), graph.getModel().getRoot()); 112 var cell = mapping[tokens[1]];
|
/plugin/mellelexport/ |
H A D | renderer.php | 312 $mapping = $m[$tag]; 316 $mapping = $m[$key]; 323 if (!is_array($mapping)) { 330 if (($this->pTagOpen OR $this->sectionTagOpen) AND isset($mapping['template_p_open'])) { 331 $mapping['template'] = $mapping['template_p_open']; 337 $mapping['template'] = $mapping['template_level_0']; 345 $templateParts = explode($mapping['replacement'], $mapping['template']); 432 …$string = str_replace($mapping['replacement'], $args[0], self::cleanTemplate($mapping['template'])… 455 $doc = str_replace($mapping['subpattern'], $args, $doc);
|
/plugin/refnotes/ |
H A D | core.php | 182 protected $mapping; variable in refnotes_core 190 $this->mapping = array(); 256 $this->mapping[$ns] = $namespaceName; 264 $this->mapping = array_diff($this->mapping, array($namespaceName)); 294 if (($note == NULL) && array_key_exists($namespaceName, $this->mapping)) { 295 $scope = $this->getNamespace($this->mapping[$namespaceName])->getActiveScope(); 446 * Collect mapping information from the page
|
/plugin/elasticsearch/helper/ |
H A D | client.php | 185 $mapping = new \Elastica\Mapping(); 186 $mapping->setProperties($props); 187 return $mapping->send($index);
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
H A D | reverse.rst | 7 The ``reverse`` filter reverses a sequence, a mapping, or a string: 45 * ``preserve_keys``: Preserve keys when reversing a mapping or a sequence.
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/ |
H A D | 609260ad1d5998be2ca09ff1fe237efa.asciidoc | 1 // mapping.asciidoc:211
|
H A D | 12433d2b637d002e8d5c9a1adce69d3b.asciidoc | 1 // indices/put-mapping.asciidoc:84
|