Home
last modified time | relevance | path

Searched refs:row (Results 176 – 200 of 634) sorted by relevance

12345678910>>...26

/plugin/strata/syntax/
H A Dtable.php78 // render each row
80 foreach($result as $row) {
85 $this->util->renderField($mode, $R, $this->triples, $f['aggregate']->aggregate($row[$f['variable']],$f['aggregateHint']), $f['typeName'], $f['hint'], $f['type'], $f['variable']);
110 foreach($result as $row) {
112 $this->util->renderField($mode, $R, $this->triples, $f['aggregate']->aggregate($row[$f['variable']],$f['aggregateHint']), $f['typeName'], $f['hint'], $f['type'], $f['variable']);
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DJTableRenderer.java401 int row = rowAtPoint(p); in dragOver() local
402 getSelectionModel().setSelectionInterval(row, row); in dragOver()
485 public Object getValueAt(int row, int col) in createModel() argument
487 return data[row][col]; in createModel()
500 public boolean isCellEditable(int row, int col) in createModel() argument
509 public void setValueAt(Object value, int row, int col) in createModel() argument
511 data[row][col] = value; in createModel()
512 fireTableCellUpdated(row, col); in createModel()
/plugin/shibbolethauth/files/
H A Dshibboleth.class.php603 $row = split(":",$line,5);
604 $groups = split(",",$row[4]);
605 $this->users[$row[0]]['pass'] = $row[1];
606 $this->users[$row[0]]['name'] = urldecode($row[2]);
607 $this->users[$row[0]]['mail'] = $row[3];
608 $this->users[$row[0]]['grps'] = $groups;
/plugin/pagestat/
H A Dremote.php115 while($row=$rt->fetch_assoc()){
116 $headwords[]=$row['word'];
117 $headwords_fm[]=$row;
154 while ($row = $rt->fetch_assoc()) {
155 $extwords[] = $row['word'];
/plugin/mediasyntax/tools/
H A Ddokuwiki2mediawiki.php44 if ($in_table) $row++;
125 $row=1; variable
127 $cells[$row]=explode("|",preg_replace("/^\|/","",$line));
216 $row=0; variable
223 $row=0; // the header row is row 0. It may exist or not. variable
/plugin/freechat/phpfreechat/src/containers/
H A Doracle.class.php194 $row = $res->fetchRow(DB_FETCHMODE_ASSOC);
201 if( $row['C'] == 0 )
312 $row = $res->fetchRow(DB_FETCHMODE_ASSOC);
315 if( $row['C'] == 0 )
346 $row = $res->fetchRow(DB_FETCHMODE_ASSOC);
347 $leafvalue = $row['LASTLEAF'];
/plugin/scrape/HTMLPurifier/Printer/
H A DHTMLDefinition.php
/plugin/htmlokay/
H A Dadmin.php194 $row = explode(":", $line, 5);
195 $groups = explode(",", $row[4]);
197 $this->users[$row[0]]['name'] = urldecode($row[2]);
198 $this->users[$row[0]]['mail'] = $row[3];
199 $this->users[$row[0]]['grps'] = $groups;
203 $this->groups[$grp][] = $row[0];
/plugin/btable/
H A Dexport.php52 foreach ($rows as $row) {
54 echo($row);
58 if ($content[$row][$column]) {
/plugin/btable2/
H A Dexport.php52 foreach ($rows as $row) {
54 echo($row);
58 if ($content[$row][$column]) {
/plugin/database2/
H A Dmedia.php270 foreach ( $rows as $row )
271 $data .= $db->__csvLine( $row );
301 foreach ( $rows as $row )
304 $row['ctime'] = date( 'r', $row['ctime'] );
306 $data .= $db->__csvLine( $row );
/plugin/sqlite/
H A DSQLiteDB.php219 * Query one single row
229 $row = $stmt->fetch(\PDO::FETCH_ASSOC);
231 if (is_array($row) && count($row)) {
232 return $row;
243 * @return array|null Either the inserted row or null if nothing was inserted
392 while ($row = $res->fetch(\PDO::FETCH_ASSOC)) {
396 }, $row));
/plugin/tablelayout/script/
H A Dscript.js116 $rowsToBeSearched.each(function (index, row) { argument
118 var hideRow = jQuery(row).find('td,th').toArray().some(function (cell, index) {
126 jQuery(row).css('display', (globalRowShow && !hideRow) ? 'table-row' : 'none');
145 var columnCount = $table.find('tr').toArray().reduce(function (max, row) { argument
146 return Math.max(max, jQuery(row).find('td,th').length);
/plugin/sql/
H A Dsyntax.php156 foreach ($result as $row) {
158 foreach ($row as $cell) {
172 foreach ($result as $row) {
174 foreach ($row as $name => $cell) {
/plugin/aichat/script/
H A DAIChatChat.js196 this.#history.forEach(row => {
197 this.displayMessage(row[0]);
198 this.displayMessage(row[1], row[2]);
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.print.less36 .fc-row {
53 .fc tbody .fc-row {
59 .fc tbody .fc-row .fc-content-skeleton {
65 .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
70 .fc tbody .fc-row .fc-content-skeleton table {
71 /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
82 display: table-row !important; }
167 .fc-row {
/plugin/twofactorgoogleauth/
H A DQRCode.php75 foreach ($code['b'] as $y => $row) {
76 foreach ($row as $x => $val) {
479 $row = array();
481 $row[] = 0;
483 $matrix[] = $row;
537 $row = $size - 1;
542 if (!$matrix[$row][$col]) {
546 if (!$matrix[$row][$col - 1]) {
550 $row += $dir;
551 if ($row < 0 || $row >= $size) {
[all …]
/plugin/csv/syntax/
H A Dtable.php93 foreach ($data as $row) {
105 if ($row[$j] === '') {
121 $lines = explode("\n", $row[$i]);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DMock.php45 foreach($this->calendars as $row) {
46 if ($row['principaluri'] == $principalUri) {
47 $r[] = $row;
/plugin/watchcycle/
H A Daction.php140 $row = $sqlite->res2row($res);
149 if (!$row) {
159 if ($row['cycle'] != $watchcycle['cycle']) {
163 if ($row['maintainer'] != $watchcycle['maintainer']) {
167 if ($row['last_maintainer_rev'] != $last_maintainer_rev) {
172 if ($row['uptodate'] !== (string)(int)$uptodate) {
/plugin/solr/
H A Dhelper.php325 foreach($namespaces as $row) {
327 $depth = substr_count($row['id'], ':');
329 $row['id'],
331 in_array($row['id'], $options['selected']) ? ' selected="selected"' : '',
332 …ons['depth_char'], $depth * $options['depth_indent']).preg_replace('/[a-z0-9_]+:/', '', $row['id'])
/plugin/crossdbsqlclient/syntax/
H A Ddbwrapper.php55 while ( $row = oci_fetch_assoc ( $rs ) )
56 $dbArray [] = $row;
194 foreach ( $rows as $nr => $row ) {
199 foreach ( $row as $column => $value ) {
211 $row [$column] = "<td class=\"$class\">" . $cell . "</td>\n";
215 array_unshift ( $row, '<td class="counter col0 rightalign">' . ++ $counter . "</td>\n" );
230 $rows [$nr] = '<tr class="' . $classes . '">' . implode ( '', $row ) . "</tr>\n";
/plugin/dokugitviewer/
H A Dgit-utils.inc.php33 $row = array(
39 $result[] = $row;
/plugin/struct/types/
H A DTag.php67 foreach ($rows as $row) {
69 'label' => $row['value'],
70 'value' => $row['value']
/plugin/do/
H A Dhelper.php225 foreach ($res as $row) {
226 $key = $row['page'] . $row['md5'];
228 $result[$key] = $row;
233 if ($row['user'] !== null) {
234 $result[$key]['users'][] = $row['user'];

12345678910>>...26