Searched refs:nester (Results 1 – 1 of 1) sorted by relevance
16 static void test_push(skiatest::Reporter* reporter, SkTDStackNester<int>* nester) { in test_push() argument17 SkASSERT(nester); in test_push()18 const int count = nester->count(); in test_push()20 nester->push(count); in test_push()21 REPORTER_ASSERT(reporter, nester->count() == count + 1); in test_push()29 static void test_pop(skiatest::Reporter* reporter, SkTDStackNester<int>* nester) { in test_pop() argument30 SkASSERT(nester); in test_pop()31 const int count = nester->count(); in test_pop()34 const int top = nester->top(); in test_pop()36 nester->pop(&value); in test_pop()[all …]