/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
D | last.test | 2 "last" filter 4 {{ [1, 2, 3, 4]|last }} 5 {{ {a: 1, b: 2, c: 3, d: 4}|last }} 6 {{ '1234'|last }} 7 {{ arr|last }} 8 {{ 'Ä€é'|last }} 9 {{ ''|last }}
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Files/ |
D | ClosingTagSniff.php | 59 for ($last = ($phpcsFile->numTokens - 1); $last > 0; $last--) { 60 if (trim($tokens[$last]['content']) !== '') { 65 if ($tokens[$last]['code'] === T_CLOSE_TAG) { 67 $fix = $phpcsFile->addFixableError($error, $last, 'NotAllowed'); 69 $phpcsFile->fixer->replaceToken($last, '');
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Files/ |
D | ClosingTagSniff.php | 67 for ($last = ($phpcsFile->numTokens - 1); $last > 0; $last--) { 68 if (trim($tokens[$last]['content']) !== '') { 73 if ($tokens[$last]['code'] === T_CLOSE_TAG) { 75 $fix = $phpcsFile->addFixableError($error, $last, 'NotAllowed'); 78 $phpcsFile->fixer->replaceToken($last, $phpcsFile->eolChar); 79 … $prev = $phpcsFile->findPrevious(PHP_CodeSniffer_Tokens::$emptyTokens, ($last - 1), null, true);
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
D | last.rst | 1 ``last`` 5 The ``last`` filter was added in Twig 1.12.2. 7 The ``last`` filter returns the last "element" of a sequence, a mapping, or 12 {{ [1, 2, 3, 4]|last }} 15 {{ { a: 1, b: 2, c: 3, d: 4 }|last }} 18 {{ '1234'|last }}
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Exclusion/ |
D | DisjunctExclusionStrategyTest.php | 22 … $last = $this->getMockBuilder('JMS\Serializer\Exclusion\ExclusionStrategyInterface')->getMock(), 30 $last->expects($this->never()) 43 … $last = $this->getMockBuilder('JMS\Serializer\Exclusion\ExclusionStrategyInterface')->getMock(), 51 $last->expects($this->once()) 66 … $last = $this->getMockBuilder('JMS\Serializer\Exclusion\ExclusionStrategyInterface')->getMock(), 74 $last->expects($this->once()) 89 … $last = $this->getMockBuilder('JMS\Serializer\Exclusion\ExclusionStrategyInterface')->getMock(), 97 $last->expects($this->never()) 110 … $last = $this->getMockBuilder('JMS\Serializer\Exclusion\ExclusionStrategyInterface')->getMock(), 118 $last->expects($this->once()) [all …]
|
/plugin/fckg/ |
D | script.js | 41 var index, chars, match, stack = [], last = html; 43 stack.last = function(){ function 51 if ( !stack.last() || !special[ stack.last() ] ) { 96 html = html.replace(new RegExp("(.*)<\/" + stack.last() + "[^>]*>"), function(all, text){ 106 parseEndTag( "", stack.last() ); 109 if ( html == last ) 111 last = html; 119 while ( stack.last() && inline[ stack.last() ] ) { 120 parseEndTag( "", stack.last() ); 124 if ( closeSelf[ tagName ] && stack.last() == tagName ) {
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Networkconnectivity/ |
D | LogEntryOperation.php | 24 public $last; variable in Google\\Service\\Networkconnectivity\\LogEntryOperation 43 public function setLast($last) argument 45 $this->last = $last; 49 return $this->last;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Logging/ |
D | LogEntryOperation.php | 33 public $last; variable in Google\\Service\\Logging\\LogEntryOperation 70 public function setLast($last) argument 72 $this->last = $last; 79 return $this->last;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/ |
D | V2LogEntryOperation.php | 33 public $last; variable in Google\\Service\\ServiceControl\\V2LogEntryOperation 70 public function setLast($last) argument 72 $this->last = $last; 79 return $this->last;
|
/plugin/asciidocjs/node_modules/core-js/modules/ |
D | _microtask.js | 9 var head, last, notify; 21 else last = undefined; 24 } last = undefined; 63 if (last) last.next = task; 67 } last = task;
|
/plugin/asciidocjs/node_modules/core-js/library/modules/ |
D | _microtask.js | 9 var head, last, notify; 21 else last = undefined; 24 } last = undefined; 63 if (last) last.next = task; 67 } last = task;
|
/plugin/asciidocjs/node_modules/acorn/src/ |
D | lval.js | 69 let last = exprList[end - 1] 70 if (last && last.type == "RestElement") { 72 } else if (last && last.type == "SpreadElement") { 73 last.type = "RestElement" 74 let arg = last.argument 81 if (isBinding && last && last.type === "RestElement" && last.argument.type !== "Identifier") 82 this.unexpected(last.argument.start)
|
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/ |
D | lval.js | 66 let last = exprList[end - 1] 67 if (last && last.type == "RestElement") { 69 } else if (last && last.type == "SpreadElement") { 70 last.type = "RestElement" 71 let arg = last.argument 78 if (isBinding && last && last.type === "RestElement" && last.argument.type !== "Identifier") 79 this.unexpected(last.argument.start)
|
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/ |
D | Parser.php | 460 $last = array_pop($this->_trace); 462 if ($last instanceof Rule\Entry) { 463 $zeRule = $this->_rules[$last->getRule()]; 465 } elseif ($last instanceof Rule\Ekzit) { 466 $zeRule = $this->_rules[$last->getRule()]; 468 } elseif ($last instanceof Rule\Token) { 481 $rule = $last->getRule(); 482 $next = $last->getData() + 1; 483 $this->_depth = $last->getDepth(); 484 $this->_todo = $last->getTodo(); [all …]
|
/plugin/datatables/assets/datatables.net-buttons/css/ |
D | mixins.scss | 63 > :last-child { 69 &.two-column > :last-child, 70 &.three-column > :last-child, 71 &.four-column > :last-child { 89 > :last-child { 98 > :last-child { 107 > :last-child { 122 > :last-child { 142 > :last-child { 159 > :last-child { [all …]
|
D | buttons.foundation.min.css | 1 …last-child{max-height:100vh;overflow:auto}div.dt-buttons.button-group.two-column>:last-child,div.d…
|
D | buttons.foundation.css | 207 div.dt-buttons.button-group.fixed > :last-child { 211 …roup.two-column > :last-child, div.dt-buttons.button-group.three-column > :last-child, div.dt-butt… 219 ….two-column > :last-child > *, div.dt-buttons.button-group.three-column > :last-child > *, div.dt-… 226 div.dt-buttons.button-group.two-column > :last-child { 233 div.dt-buttons.button-group.three-column > :last-child { 240 div.dt-buttons.button-group.four-column > :last-child { 250 div.dt-buttons.button-group.columns > :last-child { 259 div.dt-buttons.button-group.columns > :last-child .dt-button { 264 …lumns.dtb-b3 > :last-child, div.dt-buttons.button-group.columns.dtb-b2 > :last-child, div.dt-butto… 277 div.dt-buttons.button-group.columns > :last-child { [all …]
|
D | buttons.jqueryui.css | 281 div.dt-button-collection.fixed > :last-child { 285 …lection.two-column > :last-child, div.dt-button-collection.three-column > :last-child, div.dt-butt… 293 …ion.two-column > :last-child > *, div.dt-button-collection.three-column > :last-child > *, div.dt-… 300 div.dt-button-collection.two-column > :last-child { 307 div.dt-button-collection.three-column > :last-child { 314 div.dt-button-collection.four-column > :last-child { 324 div.dt-button-collection.columns > :last-child { 333 div.dt-button-collection.columns > :last-child .dt-button { 338 ….columns.dtb-b3 > :last-child, div.dt-button-collection.columns.dtb-b2 > :last-child, div.dt-butto… 351 div.dt-button-collection.columns > :last-child { [all …]
|
/plugin/fckg/scripts/ |
D | script-cmpr.js | 1 …last=function(){return this[this.length-1]};while(m){q=true;if(!r.last()||!g[r.last()]){if(m.index… function
|
/plugin/sketchcanvas/phplib/ |
D | image.php | 356 $last = $pts[count($pts)-1]; variable 359 …if(isset($last["dx"]) && isset($last["dy"]) && ($last["dx"] !== $last["x"] || $last["dy"] !== $las… 360 $a[0] = array($last["dx"], $last["dy"]); 361 …else if(isset($last["cx"]) && isset($last["cy"]) && ($last["cx"] !== $last["x"] || $last["cy"] !==… 362 $a[0] = array($last["cx"], $last["cy"]); 365 $a[1] = array($last["x"], $last["y"]);
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/ |
D | Sea.php | 214 $last = 0; 218 self::initial_reordering_syllable($info, $GSUBdata, $scriptblock, $last, $i); 219 $last = $i; 220 $last_syllable = $info[$last]['syllable']; 223 self::initial_reordering_syllable($info, $GSUBdata, $scriptblock, $last, $count); 290 $last = 0; 294 self::final_reordering_syllable($info, $GSUBdata, $scriptblock, $last, $i); 295 $last = $i; 296 $last_syllable = $info[$last]['syllable']; 299 self::final_reordering_syllable($info, $GSUBdata, $scriptblock, $last, $count);
|
/plugin/autoindex/ |
D | syntax.php | 73 $last = ''; 76 if ($first !== $last) { 77 if ($last !== '') { 82 $last = $first; 95 if ($last !== '') {
|
/plugin/wordimport/docx/ |
D | Document.php | 23 $last = null; 31 $last && 32 get_class($obj) === get_class($last) 35 } elseif ($last) { 40 $last = $obj;
|
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
D | dhtmlxgantt_multiselect.js | 161 var last = gantt.$data.tasksStore.getSelectedId(); 162 if (last && gantt.isTaskExists(last)) 163 return last; 220 var last = this.getLastSelected(); 221 if (!last) 223 if (!(gantt.isTaskExists(last) && gantt.isTaskExists(id))) 225 …return !!(gantt.calculateTaskLevel(gantt.getTask(last)) == gantt.calculateTaskLevel(gantt.getTask(… 249 var last = this.getLastSelected(); 266 if (!last) 267 last = target_ev; [all …]
|
/plugin/editsections/action/ |
D | es.php | 204 $last = max(count($edits)-1,0); 205 for ($i=0; $i<=$last; $i++) { 208 $start = $edits[min($i+1,$last)][1][0]; 209 $level = $edits[min($i+1,$last)][1][2]; 210 $name = $edits[min($i+1,$last)][1][3]; 221 $end = $edits[min($i+1,$last)][1][1]; 229 $edits[max($last-1,0)][1][1] = 0; // set new last section 230 $edits[$last][1][0] = -1; // hide old last section
|