Lines Matching defs:DictionaryEntry
53 class DictionaryEntry {
55 DictionaryEntry() {}
56 DictionaryEntry(Word W) : W(W) {}
57 DictionaryEntry(Word W, size_t PositionHint)
92 return std::any_of(begin(), end(), [&](const DictionaryEntry &DE) {
96 const DictionaryEntry *begin() const { return &DE[0]; }
97 const DictionaryEntry *end() const { return begin() + Size; }
98 DictionaryEntry & operator[] (size_t Idx) {
102 void push_back(DictionaryEntry DE) {
111 DictionaryEntry DE[kMaxDictSize];