Searched refs:c_it (Results 1 – 3 of 3) sorted by relevance
347 Iterator c_it = tp->ExecuteQuery(annotated_query); in PreprocessLocations() local350 while (c_it.Next()) { in PreprocessLocations()351 int64_t cid = c_it.Get(0).AsLong(); in PreprocessLocations()352 int64_t mapping_id = c_it.Get(2).AsLong(); in PreprocessLocations()353 auto annotation = c_it.Get(1).is_null() ? "" : c_it.Get(1).AsString(); in PreprocessLocations()354 auto func_sysname = c_it.Get(3).is_null() ? "" : c_it.Get(3).AsString(); in PreprocessLocations()356 c_it.Get(4).is_null() ? base::nullopt in PreprocessLocations()357 : base::make_optional(c_it.Get(4).AsLong()); in PreprocessLocations()408 if (!c_it.Status().ok()) { in PreprocessLocations()410 c_it.Status().message().c_str()); in PreprocessLocations()
617 IntTree::const_iterator c_it = cont.cbegin(); in TEST() local618 EXPECT_EQ(it, c_it); in TEST()619 for (int j = 1; it != cont.end(); ++it, ++c_it, ++j) { in TEST()621 EXPECT_EQ(j, *c_it); in TEST()
381 iterator const_cast_it(const_iterator c_it) {382 auto distance = std::distance(cbegin(), c_it);