Searched refs:m_table (Results 1 – 4 of 4) sorted by relevance
101 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 …]
102 private HashEntry[] m_table; field in ExpandedNameTable123 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()
315 if (m_table && proc == m_packColorProc && m_transPixel == transparentPixel) { in buildTable()316 SkASSERT(transparentPixel == kNotFound || transparentPixel > m_table->count() in buildTable()317 || m_table->operator[](transparentPixel) == SK_ColorTRANSPARENT); in buildTable()320 return m_table; in buildTable()345 m_table = sk_sp<SkColorTable>(new SkColorTable(colorStorage, SK_MAX_COLORS)); in buildTable()346 return m_table; in buildTable()
192 mutable sk_sp<SkColorTable> m_table; variable