Home
last modified time | relevance | path

Searched defs:static_vec (Results 1 – 1 of 1) sorted by relevance

/system/teeui/libteeui/include/teeui/
Dstatic_vec.h46 static_vec() : data_(nullptr), size_(0) {} in static_vec() function
47 static_vec(T* begin, T* end) : data_(begin), size_(end - begin) {} in static_vec() function
48 template <size_t s> static_vec(T (&arr)[s]) : data_(&arr[0]), size_(s) {} in static_vec() function