HomeSort by relevance Sort by last modified time
    Searched refs:m_table (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TableLayout.h 36 : m_table(table)
52 RenderTable* m_table; member in class:WebCore::TableLayout
FixedTableLayout.cpp 87 unsigned nEffCols = m_table->numEffCols();
92 for (RenderTableCol* col = m_table->firstColumn(); col; col = col->nextColumn()) {
111 m_table->appendColumn(span);
116 if (span < m_table->spanOfEffCol(currentEffectiveColumn)) {
117 m_table->splitColumn(currentEffectiveColumn, span);
121 spanInCurrentEffectiveColumn = m_table->spanOfEffCol(currentEffectiveColumn);
134 RenderTableSection* section = m_table->topNonEmptySection();
154 float eSpan = m_table->spanOfEffCol(currentColumn);
182 Length tableLogicalWidth = m_table->style()->logicalWidth();
184 minWidth = maxWidth = max<int>(minWidth, tableLogicalWidth.value() - m_table->bordersPaddingAndSpacingInRowDirection())
    [all...]
AutoTableLayout.cpp 53 for (RenderObject* child = m_table->children()->firstChild(); child; child = child->nextSibling()) {
130 if (m_table->document().inQuirksMode() && columnLayout.maxLogicalWidth > columnLayout.logicalWidth.value() && fixedContributor != maxContributor) {
144 unsigned nEffCols = m_table->numEffCols();
151 for (RenderTableCol* column = m_table->firstColumn(); column; column = column->nextColumn()) {
160 unsigned effCol = m_table->colToEffCol(currentColumn);
162 if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) == 1) {
211 FastTextAutosizer::TableLayoutScope fastTextAutosizerTableLayoutScope(m_table);
220 bool scaleColumns = shouldScaleColumns(m_table);
252 Length tableLogicalWidth = m_table->style()->logicalWidth();
262 const Length& styleMaxLogicalWidth = m_table->style()->logicalMaxWidth()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
BloomFilter.h 74 uint8_t& firstSlot(unsigned hash) { return m_table[hash & keyMask]; }
75 uint8_t& secondSlot(unsigned hash) { return m_table[(hash >> 16) & keyMask]; }
76 const uint8_t& firstSlot(unsigned hash) const { return m_table[hash & keyMask]; }
77 const uint8_t& secondSlot(unsigned hash) const { return m_table[(hash >> 16) & keyMask]; }
79 uint8_t m_table[tableSize]; member in class:WTF::BloomFilter
110 memset(m_table, 0, tableSize);
118 if (m_table[n] && m_table[n] != maximumCount())
128 if (m_table[n])
HashTable.h 409 if (LIKELY(!m_table))
411 deleteAllBucketsAndDeallocate(m_table, m_tableSize);
412 m_table = 0;
422 iterator begin() { return isEmpty() ? end() : makeIterator(m_table); }
423 iterator end() { return makeKnownGoodIterator(m_table + m_tableSize); }
424 const_iterator begin() const { return isEmpty() ? end() : makeConstIterator(m_table); }
425 const_iterator end() const { return makeKnownGoodConstIterator(m_table + m_tableSize); }
507 iterator makeIterator(ValueType* pos) { return iterator(pos, m_table + m_tableSize, this); }
508 const_iterator makeConstIterator(ValueType* pos) const { return const_iterator(pos, m_table + m_tableSize, this); }
509 iterator makeKnownGoodIterator(ValueType* pos) { return iterator(pos, m_table + m_tableSize, this, HashItemKnownGood);
522 ValueType* m_table; member in class:WTF::HashTable
    [all...]
  /external/emma/core/java12/com/vladium/jcd/parser/
ClassDefParser.java 101 m_table = new ClassDef ();
131 return m_table;
140 m_table.setMagic (magic);
155 m_table.setVersion (new int [] {major_version, minor_version});
164 final IConstantCollection constants = m_table.getConstants();
183 m_table.setAccessFlags (_access_flags);
192 m_table.setThisClassIndex (_class_index);
201 m_table.setSuperClassIndex (_class_index);
215 m_table.getInterfaces().add (_interface_index);
225 final IConstantCollection constantPool = m_table.getConstants ()
303 private ClassDef m_table; field in class:ClassDefParser.classParser
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CCombo3.java 45 private final Table m_table; field in class:CCombo3
84 m_table = new Table(m_popup, SWT.FULL_SELECTION);
85 addEvents(m_table, m_tableListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut});
87 new TableColumn(m_table, SWT.NONE);
100 || m_table.isFocusControl();
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...]
CTableCombo.java 50 protected Table m_table; field in class:CTableCombo
70 m_table = new Table(m_popup, SWT.FULL_SELECTION);
71 new TableColumn(m_table, SWT.NONE);
82 if (m_table == event.widget) {
150 m_table.addListener(tableEvents[i], listener);
200 int index = m_table.getSelectionIndex();
204 TableItem item = m_table.getItem(index);
208 m_table.setSelection(index);
279 Rectangle listRect = m_table.getBounds();
354 if (focusControl == m_table
    [all...]
CComboBox.java 71 private TableViewer m_table; field in class:CComboBox
175 Table table = m_table.getTable();
187 Table table = m_table.getTable();
203 Table table = m_table.getTable();
222 m_table.refresh();
281 m_table = new TableViewer(parent, SWT.FULL_SELECTION);
282 new TableViewerColumn(m_table, SWT.LEFT);
283 m_table.getTable().addSelectionListener(new SelectionAdapter() {
286 int selectionIndex = m_table.getTable().getSelectionIndex();
293 m_table.setContentProvider(getContentProvider())
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 31 private final PropertyTable m_table; field in class:PropertyTableTooltipHelper
40 m_table = table;
41 m_table.addListener(SWT.MouseHover, new Listener() {
49 m_table.addListener(SWT.MouseExit, new Listener() {
107 return m_table;
145 m_tooltip = new Shell(m_table.getShell(), SWT.NO_FOCUS | SWT.ON_TOP | SWT.TOOL | SWT.SINGLE);
160 tooltipLocation = m_table.toDisplay(new Point(startX, m_y));
162 tooltipLocation = m_table.toDisplay(new Point(startX, m_y + m_rowHeight));
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java 102 private HashEntry[] m_table; field in class:ExpandedNameTable
123 m_table = new HashEntry[m_capacity];
138 m_table[i] = new HashEntry(m_defaultExtendedTypes[i], i, i, null);
199 for (HashEntry e = m_table[index]; e != null; e = e.next)
233 HashEntry entry = new HashEntry(newET, m_nextType, hash, m_table[index]);
234 m_table[index] = entry;
248 HashEntry[] oldTable = m_table;
254 m_table = new HashEntry[newCapacity];
266 e.next = m_table[newIndex];
267 m_table[newIndex] = e
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.cpp 309 if (!m_isDefined || !m_table.isEmpty())
314 m_table.resize(m_colors);
315 for (Table::iterator iter = m_table.begin(); iter != m_table.end(); ++iter) {
GIFImageReader.h 171 const Table& table() const { return m_table; }
177 Table m_table; member in class:GIFColorMap
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicString.cpp 55 StringImpl* result = *m_table.add(string).storedValue;
66 return m_table;
84 HashSet<StringImpl*>::iterator end = table->m_table.end();
85 for (HashSet<StringImpl*>::iterator iter = table->m_table.begin(); iter != end; ++iter) {
95 HashSet<StringImpl*> m_table; member in class:WTF::AtomicStringTable
  /prebuilts/tools/common/m2/repository/com/android/tools/external/propertysheet/1.0/
propertysheet-1.0.jar 
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 

Completed in 410 milliseconds