Home
last modified time | relevance | path

Searched refs:first (Results 101 – 125 of 1078) sorted by relevance

12345678910>>...44

/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.container.php437 $first = $this->get_first();
438 if (is_null($first)) {
444 $max_top = $first->get_top_margin();
445 $min_bottom = $first->get_bottom_margin();
509 if (!is_null($first) && $first->uid === $element->uid) {
874 $first = $this->get_first();
875 if (!is_null($first)) {
876 if (is_inline($first)) {
1042 $first =& $this->get_first();
1046 if (is_null($first)) { return false; };
[all …]
H A Dbox.table.cell.php274 $first =& $this->get_first();
275 if (!is_null($first) && $this->_suppress_first && $first->isBlockLevel()) {
276 $first->margin->top->value = 0;
277 $first->margin->top->percentage = null;
/plugin/subjectindex/inc/
H A Dmatcher.php13 public $first = array(); variable in SI_MatchEntry
48 $this->first = $matches[0];
/plugin/issuetracker/
H A Dfabtabulous.js49 return elm || this.menu.first();
51 return this.menu.first();
/plugin/nsindex/
H A Dsyntax.php220 $first = strtoupper(substr($data[$i]['sortkey'],0,1));
221 if ($first != $current_letter) {
222 $current_letter = $first;
/plugin/struct/renderer/
H A Dcsv.php15 protected $first = false; variable in renderer_plugin_struct_csv
67 * Opening a table row prevents the separator for the first following cell
72 $this->first = true;
76 * Output the delimiter (unless it's the first cell of this row) and the text wrapper
86 if (!$this->first) {
89 $this->first = false;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dhelp.phpt65 --stop-on-error Stop execution upon first error.
66 --stop-on-failure Stop execution upon first error or failure.
67 --stop-on-warning Stop execution upon first warning.
68 --stop-on-risky Stop execution upon first risky test.
69 --stop-on-skipped Stop execution upon first skipped test.
70 --stop-on-incomplete Stop execution upon first incomplete test.
H A Dhelp2.phpt66 --stop-on-error Stop execution upon first error.
67 --stop-on-failure Stop execution upon first error or failure.
68 --stop-on-warning Stop execution upon first warning.
69 --stop-on-risky Stop execution upon first risky test.
70 --stop-on-skipped Stop execution upon first skipped test.
71 --stop-on-incomplete Stop execution upon first incomplete test.
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Darrays.js7 assert.equal(_.first([1, 2, 3]), 1, 'can pull out the first element of an array');
8 assert.equal(_([1, 2, 3]).first(), 1, 'can perform OO-style "first()"');
9 assert.deepEqual(_.first([1, 2, 3], 0), [], 'returns an empty array when n <= 0 (0 case)');
11 assert.deepEqual(_.first([1, 2, 3], 2), [1, 2], 'can fetch the first n elements');
12 assert.deepEqual(_.first([1, 2, 3], 5), [1, 2, 3], 'returns the whole array if n > length');
13 var result = (function(){ return _.first(arguments); }(4, 3, 2, 1));
15 result = _.map([[1, 2, 3], [1, 2, 3]], _.first);
17 assert.equal(_.first(null), void 0, 'returns undefined when called on null');
20 assert.equal(_.first([]), void 0, 'return undefined when called on a empty array');
25 assert.strictEqual(_.head, _.first, 'is an alias for first');
[all …]
/plugin/tagsections/
H A Dstyle.less60 &:first-child {
64 &:first-child:before {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DDuplicateClassDefinitionSniff.php114 $first = $classNames[$scope][$name];
116 $data = array($tokens[$first]['line']);
/plugin/pdftools/tpl/checkliste2/
H A DREADME.txt13 first page of a document. If a file is does not exist the next more generic
20 * ''header_first.html'' -- Header for the first page
25 * ''footer_first.html'' -- Footer for the first page
28 * ''cover.html'' -- Added once before first page
/plugin/pdftools/tpl/kompakt/
H A DREADME.txt13 first page of a document. If a file is does not exist the next more generic
20 * ''header_first.html'' -- Header for the first page
25 * ''footer_first.html'' -- Footer for the first page
28 * ''cover.html'' -- Added once before first page
/plugin/pdftools/tpl/checkliste/
H A DREADME.txt13 first page of a document. If a file is does not exist the next more generic
20 * ''header_first.html'' -- Header for the first page
25 * ''footer_first.html'' -- Footer for the first page
28 * ''cover.html'' -- Added once before first page
/plugin/pdftools/tpl/info/
H A DREADME.txt13 first page of a document. If a file is does not exist the next more generic
20 * ''header_first.html'' -- Header for the first page
25 * ''footer_first.html'' -- Footer for the first page
28 * ''cover.html'' -- Added once before first page
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/src/
H A DEncoder.php224 $first = $bigram[0];
229 $j = $this->indexOf($word, $first, $i);
249 if ($word[$i] === $first && $i < count($word) - 1 && $word[$i + 1] === $second) {
250 $newWord[] = $first.$second;
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DCompiler.php192 $first = true;
194 if (!$first) {
197 $first = false;
/plugin/sequencediagram/bower_components/lodash/lib/main/
H A Dbuild-site.js123 const classes = $parent.find('.source,.text').first().attr('class').split(' ');
189 const $header = $('h1').first().remove();
190 const version = $header.find('span').first().text().trim().slice(1);
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/Processor/
H A DStaggeredDelimiterProcessor.php105 // Just use the first one in our list
106 $first = \reset($this->processors);
107 \assert($first instanceof DelimiterProcessorInterface);
109 return $first;
/plugin/mdpage/src/DokuWiki/Plugin/Mdpage/
H A DMarkdownRendererTrait.php69 $first = true;
71 if ($first) {
72 $first = false;
222 $first = true;
224 if ($first) {
225 $first = false;
/plugin/eventline/example/
H A DexampleDataForCutAndPaste.txt13 Ward Cunningham launches WikiWikiWeb, the first wiki. It provided pages that can be edited via the …
16 Tim Berners-Lee of CERN builds the first hypertext client, which he called World Wide Web, and the
19 The first Wiki written in PHP to be publicly released. (ref: http://en.wikipedia.org/wiki/PhpWiki, …
25 …s around 12 February 2001, and 10,000 articles around 7 September. In the first year of its existe…
/plugin/note/
H A Dsyntax.php142 static $first = true;
145 if ($first == true) {
147 $first = false;
/plugin/pdftools/tpl/onlylogo/
H A DREADME.txt13 first page of a document. If a file is does not exist the next more generic
20 * ''header_first.html'' -- Header for the first page
25 * ''footer_first.html'' -- Footer for the first page
28 * ''cover.html'' -- Added once before first page
/plugin/pdftools/tpl/standard/
H A DREADME.txt13 first page of a document. If a file is does not exist the next more generic
20 * ''header_first.html'' -- Header for the first page
25 * ''footer_first.html'' -- Footer for the first page
28 * ''cover.html'' -- Added once before first page
/plugin/pdftools/tpl/minimal/
H A DREADME.txt13 first page of a document. If a file is does not exist the next more generic
20 * ''header_first.html'' -- Header for the first page
25 * ''footer_first.html'' -- Footer for the first page
28 * ''cover.html'' -- Added once before first page

12345678910>>...44