Home | History | Annotate | Download | only in base

Lines Matching refs:min_index

110 // Check if the log contains any entry of the given type at |min_index| or
114 int min_index, // Negative indices are reverse indices.
117 size_t real_index = (min_index < 0) ?
118 static_cast<size_t>(static_cast<int>(entries.size()) + min_index) :
119 static_cast<size_t>(min_index);
129 // as long as the first index where it is found is at least |min_index|.
133 size_t min_index,
144 EXPECT_GE(i, min_index);
149 // as long as one index where it is found is at least |min_index|.
153 size_t min_index,
156 size_t i = min_index;