| /plugin/asciidocjs/node_modules/lodash/ |
| D | _baseSet.js | 26 nested = object; 28 while (nested != null && ++index < length) { 37 var objValue = nested[key]; 38 newValue = customizer ? customizer(objValue, key, nested) : undefined; 45 assignValue(nested, key, newValue); 46 nested = nested[key];
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
| D | default.test | 11 {{ nested.definedVar |default('default') is same as('default') ? 'ko' : 'ok' }} 12 {{ nested['definedVar'] |default('default') is same as('default') ? 'ko' : 'ok' }} 13 {{ nested.zeroVar |default('default') is same as('default') ? 'ko' : 'ok' }} 14 {{ nested.emptyVar |default('default') is same as('default') ? 'ok' : 'ko' }} 15 {{ nested.nullVar |default('default') is same as('default') ? 'ok' : 'ko' }} 16 {{ nested.undefinedVar |default('default') is same as('default') ? 'ok' : 'ko' }} 17 {{ nested['undefinedVar'] |default('default') is same as('default') ? 'ok' : 'ko' }} 26 {{ 'o' ~ nested.nullVar |default('k') }} 34 Deep nested: 35 {{ nested.undefinedVar.foo.bar |default('default') is same as('default') ? 'ok' : 'ko' }} [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/ |
| D | defined.test | 10 {{ nested.definedVar is defined ? 'ok' : 'ko' }} 11 {{ nested['definedVar'] is defined ? 'ok' : 'ko' }} 12 {{ nested.definedVar is not defined ? 'ko' : 'ok' }} 13 {{ nested.undefinedVar is defined ? 'ko' : 'ok' }} 14 {{ nested['undefinedVar'] is defined ? 'ko' : 'ok' }} 15 {{ nested.undefinedVar is not defined ? 'ok' : 'ko' }} 16 {{ nested.zeroVar is defined ? 'ok' : 'ko' }} 17 {{ nested.nullVar is defined ? 'ok' : 'ko' }} 18 {{ nested.definedArray.0 is defined ? 'ok' : 'ko' }} 19 {{ nested['definedArray'][0] is defined ? 'ok' : 'ko' }} [all …]
|
| D | defined_for_attribute.test | 4 {{ attribute(nested, "definedVar") is defined ? 'ok' : 'ko' }} 5 {{ attribute(nested, "undefinedVar") is not defined ? 'ok' : 'ko' }} 6 {{ attribute(nested, definedVarName) is defined ? 'ok' : 'ko' }} 7 {{ attribute(nested, undefinedVarName) is not defined ? 'ok' : 'ko' }} 10 'nested' => [ 23 'nested' => [
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | xhtml.autoclose.inc.php | 4 function autoclose_tag(&$sample_html, $offset, $tags, $nested, $close) { argument 17 if (isset($nested[$tag])) { 18 $offset = $nested[$tag]($sample_html, $tag_end); 45 function autoclose_tag_cleanup(&$sample_html, $offset, $tags_raw, $nested, $close) { argument 59 if (isset($nested[$tag])) { 60 $offset = $nested[$tag]($sample_html, $tag_end);
|
| /plugin/odt/ODT/elements/ |
| D | ODTContainerElement.php | 16 public function addNestedContainer (iContainerAccess $nested); argument 85 public function addNestedContainer (iContainerAccess $nested) { argument 86 $this->nestedContainers [] = $nested;
|
| D | ODTElementFrame.php | 132 public function addNestedContainer (iContainerAccess $nested) { argument 133 $this->container->addNestedContainer ($nested); 294 $nested = $this->getNestedContainers (); 295 foreach ($nested as $container) {
|
| D | ODTElementTable.php | 285 public function addNestedContainer (iContainerAccess $nested) { argument 286 $this->container->addNestedContainer ($nested); 447 $nested = $this->getNestedContainers (); 448 foreach ($nested as $container) {
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ |
| D | ClassDefinitionOpeningBraceSpaceSniff.php | 98 $nested = false; 106 $nested = true; 117 if ($nested === true) {
|
| D | MissingColonSniff.php | 68 $nested = $phpcsFile->findNext(T_OPEN_CURLY_BRACKET, ($stackPtr + 1), $end); 69 if ($nested !== false) {
|
| D | ClassDefinitionNameSpacingSniff.php | 65 …$nested = $phpcsFile->findNext(T_OPEN_CURLY_BRACKET, ($stackPtr + 1), $tokens[$stackPtr]['bracket_… 66 if ($nested !== false) {
|
| /plugin/exttab3/ |
| D | example.txt | 16 {| title="nested table" 17 |+ //nested table// 47 {| title="nested table" 48 |+ //nested table//
|
| /plugin/groupmanager/ |
| D | style.css | 22 #nested { 26 #nested td {
|
| /plugin/asciidocjs/node_modules/lodash/fp/ |
| D | _baseConvert.js | 355 nested = result; 357 while (nested != null && ++index < length) { 359 value = nested[key]; 363 nested[key] = clone(index == lastIndex ? value : Object(value)); 365 nested = nested[key];
|
| /plugin/sequencediagram/bower_components/lodash/fp/ |
| D | _baseConvert.js | 355 nested = result; 357 while (nested != null && ++index < length) { 359 value = nested[key]; 363 nested[key] = clone(index == lastIndex ? value : Object(value)); 365 nested = nested[key];
|
| /plugin/ifauthex/lib/ |
| D | parser.php | 239 public function nested() { return $this->_nested; } function in AST\\ElementDefinition 245 public function __construct($name, $fixing, $tokenDefs, $priority, $arity=null, $nested=null) { argument 274 $this->_nested = $nested; 325 if ($this->nested() === null) { 329 if ($this->nested() !== null) { 362 private static function _getWrappedSequence($args, $position, $tokDefs, $nested) { argument 376 } else if ($nested && $args[$i]->definition() == $openTokDef) { 524 …$sequenceLength = self::_getWrappedSequence($args, $position, $this->tokenDefs(), $this->nested());
|
| /plugin/asciidocjs/node_modules/balanced-match/ |
| D | README.md | 17 console.log(balanced('{', '}', 'pre{in{nested}}post')); 26 { start: 3, end: 14, pre: 'pre', body: 'in{nested}', post: 'post' } 39 For the first non-nested matching pair of `a` and `b` in `str`, return an 54 For the first non-nested matching pair of `a` and `b` in `str`, return an
|
| /plugin/sequencediagram/bower_components/lodash/dist/ |
| D | lodash.fp.js | 435 nested = result; property 437 while (nested != null && ++index < length) { 439 value = nested[key]; 443 nested[key] = clone(index == lastIndex ? value : Object(value)); field 445 nested = nested[key];
|
| /plugin/asciidocjs/node_modules/function-bind/ |
| D | .eslintrc | 9 "max-nested-callbacks": [2, 3],
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | md1_inline_html_avanced.md | 5 And nested without indentation:
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/ |
| D | nested.test | 2 "filter" tags can be nested at will
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/ |
| D | nested.test | 2 nested "with" tags
|
| /plugin/mikioplugin/icons/bootstrap-icons/svg/ |
| H A D | list-nested.svg | 1 <svg class="bi bi-list-nested" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xml…
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/ |
| D | recursive.test | 2 "for" tags can be nested
|
| /plugin/exttab2/ |
| D | README.md | 15 2006-11-06 0.2.0 support nested table and many more ...
|