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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TableLayout.h 36 : m_table(table)
51 RenderTable* m_table; member in class:WebCore::TableLayout
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
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...]
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...]
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/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 274 if (m_table)
275 deallocateTable(m_table, m_tableSize);
285 iterator begin() { return isEmpty() ? end() : makeIterator(m_table); }
286 iterator end() { return makeKnownGoodIterator(m_table + m_tableSize); }
287 const_iterator begin() const { return isEmpty() ? end() : makeConstIterator(m_table); }
288 const_iterator end() const { return makeKnownGoodConstIterator(m_table + m_tableSize); }
350 iterator makeIterator(ValueType* pos) { return iterator(this, pos, m_table + m_tableSize); }
351 const_iterator makeConstIterator(ValueType* pos) const { return const_iterator(this, pos, m_table + m_tableSize); }
352 iterator makeKnownGoodIterator(ValueType* pos) { return iterator(this, pos, m_table + m_tableSize, HashItemKnownGood); }
353 const_iterator makeKnownGoodConstIterator(ValueType* pos) const { return const_iterator(this, pos, m_table + m_tableSize, HashItemKnownGood);
358 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/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/wtf/text/
AtomicString.cpp 48 return m_table;
54 HashSet<StringImpl*>::iterator end = table->m_table.end();
55 for (HashSet<StringImpl*>::iterator iter = table->m_table.begin(); iter != end; ++iter)
60 HashSet<StringImpl*> m_table; member in class:WTF::AtomicStringTable
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageReader.h 173 const Table& table() const { return m_table; }
179 Table m_table; member in class:GIFColorMap
  /external/emma/lib/
emma.jar 
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 132 milliseconds