Home
last modified time | relevance | path

Searched refs:row (Results 1 – 25 of 233) sorted by relevance

12345678910

/openbmc/phosphor-webui/app/common/components/table/
H A Dtable.js113 this.data.forEach((row) => {
114 if (row.uiData === undefined) {
117 row.uiData = [];
121 row.selectable = row.selectable === undefined ? true : row.selectable;
122 if (row.selectable) {
124 row.selected = false;
146 this.data.forEach((row, index) => {
147 if (!row.selected && row.selectable) {
148 row.selected = true;
163 this.data.forEach((row) => {
[all …]
/openbmc/u-boot/Documentation/sphinx/
H A DrstFlatTable.py190 for row in self.rows[:header_rows]:
191 thead += self.buildTableRowNode(row)
196 for row in self.rows[header_rows:]:
197 tbody += self.buildTableRowNode(row)
202 row = nodes.row()
215 row += entry
216 return row
235 row = self.parseRowItem(rowItem, rowNum)
236 self.rows.append(row)
284 for row in self.rows:
[all …]
/openbmc/phosphor-mrw-tools/
H A Dgen_settings.pl79 while (my $row = <$inFh>)
81 while ($row =~ /MRW_(.*?)\W/g)
85 $row =~ s/MRW_${setting}/$settingValue/g;
90 while ($row =~ /\[\[(.*?)\]\]/)
97 my $exprStart = index($row, $expr);
98 my $front = substr($row, 0, $exprStart - 2);
99 my $back = substr($row, $exprStart + length($expr) + 2);
101 $row = $front . $value . $back;
104 print $outFh $row;
/openbmc/openbmc-test-automation/lib/
H A Dutilities.py219 for row in rows:
222 row_list = row.split(" ")
224 row = DotDict()
225 row["row_num"] = row_list[0].rstrip(".")
226 row["host"] = row_list[1]
227 row["loss"] = row_list[2].rstrip("%")
228 row["snt"] = row_list[3]
229 row["last"] = row_list[4]
230 row["avg"] = row_list[5]
231 row["best"] = row_list[6]
[all …]
/openbmc/webui-vue/src/views/HardwareStatus/Inventory/
H A DInventoryTableAssembly.vue16 <template #cell(expandRow)="row">
22 :class="{ collapsed: !row.detailsShowing }"
23 @click="toggleRowDetails(row)"
31 <template #cell(identifyLed)="row">
33 v-if="hasIdentifyLed(row.item.identifyLed)"
34 v-model="row.item.identifyLed"
37 @change="toggleIdentifyLedValue(row.item)"
39 <span v-if="row.item.identifyLed">
47 <template #row-details="{ item }">
49 <b-row>
[all …]
H A DInventoryTableChassis.vue14 <template #cell(expandRow)="row">
20 :class="{ collapsed: !row.detailsShowing }"
21 @click="toggleRowDetails(row)"
34 <template #cell(identifyLed)="row">
36 v-if="hasIdentifyLed(row.item.identifyLed)"
37 v-model="row.item.identifyLed"
40 @change="toggleIdentifyLedValue(row.item)"
42 <span v-if="row.item.identifyLed">
49 <template #row-details="{ item }">
51 <b-row>
[all …]
H A DInventoryTableBmcManager.vue14 <template #cell(expandRow)="row">
20 :class="{ collapsed: !row.detailsShowing }"
21 @click="toggleRowDetails(row)"
35 <template #cell(identifyLed)="row">
37 v-if="hasIdentifyLed(row.item.identifyLed)"
38 v-model="row.item.identifyLed"
41 @change="toggleIdentifyLedValue(row.item)"
43 <span v-if="row.item.identifyLed">
51 <template #row-details="{ item }">
53 <b-row>
[all …]
/openbmc/u-boot/common/
H A Dlcd_console.c23 void lcd_set_row(short row) in lcd_set_row() argument
25 cons.curr_row = row; in lcd_set_row()
28 void lcd_position_cursor(unsigned col, unsigned row) in lcd_position_cursor() argument
31 cons.curr_row = min_t(short, row, cons.rows - 1); in lcd_position_cursor()
48 int i, row; in lcd_putc_xy0() local
53 for (row = 0; row < VIDEO_FONT_HEIGHT; row++) { in lcd_putc_xy0()
54 uchar bits = video_fontdata[c * VIDEO_FONT_HEIGHT + row]; in lcd_putc_xy0()
63 static inline void console_setrow0(struct console_t *pcons, u32 row, int clr) in console_setrow0() argument
67 row * VIDEO_FONT_HEIGHT * in console_setrow0()
224 unsigned int col, row; in do_lcd_setcursor() local
[all …]
/openbmc/qemu/hw/display/
H A Ddm163.c134 for (unsigned row = 0; row < RGB_MATRIX_NUM_ROWS; row++) { in dm163_propagate_outputs() local
135 if (s->activated_rows & (1 << row)) { in dm163_propagate_outputs()
136 s->buffer_idx_of_row[row] = s->last_buffer_idx; in dm163_propagate_outputs()
137 s->redraw |= (1 << row); in dm163_propagate_outputs()
255 static void update_row_persistence_delay(DM163State *s, unsigned row) in update_row_persistence_delay() argument
257 if (s->row_persistence_delay[row]) { in update_row_persistence_delay()
258 s->row_persistence_delay[row]--; in update_row_persistence_delay()
264 s->buffer_idx_of_row[row] = TURNED_OFF_ROW; in update_row_persistence_delay()
265 s->redraw |= (1 << row); in update_row_persistence_delay()
271 unsigned row) in update_display_of_row() argument
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djquery.treetable.js14 function Node(row, tree, settings) { argument
17 this.row = row;
22 this.id = this.row.data(this.settings.nodeIdAttr);
25 parentId = this.row.data(this.settings.parentIdAttr);
30 this.treeCell = $(this.row.children(this.settings.columnElType)[this.settings.column]);
57 this.row.removeClass("expanded").addClass("collapsed");
70 return this.row.hasClass("collapsed");
80 this.row.removeClass("collapsed").addClass("expanded");
86 if ($(this.row).is(":visible")) {
96 return this.row.hasClass("expanded");
[all …]
/openbmc/openbmc/poky/bitbake/lib/prserv/
H A Ddb.py49 for row in rows:
50 current_value = row[0]
75 row=data.fetchone()
76 if row is not None:
87 row=data.fetchone()
88 if row is not None:
100 row=data.fetchone()
101 if row is not None:
208 for row in data:
210 col["name"] = row["name"]
[all …]
/openbmc/u-boot/drivers/video/
H A Dvideo_osd-uclass.c18 int video_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf, in video_osd_set_mem() argument
23 return ops->set_mem(dev, col, row, buf, buflen, count); in video_osd_set_mem()
26 int video_osd_set_size(struct udevice *dev, uint col, uint row) in video_osd_set_size() argument
30 return ops->set_size(dev, col, row); in video_osd_set_size()
33 int video_osd_print(struct udevice *dev, uint col, uint row, ulong color, in video_osd_print() argument
38 return ops->print(dev, col, row, color, text); in video_osd_print()
H A Dvidconsole-uclass.c50 int vidconsole_set_row(struct udevice *dev, uint row, int clr) in vidconsole_set_row() argument
56 return ops->set_row(dev, row, clr); in vidconsole_set_row()
175 static void set_cursor_position(struct vidconsole_priv *priv, int row, int col) in set_cursor_position() argument
180 if (row >= priv->rows) in set_cursor_position()
181 row = priv->rows - 1; in set_cursor_position()
185 priv->ycur = row * priv->y_charsize; in set_cursor_position()
198 int *row, int *col) in get_cursor_position() argument
200 *row = priv->ycur / priv->y_charsize; in get_cursor_position()
231 int row = priv->row_saved; in vidconsole_escape_char() local
234 set_cursor_position(priv, row, col); in vidconsole_escape_char()
[all …]
H A Dsandbox_osd.c41 int sandbox_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf, in sandbox_osd_set_mem() argument
49 pos = 2 * (row * priv->width + col); in sandbox_osd_set_mem()
60 int _sandbox_osd_set_size(struct udevice *dev, uint col, uint row) in _sandbox_osd_set_size() argument
67 priv->height = row; in _sandbox_osd_set_size()
84 int sandbox_osd_set_size(struct udevice *dev, uint col, uint row) in sandbox_osd_set_size() argument
86 return _sandbox_osd_set_size(dev, col, row); in sandbox_osd_set_size()
89 int sandbox_osd_print(struct udevice *dev, uint col, uint row, ulong color, in sandbox_osd_print() argument
97 if (col >= priv->width || row >= priv->height) in sandbox_osd_print()
121 pos = row * priv->width + col; in sandbox_osd_print()
/openbmc/u-boot/include/
H A Dvideo_osd.h83 int (*set_mem)(struct udevice *dev, uint col, uint row, u8 *buf,
95 int (*set_size)(struct udevice *dev, uint col, uint row);
113 int (*print)(struct udevice *dev, uint col, uint row, ulong color,
160 int video_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf,
172 int video_osd_set_size(struct udevice *dev, uint col, uint row);
189 int video_osd_print(struct udevice *dev, uint col, uint row, ulong color,
/openbmc/qemu/hw/nvram/
H A Dbcm2835_otp.c20 uint32_t bcm2835_otp_get_row(BCM2835OTPState *s, unsigned int row) in bcm2835_otp_get_row() argument
22 assert(row <= BCM2835_OTP_ROW_COUNT && row >= 1); in bcm2835_otp_get_row()
24 return s->otp_rows[row - 1]; in bcm2835_otp_get_row()
27 void bcm2835_otp_set_row(BCM2835OTPState *s, unsigned int row, in bcm2835_otp_set_row() argument
30 assert(row <= BCM2835_OTP_ROW_COUNT && row >= 1); in bcm2835_otp_set_row()
33 s->otp_rows[row - 1] |= value; in bcm2835_otp_set_row()
/openbmc/u-boot/scripts/kconfig/
H A Dgconf.c76 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row);
1039 static gchar *row[COL_NUMBER]; in fill_row() local
1048 g_free(row[i]); in fill_row()
1049 bzero(row, sizeof(row)); in fill_row()
1051 row[COL_OPTION] = in fill_row()
1056 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1059 row[COL_COLOR] = g_strdup("DarkGray"); in fill_row()
1061 row[COL_COLOR] = g_strdup("Black"); in fill_row()
1066 row[COL_PIXBUF] = (gchar *) xpm_menu; in fill_row()
1068 row[COL_PIXVIS] = GINT_TO_POINTER(TRUE); in fill_row()
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/Sessions/
H A DSessions.vue4 <b-row class="align-items-end">
19 </b-row>
20 <b-row>
50 @row-selected="onRowSelected"
65 <template #cell(checkbox)="row">
67 v-model="row.rowSelected"
68 :data-test-id="`sessions-checkbox-selectRow-${row.index}`"
69 @change="toggleSelectRow($refs.table, row.index)"
78 <template #cell(actions)="row">
79 <table-row-action
[all …]
/openbmc/qemu/scripts/simplebench/
H A Dresults_to_text.py77 row = [case['id']]
81 row.append(result_to_text(res))
82 tab.append(row)
86 row = ['', ''] # case name and first column
94 row.append(cell)
111 row.append(cell)
112 tab.append(row)
/openbmc/webui-vue/docs/guide/components/table/
H A Dindex.md19 - `hover` - enables table row hover state
130 To add an expandable row in the table, add a column for the expand button in the
131 fields array. Include the tdClass `table-row-expand` to ensure icon rotation is
140 be the button's click event callback. Be sure to pass the `row` object to the
144 [row-details slot](https://bootstrap-vue.org/docs/components/table#comp-ref-b-table-slots)
145 to format the expanded row content. The slot has access to the row `item`
150 1. Add a column for the expansion row button with the tdClass,
151 `table-row-expand`
153 and row expansion toggling
154 3. Use the `#cell` slot to target the expandable row column and add the button
[all …]
/openbmc/webui-vue/src/views/Logs/EventLogs/
H A DEventLogs.vue4 <b-row class="align-items-start">
22 </b-row>
23 <b-row>
42 </b-row>
43 <b-row>
91 @row-selected="onRowSelected($event, filteredLogs.length)"
106 <template #cell(checkbox)="row">
108 v-model="row.rowSelected"
109 :data-test-id="`eventLogs-checkbox-selectRow-${row.index}`"
110 @change="toggleSelectRow($refs.table, row.index)"
[all …]
/openbmc/openbmc/poky/scripts/lib/build_perf/
H A D__init__.py18 for row in rows:
19 for i, val in enumerate(row):
22 for row in rows:
23 print(*[row_fmt[i].format(col, wid=col_widths[i]) for i, col in enumerate(row)])
/openbmc/webui-vue/src/components/Mixins/
H A DTableFilterMixin.js19 return tableData.filter((row) => {
21 const rowProperty = row[key];
51 return tableData.filter((row) => {
52 const date = row[propertyKey];
55 if (dateInMs >= startDateInMs && dateInMs <= endDateInMs) return row;
/openbmc/webui-vue/src/views/Logs/Dumps/
H A DDumps.vue4 <b-row>
10 </b-row>
11 <b-row>
14 <b-row class="align-items-start">
31 </b-row>
32 <b-row>
39 </b-row>
67 @row-selected="onRowSelected($event, filteredRows)"
81 <template #cell(checkbox)="row">
83 v-model="row.rowSelected"
[all …]
/openbmc/phosphor-webui/app/common/styles/base/
H A Dmixins.scss154 @mixin table-row-save {
155 @-webkit-keyframes row-flash {
163 @-moz-keyframes row-flash {
171 @-o-keyframes row-flash {
179 @keyframes row-flash {
187 .row-flash {
188 -webkit-animation: row-flash 1s infinite; /* Safari 4+ */
189 -moz-animation: row-flash 1s infinite; /* Fx 5+ */
190 -o-animation: row-flash 1s infinite; /* Opera 12+ */
191 animation: row-flash 1s infinite; /* IE 10+ */

12345678910