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

  /external/webkit/Source/WebCore/rendering/
TableLayout.h 35 : m_table(table)
45 RenderTable* m_table; member in class:WebCore::TableLayout
FixedTableLayout.cpp 85 RenderObject* child = m_table->firstChild();
86 int nEffCols = m_table->numEffCols();
108 m_table->appendColumn(span);
113 if (span < m_table->spanOfEffCol(currentEffectiveColumn)) {
114 m_table->splitColumn(currentEffectiveColumn, span);
118 spanInCurrentEffectiveColumn = m_table->spanOfEffCol(currentEffectiveColumn);
142 RenderTableSection* section = m_table->header();
144 section = m_table->firstBody();
146 section = m_table->footer();
148 section = m_table->sectionBelow(section, true)
    [all...]
AutoTableLayout.cpp 52 for (RenderObject* child = m_table->firstChild(); child; child = child->nextSibling()) {
132 if (m_table->document()->inQuirksMode() && columnLayout.maxLogicalWidth > columnLayout.logicalWidth.value() && fixedContributor != maxContributor) {
146 int nEffCols = m_table->numEffCols();
151 RenderObject* child = m_table->firstChild();
165 int effCol = m_table->colToEffCol(currentColumn);
166 if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) == 1) {
231 bool scaleColumns = shouldScaleColumns(m_table);
260 int bordersPaddingAndSpacing = m_table->bordersPaddingAndSpacingInRowDirection();
264 Length tableLogicalWidth = m_table->style()->logicalWidth();
283 int spacingInRowDirection = m_table->hBorderSpacing()
    [all...]
  /external/webkit/Source/JavaScriptCore/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])
WTFThreadData.h 66 HashSet<StringImpl*>::iterator iter = m_table.find(r);
67 if (iter == m_table.end())
69 m_table.remove(iter);
76 HashSet<StringImpl*> m_table; member in class:JSC::IdentifierTable
HashTable.h 143 addIterator(other.m_table, this);
152 addIterator(other.m_table, this);
193 ASSERT(m_table);
201 ASSERT(m_table);
202 ASSERT_UNUSED(other, other.m_table);
203 ASSERT(m_table == other.m_table);
215 // should be guarded with m_table->m_mutex.
216 mutable const HashTableType* m_table; member in class:WTF::HashTableConstIterator
300 deallocateTable(m_table, m_tableSize);
414 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/webkit/Source/WebKit2/Shared/
VisitedLinkTable.cpp 37 , m_table(0)
59 m_table = static_cast<LinkHash*>(m_sharedMemory->data());
81 LinkHash* table = m_table;
113 LinkHash* table = m_table;
VisitedLinkTable.h 56 WebCore::LinkHash* m_table; member in class:WebKit::VisitedLinkTable
  /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/webkit/Source/WebKit2/UIProcess/
VisitedLinkProvider.cpp 129 RefPtr<SharedMemory> currentTableMemory = m_table.sharedMemory();
131 m_table.setSharedMemory(newTableMemory);
146 if (!m_table.addLinkHash(linkHash))
153 if (m_table.addLinkHash(pendingVisitedLinks[i]))
163 if (!m_table.sharedMemory()->createHandle(handle, SharedMemory::ReadOnly))
VisitedLinkProvider.h 58 VisitedLinkTable m_table; member in class:WebKit::VisitedLinkProvider
  /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/webkit/Source/WebCore/bindings/v8/
IntrusiveDOMWrapperMap.h 144 v8::Persistent<v8::Object>* entry = m_table.add(wrapper);
156 m_table.visit(store, visitor);
168 m_table.remove(entry);
176 m_table.clear();
212 Table m_table; member in class:WebCore::IntrusiveDOMWrapperMap
  /external/webkit/Source/JavaScriptCore/yarr/
YarrPattern.h 50 const char* m_table; member in struct:JSC::Yarr::CharacterClassTable
59 : m_table(table)
72 : m_table(table)
79 RefPtr<CharacterClassTable> m_table; member in struct:JSC::Yarr::CharacterClass
YarrJIT.cpp 163 if (charClass->m_table) {
164 ExtendedAddress tableEntry(character, reinterpret_cast<intptr_t>(charClass->m_table->m_table));
165 matchDest.append(branchTest8(charClass->m_table->m_inverted ? Zero : NonZero, tableEntry));
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Identifier.cpp 42 HashSet<StringImpl*>::iterator end = m_table.end();
43 for (HashSet<StringImpl*>::iterator iter = m_table.begin(); iter != end; ++iter)
48 std::pair<HashSet<StringImpl*>::iterator, bool> result = m_table.add(value);
55 std::pair<HashSet<StringImpl*>::iterator, bool> result = m_table.add<U, V>(value);
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.cpp 53 return m_table;
59 HashSet<StringImpl*>::iterator end = table->m_table.end();
60 for (HashSet<StringImpl*>::iterator iter = table->m_table.begin(); iter != end; ++iter)
65 HashSet<StringImpl*> m_table; member in class:WTF::AtomicStringTable
  /external/emma/lib/
emma.jar 

Completed in 485 milliseconds