Home
last modified time | relevance | path

Searched refs:m_table (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DFixedTableLayout.cpp85 unsigned nEffCols = m_table->numEffCols(); in calcWidthArray()
90 for (RenderTableCol* col = m_table->firstColumn(); col; col = col->nextColumn()) { in calcWidthArray()
109 m_table->appendColumn(span); in calcWidthArray()
114 if (span < m_table->spanOfEffCol(currentEffectiveColumn)) { in calcWidthArray()
115 m_table->splitColumn(currentEffectiveColumn, span); in calcWidthArray()
119 spanInCurrentEffectiveColumn = m_table->spanOfEffCol(currentEffectiveColumn); in calcWidthArray()
132 RenderTableSection* section = m_table->topNonEmptySection(); in calcWidthArray()
157 float eSpan = m_table->spanOfEffCol(currentColumn); in calcWidthArray()
185 Length tableLogicalWidth = m_table->style()->logicalWidth(); in applyPreferredLogicalWidthQuirks()
187 …minWidth = maxWidth = max<int>(minWidth, tableLogicalWidth.value() - m_table->bordersPaddingAndSpa… in applyPreferredLogicalWidthQuirks()
[all …]
DAutoTableLayout.cpp51 …for (RenderObject* child = m_table->children()->firstChild(); child; child = child->nextSibling())… in recalcColumn()
131 …if (m_table->document().inQuirksMode() && columnLayout.maxLogicalWidth > columnLayout.logicalWidth… in recalcColumn()
145 unsigned nEffCols = m_table->numEffCols(); in fullRecalc()
152 for (RenderTableCol* column = m_table->firstColumn(); column; column = column->nextColumn()) { in fullRecalc()
161 unsigned effCol = m_table->colToEffCol(currentColumn); in fullRecalc()
163 …if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) =… in fullRecalc()
212 TextAutosizer::TableLayoutScope textAutosizerTableLayoutScope(m_table); in computeIntrinsicLogicalWidths()
221 bool scaleColumns = shouldScaleColumns(m_table); in computeIntrinsicLogicalWidths()
253 Length tableLogicalWidth = m_table->style()->logicalWidth(); in applyPreferredLogicalWidthQuirks()
263 const Length& styleMaxLogicalWidth = m_table->style()->logicalMaxWidth(); in applyPreferredLogicalWidthQuirks()
[all …]
DTableLayout.h36 : m_table(table) in TableLayout()
52 RenderTable* m_table; variable
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCCombo3.java45 private final Table m_table; field in CCombo3
84 m_table = new Table(m_popup, SWT.FULL_SELECTION); in CCombo3()
85 addEvents(m_table, m_tableListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut}); in CCombo3()
87 new TableColumn(m_table, SWT.NONE); in CCombo3()
100 || m_table.isFocusControl(); in CCombo3()
186 m_table.setSelection(new TableItem[]{item});
193 int selectionIndex = m_table.getSelectionIndex();
197 selectionIndex = m_table.getItemCount() - 1;
199 m_table.setSelection(selectionIndex);
202 m_table.setSelection((selectionIndex + 1) % m_table.getItemCount());
[all …]
DCTableCombo.java50 protected Table m_table; field in CTableCombo
70 m_table = new Table(m_popup, SWT.FULL_SELECTION); in init()
71 new TableColumn(m_table, SWT.NONE); in init()
82 if (m_table == event.widget) { in init()
150 m_table.addListener(tableEvents[i], listener); in init()
200 int index = m_table.getSelectionIndex(); in handleTableEvent()
204 TableItem item = m_table.getItem(index); in handleTableEvent()
208 m_table.setSelection(index); in handleTableEvent()
279 Rectangle listRect = m_table.getBounds(); in handlePopupEvent()
354 if (focusControl == m_table in handleTextEvent()
[all …]
DCComboBox.java71 private TableViewer m_table; field in CComboBox
175 Table table = m_table.getTable(); in createText()
187 Table table = m_table.getTable(); in createText()
203 Table table = m_table.getTable(); in createText()
222 m_table.refresh(); in createText()
281 m_table = new TableViewer(parent, SWT.FULL_SELECTION); in createTable()
282 new TableViewerColumn(m_table, SWT.LEFT); in createTable()
283 m_table.getTable().addSelectionListener(new SelectionAdapter() { in createTable()
286 int selectionIndex = m_table.getTable().getSelectionIndex(); in createTable()
293 m_table.setContentProvider(getContentProvider()); in createTable()
[all …]
/external/emma/core/java12/com/vladium/jcd/parser/
DClassDefParser.java101 m_table = new ClassDef (); in class_table()
131 return m_table; in class_table()
140 m_table.setMagic (magic); in magic()
155 m_table.setVersion (new int [] {major_version, minor_version}); in version()
164 final IConstantCollection constants = m_table.getConstants(); in constant_pool()
183 m_table.setAccessFlags (_access_flags); in access_flags()
192 m_table.setThisClassIndex (_class_index); in this_class()
201 m_table.setSuperClassIndex (_class_index); in super_class()
215 m_table.getInterfaces().add (_interface_index); in interfaces()
225 final IConstantCollection constantPool = m_table.getConstants (); in fields()
[all …]
/external/chromium_org/third_party/WebKit/Source/wtf/
DBloomFilter.h74 uint8_t& firstSlot(unsigned hash) { return m_table[hash & keyMask]; } in firstSlot()
75 uint8_t& secondSlot(unsigned hash) { return m_table[(hash >> 16) & keyMask]; } in secondSlot()
76 const uint8_t& firstSlot(unsigned hash) const { return m_table[hash & keyMask]; } in firstSlot()
77 const uint8_t& secondSlot(unsigned hash) const { return m_table[(hash >> 16) & keyMask]; } in secondSlot()
79 uint8_t m_table[tableSize]; variable
110 memset(m_table, 0, tableSize); in clear()
118 if (m_table[n] && m_table[n] != maximumCount()) in likelyEmpty()
128 if (m_table[n]) in isClear()
DHashTable.h428 if (LIKELY(!m_table))
430 deleteAllBucketsAndDeallocate(m_table, m_tableSize);
431 m_table = 0;
441 iterator begin() { return isEmpty() ? end() : makeIterator(m_table); }
442 iterator end() { return makeKnownGoodIterator(m_table + m_tableSize); }
443 const_iterator begin() const { return isEmpty() ? end() : makeConstIterator(m_table); }
444 const_iterator end() const { return makeKnownGoodConstIterator(m_table + m_tableSize); }
533 iterator makeIterator(ValueType* pos) { return iterator(pos, m_table + m_tableSize, this); }
534 …const_iterator makeConstIterator(ValueType* pos) const { return const_iterator(pos, m_table + m_ta…
535 …iterator makeKnownGoodIterator(ValueType* pos) { return iterator(pos, m_table + m_tableSize, this,…
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DExpandedNameTable.java102 private HashEntry[] m_table; field in ExpandedNameTable
123 m_table = new HashEntry[m_capacity]; in ExpandedNameTable()
138 m_table[i] = new HashEntry(m_defaultExtendedTypes[i], i, i, null); in initExtendedTypes()
199 for (HashEntry e = m_table[index]; e != null; e = e.next) in getExpandedTypeID()
233 HashEntry entry = new HashEntry(newET, m_nextType, hash, m_table[index]); in getExpandedTypeID()
234 m_table[index] = entry; in getExpandedTypeID()
248 HashEntry[] oldTable = m_table; in rehash()
254 m_table = new HashEntry[newCapacity]; in rehash()
266 e.next = m_table[newIndex]; in rehash()
267 m_table[newIndex] = e; in rehash()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
DPropertyTableTooltipHelper.java31 private final PropertyTable m_table; field in PropertyTableTooltipHelper
40 m_table = table; in PropertyTableTooltipHelper()
41 m_table.addListener(SWT.MouseHover, new Listener() { in PropertyTableTooltipHelper()
49 m_table.addListener(SWT.MouseExit, new Listener() { in PropertyTableTooltipHelper()
107 return m_table; in getTable()
145 m_tooltip = new Shell(m_table.getShell(), SWT.NO_FOCUS | SWT.ON_TOP | SWT.TOOL | SWT.SINGLE); in showTooltip()
160 tooltipLocation = m_table.toDisplay(new Point(startX, m_y)); in showTooltip()
162 tooltipLocation = m_table.toDisplay(new Point(startX, m_y + m_rowHeight)); in showTooltip()
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DAtomicString.cpp55 StringImpl* result = *m_table.add(string).storedValue; in addStringImpl()
66 return m_table; in table()
84 HashSet<StringImpl*>::iterator end = table->m_table.end(); in destroy()
85 for (HashSet<StringImpl*>::iterator iter = table->m_table.begin(); iter != end; ++iter) { in destroy()
95 HashSet<StringImpl*> m_table; member in WTF::AtomicStringTable
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
DGIFImageReader.cpp309 if (!m_isDefined || !m_table.isEmpty()) in buildTable()
314 m_table.resize(m_colors); in buildTable()
315 for (Table::iterator iter = m_table.begin(); iter != m_table.end(); ++iter) { in buildTable()
DGIFImageReader.h171 const Table& table() const { return m_table; } in table()
177 Table m_table; variable