Home | History | Annotate | Download | only in src

Lines Matching refs:WordsPriorityQueue

29             : mMasterQueue(new(mMasterQueueBuf) WordsPriorityQueue(mainQueueMaxWords)) {
32 ++i, subQueueBufOffset += static_cast<int>(sizeof(WordsPriorityQueue))) {
34 WordsPriorityQueue(subQueueMaxWords);
41 if (mMasterQueue) mMasterQueue->~WordsPriorityQueue();
43 if (mSubQueues[i]) mSubQueues[i]->~WordsPriorityQueue();
47 WordsPriorityQueue *getMasterQueue() const {
51 WordsPriorityQueue *getSubQueue(const int wordIndex, const int inputWordLength) const {
73 WordsPriorityQueue *queue = getSubQueue(wordIndex, i);
89 char mMasterQueueBuf[sizeof(WordsPriorityQueue)];
91 * sizeof(WordsPriorityQueue)];
92 WordsPriorityQueue *mMasterQueue;
93 WordsPriorityQueue *mSubQueues[SUB_QUEUE_MAX_COUNT * MULTIPLE_WORDS_SUGGESTION_MAX_WORDS];