Home | History | Annotate | Download | only in vintf

Lines Matching refs:is_const

33     template<bool is_const>
38 typename std::conditional<is_const, const V *, V *>::type /* Pointer */,
39 typename std::conditional<is_const, const V &, V &>::type /* Reference */
47 using map_iter = typename std::conditional<is_const,
82 template<bool is_const>
84 using map_ref = typename std::conditional<is_const, const Map &, Map &>::type;
87 IteratorImpl<is_const> begin() const {
88 return IteratorImpl<is_const>(mMap.begin());
91 IteratorImpl<is_const> end() const {
92 return IteratorImpl<is_const>(mMap.end());