Home | History | Annotate | Download | only in tests

Lines Matching full:chre

2 #include "chre/util/heap.h"
7 using chre::DynamicVector;
8 using chre::FixedSizeVector;
13 EXPECT_DEATH(chre::push_heap(v, comp), "");
19 EXPECT_DEATH(chre::pop_heap(v, comp), "");
40 chre::push_heap(v, comp);
46 chre::pop_heap(v, comp);
58 chre::push_heap(v, comp);
59 EXPECT_DEATH(chre::remove_heap(v, 1, comp), "");
79 chre::push_heap(v, comp);
85 chre::remove_heap(v, std::rand() % s, comp);
94 chre::pop_heap(v, comp);
106 chre::push_heap(v, std::greater<int>());
110 chre::pop_heap(v, std::greater<int>());