Lines Matching refs:count
37 uint32 count; variable
69 : count(0) in StaticVector()
74 : count(_count) in count() function
76 MT_ASSERT(count <= CAPACITY, "Too big size"); in count()
77 for (uint32 i = 0; i < count; i++) in count()
85 for (uint32 i = 0; i < count; i++) in ~StaticVector()
105 MT_ASSERT(count < CAPACITY, "Can't add element"); in PushBack()
106 uint32 lastElementIndex = count; in PushBack()
107 count++; in PushBack()
113 return count; in Size()
118 return count == 0; in IsEmpty()