Searched defs:m_table (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DTableLayout.h36 : m_table(table)
52 RenderTable* m_table; member in class:blink::TableLayout
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DBloomFilter.h74 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])
H A 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_tableSize, this); }
535 iterator makeKnownGoodIterator(ValueType* pos) { return iterator(pos, m_table
552 ValueType* m_table; member in class:WTF::HashTable
[all...]
/external/emma/core/java12/com/vladium/jcd/parser/
H A DClassDefParser.java101 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
303 private ClassDef m_table; field in class:ClassDefParser.classParser
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTableTooltipHelper.java31 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/
H A DExpandedNameTable.java102 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[newInde
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCCombo3.java45 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
[all...]
H A DCComboBox.java71 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
[all...]
H A DCTableCombo.java50 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...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicString.cpp55 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
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageReader.h171 const Table& table() const { return m_table; }
177 Table m_table; member in class:GIFColorMap
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 218 milliseconds