Searched refs:row (Results 1 - 25 of 247) sorted by relevance

12345678910

/haiku-fatelf/src/libs/ncurses/test/
H A Dfirework.c63 explode(int row, int col) argument
67 mvprintw(row, col, "-");
72 mvprintw(row - 1, col - 1, " - ");
73 mvprintw(row + 0, col - 1, "-+-");
74 mvprintw(row + 1, col - 1, " - ");
79 mvprintw(row - 2, col - 2, " --- ");
80 mvprintw(row - 1, col - 2, "-+++-");
81 mvprintw(row + 0, col - 2, "-+#+-");
82 mvprintw(row + 1, col - 2, "-+++-");
83 mvprintw(row
120 int start, end, row, diff, flag = 0, direction; local
[all...]
/haiku-fatelf/src/preferences/fonts/
H A DFontView.cpp28 int32& row, bool withExtraSpace)
30 layout->AddItem(view->CreateFontsLabelLayoutItem(), 0, row);
31 layout->AddItem(view->CreateFontsMenuBarLayoutItem(), 1, row);
33 layout->AddItem(BSpaceLayoutItem::CreateGlue(), 2, row); local
35 layout->AddItem(view->CreateSizesLabelLayoutItem(), 3, row);
36 layout->AddItem(view->CreateSizesMenuBarLayoutItem(), 4, row);
38 row++;
40 layout->AddItem(BSpaceLayoutItem::CreateGlue(), 0, row); local
41 layout->AddView(view->GetPreviewBox(), 1, row, 4);
43 row
27 add_font_selection_view(BGridLayout* layout, FontSelectionView* view, int32& row, bool withExtraSpace) argument
66 int32 row = 0; local
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/base/
H A Dwresize.c55 int row; local
72 for (row = 0; row <= tst->_maxy; ++row) {
73 tst->_line[row].text = &pline[tst->_pary + row].text[tst->_parx];
88 int col, row, size_x, size_y; local
143 for (row = 0; row <= ToLines; ++row) {
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/widechar/
H A Dlib_in_wch.c47 int row, col; local
53 getyx(win, row, col);
55 *wcval = win->_line[row].text[col];
H A Dlib_in_wchnstr.c52 int row, col; local
55 getyx(win, row, col);
61 wchstr[j] = win->_line[row].text[col + j];
/haiku-fatelf/src/libs/pdflib/bind/pdflib/cpp/
H A Dchartab.cpp28 int row, col, font, page; local
74 /* print the row and column captions */
77 for (row = 0; row < 16; row++)
79 sprintf(buf, "x%X", row);
80 p.show_xy(buf, LEFT + row*XINCR, TOP + YINCR);
82 sprintf(buf, "%Xx", row);
83 p.show_xy(buf, LEFT - XINCR, TOP - row * YINCR);
94 for (row
[all...]
/haiku-fatelf/src/libs/print/libprint/
H A DValidRect.cpp32 INLINE bool isRowEmpty(const rgb_color *row);
40 INLINE void updateLeftBound(const rgb_color *row);
41 INLINE void updateRightBound(const rgb_color *row);
53 BoundsCalculator::isRowEmpty(const rgb_color *row) argument
56 if (!isEmpty(row)) {
59 row ++;
75 const uchar* row = getRow(fLeft, fTop); local
79 if (!isRowEmpty((const rgb_color*)row)) {
82 row += fBPR;
92 const uchar *row local
107 updateLeftBound(const rgb_color *row) argument
120 updateRightBound(const rgb_color *row) argument
176 const uchar *row = getRow(fLeft, fTop); local
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/perl/
H A Dchartab.pl62 # print the row and column captions
65 for ($row = 0; $row < 16; $row++)
67 $buf = sprintf("x%X", $row);
68 PDF_show_xy($p, $buf, LEFT + $row*XINCR, TOP + YINCR);
70 $buf = sprintf("%Xx", $row);
71 PDF_show_xy($p, $buf, LEFT - XINCR, TOP - $row * YINCR);
82 for ($row = 0; $row < 1
[all...]
H A Dquickreference.pl42 $row = 0;
48 if ($row == 0 && $col == 0) {
64 $width/$maxcol*$col, ($row + 1) * $height/$maxrow, "scale ". 1/$maxrow);
70 $row++;
72 if ($row == $maxrow) {
73 $row = 0;
79 if ($row != 0 || $col != 0) {
/haiku-fatelf/src/libs/pdflib/bind/pdflib/tcl/
H A Dchartab.tcl60 # print the row and column captions
64 for {set row 0} {$row < 16} {incr row} {
66 set text [format "x%X" $row]
68 [expr {$left + $row * $xincr}] [expr {$top + $yincr}]
70 set text [format "%Xx" $row]
72 [expr {$left - $xincr}] [expr {$top - $row * $yincr}]
81 for {set row 0} {$row < 1
[all...]
/haiku-fatelf/src/libs/alm/
H A DRowColumnManager.cpp41 Row* row = _FindRowFor(area); local
42 if (row == NULL) {
43 row = new Row(fLinearSpec, area->Top(), area->Bottom());
44 fRows.AddItem(row);
46 area->fRow = row;
47 row->fAreas.AddItem(area);
57 _UpdateConstraints(row);
65 Row* row = area->fRow; local
66 if (row) {
67 row
111 Row* row = fRows.ItemAt(i); local
134 _PreferredHeight(Row* row, double& weight) argument
189 _UpdateConstraints(Row* row) argument
[all...]
/haiku-fatelf/src/libs/ncurses/menu/
H A Dm_item_top.c44 | Function : int set_top_row(MENU *menu, int row)
46 | Description : Makes the specified row the top row in the menu
49 | E_BAD_ARGUMENT - not a menu pointer or invalid row
53 set_top_row(MENU * menu, int row) argument
57 T((T_CALLED("set_top_row(%p,%d)"), menu, row));
66 if ((row < 0) || (row > (menu->rows - menu->arows)))
72 if (row != menu->toprow)
77 item = menu->items[(menu->opt & O_ROWMAJOR) ? (row * men
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/python/
H A Dquickreference.py41 row = 0 variable
47 if row == 0 and col == 0:
63 width/maxcol*col, (row + 1) * height/maxrow, optlist)
69 row = row+1 variable
71 if row == maxrow:
72 row = 0 variable
76 if row != 0 or col != 0:
/haiku-fatelf/src/add-ons/print/drivers/pcl6/
H A DDeltaRowCompression.h21 // B_NO_MEMORY if the buffer for the seed row could not be allocated.
24 // Clears the seed row to the initial seed specified in the constructor
27 // Returns the size of the delta row.
28 // The size is 0 if the row is equal to the seed row (previous row).
29 // The seed row is updated only if updateSeedRow is true.
30 int CalculateSize(const uchar* row,
33 // Compresses the row using the delta row compressio
50 DiffersIndex(const uchar* row, int index) argument
62 DiffersLength(const uchar* row, int index) argument
[all...]
H A DDeltaRowCompression.cpp53 AbstractDeltaRowCompressor::CompressRaw(const uchar* row, bool updateSeedRow, argument
56 int index = DiffersIndex(row, 0);
67 int length = DiffersLength(row, index);
101 // copy row to seed row and delta row
102 uchar byte = row[index];
117 index = DiffersIndex(row, index);
126 AbstractDeltaRowCompressor::CalculateSize(const uchar* row, bool updateSeedRow) argument
128 return CompressRaw(row, updateSeedRo
133 Compress(const uchar* row) argument
142 test(AbstractDeltaRowCompressor* compressor, uchar* row) argument
[all...]
/haiku-fatelf/src/tests/kits/opengl/glinfo/
H A DExtensionsView.cpp59 BRow *row; local
60 while ((row = fExtensionsList->RowAt((int32)0, NULL)) != NULL) {
61 fExtensionsList->RemoveRow(row);
62 delete row;
85 BRow* row = new BRow(); local
86 row->SetField(new BStringField(extName), 0);
87 fExtensionsList->AddRow(row);
H A DCapabilitiesView.cpp111 BRow *row; local
112 while ((row = fCapabilitiesList->RowAt((int32)0, NULL)) != NULL) {
113 fCapabilitiesList->RemoveRow(row);
114 delete row;
128 BRow* row = new BRow(); local
129 row->SetField(new BStringField(B_TRANSLATE(name)), 0);
133 row->SetField(new BStringField(BString() << (int32)value), 1);
135 return row;
142 BRow* row = new BRow(); local
143 row
[all...]
/haiku-fatelf/src/apps/debuganalyzer/gui/
H A DAbstractGeneralPage.cpp39 int32 row = layout->CountRows(); local
40 layout->AddView(new LabelView(label), 0, row);
43 layout->AddView(dataView, 1, row);
/haiku-fatelf/src/libs/pdflib/bind/pdflib/c/
H A Dchartab.c31 int row, col, font, page; local
81 /* print the row and column captions */
84 for (row = 0; row < 16; row++)
86 sprintf(buf, "x%X", row);
87 PDF_show_xy(p, buf, LEFT + row*XINCR, TOP + YINCR);
89 sprintf(buf, "%Xx", row);
90 PDF_show_xy(p, buf, LEFT - XINCR, TOP - row * YINCR);
101 for (row
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/java/
H A Dchartab.java35 int row, col, font, page;
73 /* print the row and column captions */
76 for (row = 0; row < 16; row++)
78 buf ="x" + (Integer.toHexString(row)).toUpperCase();
79 p.show_xy(buf, LEFT + row*XINCR, TOP + YINCR);
81 buf = (Integer.toHexString(row)).toUpperCase() + "x";
82 p.show_xy(buf, LEFT - XINCR, TOP - row * YINCR);
97 for (row
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/java/servlet/
H A DchartabServlet.java36 int row, col, font, page;
76 /* print the row and column captions */
79 for (row = 0; row < 16; row++)
81 buf ="x" + (Integer.toHexString(row)).toUpperCase();
82 p.show_xy(buf, LEFT + row*XINCR, TOP + YINCR);
84 buf = (Integer.toHexString(row)).toUpperCase() + "x";
85 p.show_xy(buf, LEFT - XINCR, TOP - row * YINCR);
100 for (row
[all...]
/haiku-fatelf/src/libs/pdflib/bind/pdflib/php/
H A Dchartab.php59 /* print the row and column captions */
62 for ($row = 0; $row < 16; $row++)
64 $buf = sprintf("x%X", $row);
65 PDF_show_xy($p, $buf, LEFT + $row*XINCR, TOP + YINCR);
67 $buf = sprintf("%Xx", $row);
68 PDF_show_xy($p, $buf, LEFT - XINCR, TOP - $row * YINCR);
79 for ($row = 0; $row < 1
[all...]
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsimage.c56 unsigned char *row = pim->data + pim->bytes_per_row * y; local
58 c->r = row[x];
59 c->g = row[x];
60 c->b = row[x];
74 unsigned char *row = pim->data + pim->bytes_per_row * y; local
80 row[x] = (unsigned char)(gray);
82 row[x] = (unsigned char)(gray * alpha + row[x] * (1.0-alpha));
92 unsigned char *row = pim->data + pim->bytes_per_row * y; local
97 memset(row
108 unsigned char *row = pim->data + pim->bytes_per_row * y; local
130 unsigned char *row = pim->data + pim->bytes_per_row * y; local
148 unsigned char *row = pim->data + pim->bytes_per_row * y; local
166 unsigned char *row = pim->data + pim->bytes_per_row * y; local
191 unsigned char *row = pim->data + pim->bytes_per_row * y; local
213 unsigned char *row = pim->data + pim->bytes_per_row * y; local
240 unsigned char *row = pim->data + pim->bytes_per_row * y; local
262 unsigned char *row = pim->data + pim->bytes_per_row * y; local
279 unsigned char *row = pim->data + pim->bytes_per_row * y; local
301 unsigned char *row = pim->data + pim->bytes_per_row * y; local
322 unsigned char *row = pim->data + pim->bytes_per_row * y; local
353 unsigned char *row = pim->data + pim->bytes_per_row * y; local
374 unsigned char *row = pim->data + pim->bytes_per_row * y; local
391 unsigned char *row = pim->data + pim->bytes_per_row * y; local
417 unsigned char *row = pim->data + pim->bytes_per_row * y; local
440 unsigned char *row = pim->data + pim->bytes_per_row * y; local
478 unsigned char *row = pim->data + pim->bytes_per_row * y; local
501 unsigned char *row = pim->data + pim->bytes_per_row * y; local
515 unsigned char *row = pim->data + pim->bytes_per_row * y; local
534 unsigned char *row = pim->data + pim->bytes_per_row * y; local
589 unsigned char *row = data+bytes_per_row * i; local
617 unsigned char *row = data+bytes_per_row * i; local
665 unsigned char *row = pim->data+pim->bytes_per_row * i; local
722 unsigned char *row; local
[all...]
/haiku-fatelf/src/preferences/appearance/
H A DFontView.cpp38 int32& row, bool withExtraSpace)
40 layout->AddItem(view->CreateFontsLabelLayoutItem(), 0, row);
41 layout->AddItem(view->CreateFontsMenuBarLayoutItem(), 1, row);
43 layout->AddItem(BSpaceLayoutItem::CreateGlue(), 2, row); local
45 layout->AddItem(view->CreateSizesLabelLayoutItem(), 3, row);
46 layout->AddItem(view->CreateSizesMenuBarLayoutItem(), 4, row);
48 row++;
50 layout->AddItem(BSpaceLayoutItem::CreateGlue(), 0, row); local
51 layout->AddView(view->GetPreviewBox(), 1, row, 4);
53 row
37 add_font_selection_view(BGridLayout* layout, FontSelectionView* view, int32& row, bool withExtraSpace) argument
77 int32 row = 0; local
[all...]
/haiku-fatelf/src/preferences/sounds/
H A DHEventList.cpp102 BRow* row; local
103 while ((row = RowAt((int32)0, NULL)) != NULL) {
104 RemoveRow(row);
105 delete row;
115 HEventRow* row = (HEventRow*)CurrentSelection(); local
116 if (row != NULL) {
118 BMediaFiles().GetRefFor(fType, row->Name(), &ref);
123 row->SetPath(path.Path());
124 UpdateRow(row);
127 BMediaFiles().RemoveRefFor(fType, row
145 HEventRow* row = (HEventRow*)CurrentSelection(); local
[all...]

Completed in 195 milliseconds

12345678910