Searched refs:m_keyType (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dlist.cpp48 switch ( m_keyType )
108 if ( m_list->m_keyType == wxKEY_STRING )
146 m_keyType = keyType;
165 m_keyType = list.m_keyType;
169 switch (m_keyType)
238 wxCHECK_MSG( m_keyType == wxKEY_NONE, (wxNodeBase *)NULL,
251 wxCHECK_MSG( (m_keyType == wxKEY_INTEGER) ||
252 (m_keyType == wxKEY_NONE && m_count == 0),
262 wxCHECK_MSG( (m_keyType
[all...]
H A Dhash.cpp57 m_keyType = wxKEY_NONE;
65 m_keyType = keyType;
746 : m_size( 0 ), m_count( 0 ), m_table( NULL ), m_keyType( wxKEY_NONE ),
753 m_keyType = keyType;
791 size_t bucket = ( m_keyType == wxKEY_INTEGER ?
820 if( m_keyType == wxKEY_STRING )
857 wxASSERT( m_keyType == wxKEY_INTEGER );
867 wxASSERT( m_keyType == wxKEY_STRING );
877 wxASSERT( m_keyType == wxKEY_INTEGER );
901 wxASSERT( m_keyType
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dlist.h401 wxListKey() : m_keyType(wxKEY_NONE)
403 wxListKey(long i) : m_keyType(wxKEY_INTEGER)
405 wxListKey(const wxChar *s) : m_keyType(wxKEY_STRING)
407 wxListKey(const wxString& s) : m_keyType(wxKEY_STRING)
411 wxKeyType GetKeyType() const { return m_keyType; }
413 { wxASSERT( m_keyType == wxKEY_STRING ); return m_key.string; }
415 { wxASSERT( m_keyType == wxKEY_INTEGER ); return m_key.integer; }
425 if ( m_keyType == wxKEY_STRING )
430 wxKeyType m_keyType; member in class:wxListKey
536 { return m_keyType; }
662 wxKeyType m_keyType; // type of our keys (may be wxKEY_NONE) member in class:wxListBase
[all...]
H A Dhash.h77 wxKeyType m_keyType; member in class:wxHashTableBase
217 wxKeyType m_keyType; member in class:wxHashTableBase
585 m_hashTable[slot] = new listclass(m_keyType); \

Completed in 115 milliseconds