Home
last modified time | relevance | path

Searched refs:entries (Results 1 – 25 of 364) sorted by relevance

12345678910>>...15

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEntries.php34 protected $entries = []; variable in FreeDSx\\Ldap\\Entry\\Entries
39 public function __construct(Entry ...$entries) argument
41 $this->entries = $entries;
48 public function add(Entry ...$entries) argument
50 $this->entries = array_merge($this->entries, $entries);
59 public function remove(Entry ...$entries) argument
61 foreach ($entries as $entry) {
62 if (($index = array_search($entry, $this->entries, true)) !== false) {
63 unset($this->entries[$index]);
79 return (array_search($entry, $this->entries, true) !== false);
[all …]
/plugin/bibtex/OSBib/
DPARSEXML.php26 function getEntry($entries)
29 foreach($entries as $entry)
36 $this->entries[] = $this->parse($xmlString);
43 $this->entries = array();
49 if(empty($this->entries))
50 $this->entries = FALSE;
51 $info['name'] = $this->entries[0]['_ELEMENTS'][0]['_ELEMENTS'][0]['_DATA'];
52 $info['description'] = $this->entries[0]['_ELEMENTS'][0]['_ELEMENTS'][1]['_DATA'];
53 $info['language'] = $this->entries[0]['_ELEMENTS'][0]['_ELEMENTS'][2]['_DATA'];
55 if(array_key_exists(3, $this->entries[0]['_ELEMENTS'][0]['_ELEMENTS']))
[all …]
/plugin/odt/ODT/css/
Dcssdocument.php29 return $this->doc->entries [$this->index]['element'];
39 return $this->doc->entries [$this->index]['attributes_array'];
82 if (!isset($this->doc->entries [$this->index]['pseudo_classes'])) {
86 $this->doc->entries [$this->index]['pseudo_classes']);
100 if (!isset($this->doc->entries [$this->index]['pseudo_elements'])) {
104 $this->doc->entries [$this->index]['pseudo_elements']);
119 return $this->doc->entries [$this->index]['properties'];
129 $this->doc->entries [$this->index]['properties'] = $properties;
144 public $entries = array (); variable in cssdocument
235 $this->entries [$index] = NULL;
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/Paging/
H A DPagingResponse.php26 private $entries; variable in FreeDSx\\Ldap\\Server\\Paging\\PagingResponse
39 * @param Entries $entries
44 Entries $entries, argument
48 $this->entries = $entries;
58 return $this->entries;
80 * @param Entries $entries The entries returned for this response.
85 Entries $entries, argument
89 $entries,
98 * @param Entries $entries The entries returned for this response.
101 public static function makeFinal(Entries $entries): self argument
[all …]
/plugin/zotero/
DZoteroRepository.php6 protected $entries = array(); variable in ZoteroRepository
13 $e = @$this->entries[$zoteroId];
29 foreach ($this->entries as $e)
41 return $this->entries;
44 public function updateAndSaveEntries(array $entries) argument
47 public function saveEntries(array $entries) argument
49 $this->entries = array();
50 $this->updateAndSaveEntries($entries);
/plugin/blogtng/db/
Dupdate0005.sql16 FROM entries
19 DROP TABLE entries;
20 CREATE TABLE entries ( table
33 CREATE UNIQUE INDEX idx_entries_pid ON entries(pid);
34 CREATE INDEX idx_entries_title ON entries(title);
35 CREATE INDEX idx_entries_created ON entries(created);
36 CREATE INDEX idx_entries_blog ON entries(blog);
38 INSERT INTO entries
Dupdate0004.sql58 FROM entries
61 DROP TABLE entries;
62 CREATE TABLE entries ( table
75 CREATE UNIQUE INDEX idx_entries_pid ON entries(pid);
76 CREATE INDEX idx_entries_title ON entries(title);
77 CREATE INDEX idx_entries_created ON entries(created);
78 CREATE INDEX idx_entries_blog ON entries(blog);
80 INSERT INTO entries
Dupdate0001.sql1 CREATE TABLE entries ( table
13 CREATE UNIQUE INDEX idx_entries_pid ON entries(pid);
14 CREATE INDEX idx_entries_title ON entries(title);
15 CREATE INDEX idx_entries_created ON entries(created);
16 CREATE INDEX idx_entries_blog ON entries(blog);
/plugin/swiftmail/Swift/Log/
DDefaultLog.php26 protected $entries = array(); variable in Swift_Log_DefaultLog
35 $this->entries[] = $type . " " . $text;
36 …if ($this->getMaxSize() > 0) $this->entries = array_slice($this->entries, (-1 * $this->getMaxSize(…
44 $ret = implode("\n", $this->entries);
55 $this->entries = null;
56 $this->entries = array();
/plugin/icalendar/
Dsyntax.php156 $entries = $this->_parseIcs($url, $from, $to, $previewDays, $numberOfEntries, $sort_descending);
166 foreach ($entries as $entry) {
278 $entries = array();
314 $entries[] = $entry;
320 usort($entries, 'compareByEndUnixDate');
323 usort($entries, 'compareByStartUnixDate');
326 $entries = array_reverse( $entries, true );
332 $entries = array_slice( $entries, 0, $numberOfEntries );
337 $entries = array_reverse( $entries, true );
340 $entries = array_reverse( $entries, true );
[all …]
/plugin/inlinejs/syntax/
Dpreloader.php79 protected $entries = null; variable in syntax_plugin_inlinejs_preloader
89 $this->entries[] = array(
97 $this->entries[] = array(
104 $this->entries[] = array(
111 $this->entries[] = array(
119 return count($this->entries);
134 $this->entries = array();
189 $data = array($this->opts, $this->entries);
191 $this->entries = null;
207 list($opts, $entries) = $data;
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResponse.php27 protected $entries; variable in FreeDSx\\Ldap\\Operation\\Response\\SearchResponse
31 * @param Entries $entries
33 public function __construct(LdapResult $result, Entries $entries) argument
35 $this->entries = $entries;
44 return $this->entries;
/plugin/miniblog/syntax/
Dentry.php45 $entries = plugin_load('helper', 'miniblog_entry')->entry_list('blog');
51 $more = ((count($entries) > $page+$num) ? ($page+$num)/$num : -1); // next page
52 $entries = array_slice($entries, $page, $num);
61 $this->render_twentyfifteen($renderer, $entries, $less, $more);
63 $this->render_default($renderer, $entries, $less, $more);
68 function render_default($renderer, $entries, $less, $more) { argument
72 foreach ($entries as $entry) {
91 function render_twentyfifteen($renderer, $entries, $less, $more) { argument
95 foreach ($entries as $entry) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidProvisioningPartner/
DDeviceMetadata.php25 public $entries; variable in Google\\Service\\AndroidProvisioningPartner\\DeviceMetadata
30 public function setEntries($entries) argument
32 $this->entries = $entries;
39 return $this->entries;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AlertCenter/
DCsvRow.php26 public $entries; variable in Google\\Service\\AlertCenter\\CsvRow
31 public function setEntries($entries) argument
33 $this->entries = $entries;
40 return $this->entries;
/plugin/bloglinks/
Daction.php88 $entries = $my->getBlog($namespace);
90 if (!$entries)
94 $entries = array_values($entries);
119 $curIndex = array_search($curPage, $entries);
127 if ($curIndex > 0 && $curIndex < count($entries) - 1) { // got a prev and a next
128 list ($next, $cur, $prev) = array_slice($entries, $curIndex -1, 3);
130 list ($cur, $prev) = array_slice($entries, $curIndex, 2);
132 list ($next, $cur) = array_slice($entries, $curIndex -1, 2);
/plugin/asciidocjs/node_modules/glob/
Dsync.js137 var entries = this._readdir(abs, inGlobStar)
140 if (!entries)
151 for (var i = 0; i < entries.length; i++) {
152 var e = entries[i]
247 var entries
267 entries = this._readdir(abs, false)
269 return entries
273 var entries
295 GlobSync.prototype._readdirEntries = function (abs, entries) { argument
300 for (var i = 0; i < entries.length; i ++) {
[all …]
/plugin/diagramsnet/lib/js/diagramly/vsdx/
Dimporter.js201 var array122 = (function (m) { if (m.entries == null)
202 m.entries = []; return m.entries; })(pages);
649 for (var k = 0; shapes.entries != null && k < shapes.entries.length; k++)
651 var layer = shapes.entries[k].getValue().layerMember;
703entries = (function (a) { var i = 0; return { next: function () { return i < a.length ? a[i++] : n… method
704 m.entries = []; return m.entries; })(shapes));
707 while ((entries.hasNext())) {
708 var entry = entries.next();
715 …t: function () { return i < a.length; } }; })(/* entrySet */ (function (m) { if (m.entries == null)
716 m.entries = []; return m.entries; })(connects));
[all …]
/plugin/gtime/gtlib/tsp/
DGTHashChain.php41 private $entries = array(); variable in GTHashChain
95 … array_push($this->entries, new GTHashEntry($algorithm, $direction, $siblingHash, $level));
119 foreach ($this->entries as $entry) {
137 $iter1 = new ArrayIterator($this->entries);
138 $iter2 = new ArrayIterator($hashChain->entries);
192 $i = count($this->entries) - 1;
199 $entry = $this->entries[$i--];
219 $entry = $this->entries[$i--];
238 $entry = $this->entries[$i--];
258 $entry = $this->entries[$i--];
[all …]
/plugin/mizarverifiabledocs/script/
H A Dmiz_parser.py71 entries, inline_taken = [], set()
83 entries.append(dict(start=m.start(), end=m.end(), label=lbl, kind=kind))
100 entries.append(dict(start=abs_pos, end=abs_pos, label=lbl, kind=kind))
110 entries.append(dict(start=abs_pos, end=abs_pos, label=lbl, kind=kind))
113 if not any(hdr_s <= e["start"] < hdr_e for e in entries):
116 entries.append(dict(start=hdr_s, end=hdr_e, label=lbl, kind="def"))
124 entries.append(dict(start=m.start(), end=m.end(), label=lbl, kind=kind))
133 entries.append(dict(start=m.start(), end=m.end(), label=lbl, kind=kind))
136 entries.sort(key=lambda d: d["start"])
137 internal_labels = {e["label"] for e in entries}
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
DLiasettingsCustomBatchRequest.php29 public function setEntries($entries) argument
31 $this->entries = $entries;
38 return $this->entries;
DReturnpolicyCustomBatchRequest.php29 public function setEntries($entries) argument
31 $this->entries = $entries;
38 return $this->entries;
DPosCustomBatchRequest.php29 public function setEntries($entries) argument
31 $this->entries = $entries;
38 return $this->entries;
DProductstatusesCustomBatchRequest.php29 public function setEntries($entries) argument
31 $this->entries = $entries;
38 return $this->entries;
DReturnaddressCustomBatchRequest.php29 public function setEntries($entries) argument
31 $this->entries = $entries;
38 return $this->entries;

12345678910>>...15