Symbol: Words
src/apps/mail/MailApp.cpp
554
gWords[gDictCount] = new Words(dataPath.Path(), indexPath.Path(), true);
src/apps/mail/MailApp.cpp
560
gExactWords[gDictCount] = new Words(dataPath.Path(), indexPath.Path(), false);
src/apps/mail/MailApp.cpp
581
gWords[gDictCount] = new Words(dataPath.Path(), indexPath.Path(), true);
src/apps/mail/MailApp.cpp
587
gExactWords[gDictCount] = new Words(dataPath.Path(), indexPath.Path(), false);
src/apps/mail/MailSupport.cpp
78
Words* gWords[MAX_DICTIONARIES];
src/apps/mail/MailSupport.cpp
79
Words* gExactWords[MAX_DICTIONARIES];
src/apps/mail/MailSupport.h
62
class Words;
src/apps/mail/MailSupport.h
72
extern Words* gWords[MAX_DICTIONARIES];
src/apps/mail/MailSupport.h
73
extern Words* gExactWords[MAX_DICTIONARIES];
src/apps/mail/MailWindow.h
66
class Words;
src/apps/mail/Words.cpp
102
Words::Words(const char* dataPath, const char* indexPath, bool useMetaphone)
src/apps/mail/Words.cpp
113
Words::BuildIndex(void)
src/apps/mail/Words.cpp
205
Words::GetKey(const char* s)
src/apps/mail/Words.cpp
705
Words::FindBestMatches(BList* matches, const char* s)
src/apps/mail/Words.cpp
79
Words::Words(bool useMetaphone)
src/apps/mail/Words.cpp
87
Words::Words(BPositionIO* thes, bool useMetaphone)
src/apps/mail/Words.cpp
96
Words::~Words(void)
src/apps/mail/Words.h
56
class Words : public WIndex {
src/apps/mail/Words.h
58
Words(bool useMetaphone = true);
src/apps/mail/Words.h
59
Words(BPositionIO* thes, bool useMetaphone = true);
src/apps/mail/Words.h
60
Words(const char* dataPath, const char* indexPath,
src/apps/mail/Words.h
62
virtual ~Words(void);