HomeSort by relevance Sort by last modified time
    Searched refs:DicNodePool (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_pool.h 29 class DicNodePool {
31 explicit DicNodePool(const int capacity) : mDicNodes(), mPooledDicNodes() {
81 DISALLOW_IMPLICIT_CONSTRUCTORS(DicNodePool);
dic_node_priority_queue.h 116 DicNodePool mDicNodePool;
  /packages/inputmethods/LatinIME/native/jni/tests/suggest/core/dicnode/
dic_node_pool_test.cpp 26 DicNodePool dicNodePool(CAPACITY);
29 EXPECT_NE(nullptr, dicNodePool.getInstance());
31 EXPECT_EQ(nullptr, dicNodePool.getInstance());
36 DicNodePool dicNodePool(CAPACITY);
38 DicNode *const dicNode = dicNodePool.getInstance();
40 EXPECT_EQ(nullptr, dicNodePool.getInstance());
41 dicNodePool.placeBackInstance(dicNode);
42 EXPECT_EQ(dicNode, dicNodePool.getInstance())
    [all...]

Completed in 120 milliseconds