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