Lines Matching full:default_value
299 // Returns the i-th element of the vector, or default_value if i is not302 inline E GetElementOr(const std::vector<E>& v, int i, E default_value) {303 return (i < 0 || i >= static_cast<int>(v.size())) ? default_value : v[i];