Home
last modified time | relevance | path

Searched refs:TableRow (Results 1 – 25 of 1926) sorted by relevance

12345678910>>...78

/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/ttf-parser-0.3.0/scripts/
H A Dgen-tables.py148 class TableRow: class
161 TableRow(True, TTF_Tag(), 'ttcTag'),
172 TableRow(True, TTF_Offset32(), 'offset'),
173 TableRow(True, TTF_UInt32(), 'length'),
204 TableRow(True, TTF_FWORD(), 'lineGap'),
223 TableRow(True, TTF_Int16(), 'lsb'),
228 TableRow(False, TTF_Fixed(), 'version'),
231 TableRow(False, TTF_Int16(), 'lineGap'),
255 TableRow(False, TTF_Fixed(), 'version'),
271 TableRow(True, TTF_UInt16(), 'nameID'),
[all …]
/dports/devel/git-town/git-town-7.6.0/vendor/github.com/cucumber/gherkin-go/v11/gherkin-go-11.0.0/testdata/good/
H A Dvery_long.feature.tokens6 (6:7)TableRow://9:foo,15:bar
7 (7:7)TableRow://9:boz,15:boo
9 (9:7)TableRow://9:foo
26 (26:7)TableRow://9:foo
43 (43:7)TableRow://9:foo
60 (60:7)TableRow://9:foo
77 (77:7)TableRow://9:foo
94 (94:7)TableRow://9:foo
111 (111:7)TableRow://9:foo
128 (128:7)TableRow://9:foo
[all …]
H A Ddatatables.feature.tokens5 (5:7)TableRow://9:foo,15:bar
6 (6:7)TableRow://9:boz,15:boo
8 (8:7)TableRow://9:foo
10 (10:7)TableRow://11:foo,15:bar,23:boz
12 (12:7)TableRow://8:foo,12:,13:boz
14 (14:7)TableRow://9:foo,15:bar
16 (16:7)TableRow://9:boz,16:boo
18 (18:7)TableRow://9:boz2,16:boo2
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.UI.WebControls/
H A DTableRowCollection.cs61 public TableRow this [int index] {
62 get { return (TableRow) cc [index]; }
69 public int Add (TableRow row) in Add()
99 foreach (TableRow tr in rows) { in AddRange()
128 public int GetRowIndex (TableRow row) in GetRowIndex()
138 public void Remove (TableRow row) in Remove()
147 TableRow row = this [index] as TableRow; in RemoveAt()
164 cc.AddAt (index, (TableRow)value);
172 return Add (value as TableRow); in IList.Add()
187 AddAt (index, value as TableRow); in IList.Insert()
[all …]
/dports/devel/pecl-swoole/swoole-4.8.5/include/
H A Dswoole_table.h41 struct TableRow { struct
52 TableRow *next; argument
66 sw_memset_zero((char *) &lock_pid, sizeof(TableRow) - offsetof(TableRow, lock_pid)); in clear() argument
79 TableRow *current_;
151 void clear(TableRow *row);
172 TableRow **rows;
196 TableRow *set(const char *key, uint16_t keylen, TableRow **rowlock, int *out_flags);
197 TableRow *get(const char *key, uint16_t keylen, TableRow **rowlock);
258 TableRow *current() { in current()
281 void clear_row(TableRow *row) { in clear_row()
[all …]
/dports/cad/digital/Digital-0.27/src/main/java/de/neemann/digital/analyse/quinemc/
H A DTableRows.java39 public void add(TableRow tableRow) { in add()
88 public boolean contains(TableRow r) { in contains()
98 public Iterator<TableRow> iterator() { in iterator()
116 public TableRow get(int i) { in get()
129 private Iterator<TableRow> itemIter;
147 public TableRow next() { in next()
148 TableRow next = itemIter.next(); in next()
171 public boolean contains(TableRow r) { in contains()
182 for (TableRow tr : values) in addAll()
191 public void add(TableRow tableRow) { in add()
[all …]
H A DQuineMcCluskey.java27 private final ArrayList<TableRow> primes;
151 TableRow newRow = new TableRow(r1); in simplifyStep()
164 for (TableRow row : rows) in simplifyStep()
198 for (TableRow r : rows) { in toString()
202 for (TableRow r : newList) { in toString()
212 public ArrayList<TableRow> getPrimes() { in getPrimes()
243 for (TableRow r : rows) { in addAnd()
261 for (TableRow r : primes) in simplifyPrimes()
270 for (TableRow r1 : primes) in simplifyPrimes()
290 for (TableRow p : primes) in simplifyPrimes()
[all …]
H A DTableRow.java24 public final class TableRow implements Comparable<TableRow> { class
37 public TableRow(TableRow tr) { in TableRow() method in TableRow
48 public TableRow(int cols) { in TableRow() method in TableRow
61 public TableRow(int cols, int bitValue, int index, boolean dontCare) { in TableRow() method in TableRow
74 public TableRow(int cols, int bitValue) { in TableRow() method in TableRow
124 TableRow tableRow = (TableRow) o; in equals()
152 public int compareTo(TableRow tableRow) { in compareTo()
188 public TableRow addSource(Integer... s) { in addSource()
228 public int checkCompatible(TableRow r2) { in checkCompatible()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DTableRowCollection.cs58 public TableRow this[int index] {
71 public int Add(TableRow row) { in Add()
83 public void AddAt(int index, TableRow row) { in AddAt()
93 public void AddRange(TableRow[] rows) { in AddRange()
97 foreach(TableRow row in rows) { in AddRange()
118 public int GetRowIndex(TableRow row) { in GetRowIndex()
182 public void Remove(TableRow row) { in Remove()
204 AddAt(index, (TableRow)value);
219 return Add((TableRow) o); in IList.Add()
237 AddAt(index, (TableRow)o); in IList.Insert()
[all …]
/dports/devel/sentry-cli/sentry-cli-1.71.0/src/utils/
H A Dformatting.rs28 title_row: Option<TableRow>,
29 rows: Vec<TableRow>,
32 pub struct TableRow { struct
36 impl TableRow { impl
37 pub fn new() -> TableRow { in new()
38 TableRow { cells: vec![] } in new()
55 impl Default for TableRow { implementation
57 TableRow::new() in default()
69 pub fn title_row(&mut self) -> &mut TableRow { in title_row() argument
76 pub fn add_row(&mut self) -> &mut TableRow { in add_row() argument
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/printers/internalversion/
H A Dprinters.go752 row := metav1.TableRow{
898 row := metav1.TableRow{
919 row := metav1.TableRow{
955 row := metav1.TableRow{
984 row := metav1.TableRow{
1013 row := metav1.TableRow{
1061 row := metav1.TableRow{
1155 row := metav1.TableRow{
1220 row := metav1.TableRow{
1248 row := metav1.TableRow{
[all …]
H A Dprinters_test.go94 expected []metav1.TableRow
402 expected []metav1.TableRow
499 expected []metav1.TableRow
599 expected []metav1.TableRow
1179 expect []metav1.TableRow
1524 expect []metav1.TableRow
1678 expect []metav1.TableRow
1727 expect []metav1.TableRow
1778 expect []metav1.TableRow
1842 []metav1.TableRow{
[all …]
/dports/mail/fetchmail/fetchmail-6.4.28/contrib/
H A Dgotmail.html.awk38 Mails = Mails TableRow("start", MsgColor)
41 Mails = Mails TableRow("stop")
45 Times = Times TableRow("start", TimColor)
47 Times = Times TableRow("stop")
53 Errors = Errors TableRow("stop")
68 Stats = Stats TableRow("start", MsgColor)
72 Stats = Stats TableRow("stop")
79 Stats = Stats TableRow("start", ErrColor)
81 Stats = Stats TableRow("stop")
88 Stats = Stats TableRow("start", TimColor)
[all …]
/dports/mail/fetchmailconf/fetchmail-6.4.28/contrib/
H A Dgotmail.html.awk38 Mails = Mails TableRow("start", MsgColor)
41 Mails = Mails TableRow("stop")
45 Times = Times TableRow("start", TimColor)
47 Times = Times TableRow("stop")
53 Errors = Errors TableRow("stop")
68 Stats = Stats TableRow("start", MsgColor)
72 Stats = Stats TableRow("stop")
79 Stats = Stats TableRow("start", ErrColor)
81 Stats = Stats TableRow("stop")
88 Stats = Stats TableRow("start", TimColor)
[all …]
/dports/devel/pecl-swoole/swoole-4.8.5/src/memory/
H A Dtable.cc143 rows = (TableRow **) _memory; in create()
189 void TableRow::lock() { in lock()
256 TableRow *tmp_row = row; in forward()
278 TableRow *Table::get(const char *key, uint16_t keylen, TableRow **rowlock) { in get()
281 TableRow *row = hash(key, keylen); in get()
303 TableRow *Table::set(const char *key, uint16_t keylen, TableRow **rowlock, int *out_flags) { in set()
306 TableRow *row = hash(key, keylen); in set()
319 TableRow *new_row = (TableRow *) pool->alloc(0); in set()
360 TableRow *row = hash(key, keylen); in del()
366 TableRow *tmp, *prev = nullptr; in del()
[all …]
/dports/devel/bullet/bullet3-3.21/examples/ThirdPartyLibs/Gwen/Controls/Layout/
H A DTable.h22 class GWEN_EXPORT TableRow : public Base
26 GWEN_CONTROL_INLINE(TableRow, Base) in GWEN_CONTROL_INLINE() argument
34 virtual class TableRow* DynamicCastLayoutTableRow() in DynamicCastLayoutTableRow()
160 for (int i = 0; i < TableRow::MaxColumns; i++) in GWEN_CONTROL_INLINE()
194 TableRow* AddRow() in AddRow()
196 TableRow* row = new TableRow(this); in AddRow()
203 void AddRow(TableRow* pRow) in AddRow()
211 void Remove(TableRow* pRow) in Remove()
271 for (int i = 0; i < TableRow::MaxColumns; i++) in DoSizeToContents()
286 for (int i = 0; i < TableRow::MaxColumns; i++) in DoSizeToContents()
[all …]
/dports/devel/py-bullet3/bullet3-3.21/examples/ThirdPartyLibs/Gwen/Controls/Layout/
H A DTable.h22 class GWEN_EXPORT TableRow : public Base
26 GWEN_CONTROL_INLINE(TableRow, Base) in GWEN_CONTROL_INLINE() argument
34 virtual class TableRow* DynamicCastLayoutTableRow() in DynamicCastLayoutTableRow()
160 for (int i = 0; i < TableRow::MaxColumns; i++) in GWEN_CONTROL_INLINE()
194 TableRow* AddRow() in AddRow()
196 TableRow* row = new TableRow(this); in AddRow()
203 void AddRow(TableRow* pRow) in AddRow()
211 void Remove(TableRow* pRow) in Remove()
271 for (int i = 0; i < TableRow::MaxColumns; i++) in DoSizeToContents()
286 for (int i = 0; i < TableRow::MaxColumns; i++) in DoSizeToContents()
[all …]
/dports/cad/digital/Digital-0.27/src/test/java/de/neemann/digital/analyse/quinemc/
H A DQuineMcCluskeyExactCoverTest.java25 ArrayList<TableRow> primes = new ArrayList<>(); in testExactCoverLoop()
26 primes.add(new TableRow(9, 0).addSource(1,3,5,7,9)); in testExactCoverLoop()
27 primes.add(new TableRow(9, 1).addSource(0,1,2,3,5,6,7,8,9)); in testExactCoverLoop()
28 primes.add(new TableRow(9, 2).addSource(0,2,3,5,8,9)); in testExactCoverLoop()
29 primes.add(new TableRow(9, 3).addSource(1,2,4,6,8,9)); in testExactCoverLoop()
30 primes.add(new TableRow(9, 4).addSource(0,1,4,5,8,9)); in testExactCoverLoop()
31 primes.add(new TableRow(9, 5).addSource(2,3,6,8,9)); in testExactCoverLoop()
32 primes.add(new TableRow(9, 6).addSource(2,4,5,7,9)); in testExactCoverLoop()
33 primes.add(new TableRow(9, 7).addSource(0,1,3,6,7,9)); in testExactCoverLoop()
38 final ArrayList<TableRow> pri = qmc.getPrimes(); in testExactCoverLoop()
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/table/
H A Dtablerow.cxx45 TableRow::TableRow( const TableModelRef& xTableModel, sal_Int32 nRow, sal_Int32 nColumns ) in TableRow() function in sdr::table::TableRow
66 TableRow::~TableRow() in ~TableRow()
71 void TableRow::dispose() in dispose()
83 void TableRow::throwIfDisposed() const in throwIfDisposed()
90 TableRow& TableRow::operator=( const TableRow& r ) in operator =()
122 void TableRow::removeColumns( sal_Int32 nIndex, sal_Int32 nCount ) in removeColumns()
151 const TableModelRef& TableRow::getModel() const in getModel()
190 OUString SAL_CALL TableRow::getName() in getName()
196 void SAL_CALL TableRow::setName( const OUString& aName ) in setName()
294 Any SAL_CALL TableRow::getFastPropertyValue( sal_Int32 nHandle ) in getFastPropertyValue()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/table/
H A Dtablerow.cxx45 TableRow::TableRow( const TableModelRef& xTableModel, sal_Int32 nRow, sal_Int32 nColumns ) in TableRow() function in sdr::table::TableRow
66 TableRow::~TableRow() in ~TableRow()
71 void TableRow::dispose() in dispose()
83 void TableRow::throwIfDisposed() const in throwIfDisposed()
90 TableRow& TableRow::operator=( const TableRow& r ) in operator =()
122 void TableRow::removeColumns( sal_Int32 nIndex, sal_Int32 nCount ) in removeColumns()
151 const TableModelRef& TableRow::getModel() const in getModel()
190 OUString SAL_CALL TableRow::getName() in getName()
196 void SAL_CALL TableRow::setName( const OUString& aName ) in setName()
294 Any SAL_CALL TableRow::getFastPropertyValue( sal_Int32 nHandle ) in getFastPropertyValue()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-honeycode/include/aws/honeycode/model/
H A DTableRow.h34 class AWS_HONEYCODE_API TableRow
37 TableRow();
38 TableRow(Aws::Utils::Json::JsonView jsonValue);
39 TableRow& operator=(Aws::Utils::Json::JsonView jsonValue);
71 inline TableRow& WithRowId(const Aws::String& value) { SetRowId(value); return *this;} in WithRowId()
76 inline TableRow& WithRowId(Aws::String&& value) { SetRowId(std::move(value)); return *this;} in WithRowId()
81 inline TableRow& WithRowId(const char* value) { SetRowId(value); return *this;} in WithRowId()
112 inline TableRow& WithCells(const Aws::Vector<Cell>& value) { SetCells(value); return *this;} in WithCells()
118 … inline TableRow& WithCells(Aws::Vector<Cell>&& value) { SetCells(std::move(value)); return *this;} in WithCells()
124 …inline TableRow& AddCells(const Cell& value) { m_cellsHasBeenSet = true; m_cells.push_back(value);… in AddCells()
[all …]
/dports/textproc/py-pyexcel-ezodf/pyexcel-ezodf-0.3.4/tests/
H A Dtest_table_row.py20 from ezodf.table import TableRow
28 table_row = TableRow()
32 table_row = TableRow()
40 table_row = TableRow()
44 table_row = TableRow()
50 table_row = TableRow()
54 table_row = TableRow()
61 table_row = TableRow()
65 table_row = TableRow()
72 table_row = TableRow()
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKv3/GEDKeeper3/GKUI/Forms/
H A DMapsViewerWin.design.cs64 new TableRow { in InitializeComponent()
67 new TableRow { in InitializeComponent()
70 new TableRow { in InitializeComponent()
73 new TableRow { in InitializeComponent()
76 new TableRow { in InitializeComponent()
79 new TableRow { in InitializeComponent()
82 new TableRow { in InitializeComponent()
85 new TableRow { in InitializeComponent()
99 new TableRow { in InitializeComponent()
102 new TableRow { in InitializeComponent()
/dports/textproc/py-marko/marko-1.1.0/marko/ext/gfm/
H A Delements.py111 if TableRow.match(source) and not TableRow._is_delimiter:
115 num_of_cols = len(TableRow._cells)
117 TableRow.match(source)
118 and TableRow._is_delimiter
133 TableRow.match(source)
134 header = TableRow(TableRow.parse(source))
136 TableRow.match(source)
137 delimiters = TableRow._cells
155 if TableRow.match(source):
156 rv.children.append(TableRow(TableRow.parse(source)))
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-honeycode/source/model/
H A DTableRow.cpp21 TableRow::TableRow() : in TableRow() function in Aws::Honeycode::Model::TableRow
27 TableRow::TableRow(JsonView jsonValue) : in TableRow() function in Aws::Honeycode::Model::TableRow
34 TableRow& TableRow::operator =(JsonView jsonValue) in operator =()
56 JsonValue TableRow::Jsonize() const in Jsonize()

12345678910>>...78