Home
last modified time | relevance | path

Searched refs:intersection (Results 1 – 2 of 2) sorted by relevance

/bionic/tools/versioner/src/
Dversioner.cpp274 std::vector<T> intersection; in Intersection() local
275 std::set_intersection(a.begin(), a.end(), b.begin(), b.end(), std::back_inserter(intersection)); in Intersection()
276 return intersection; in Intersection()
298 auto intersection = Intersection(compilation_types, inline_def_it.second); in checkSymbol() local
299 if (!intersection.empty()) { in checkSymbol()
302 fprintf(stderr, " declarations visible in: %s\n", Join(intersection, ", ").c_str()); in checkSymbol()
/bionic/libc/tools/
Dcheck-symbols-glibc.py250 for symbol in sorted((posix.intersection(glibc)).difference(bionic)):