Lines Matching refs:components
426 SmallVector<StringRef, 4> components; in append() local
427 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage)); in append()
428 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage)); in append()
429 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage)); in append()
430 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage)); in append()
432 for (auto &component : components) { in append()
721 SmallVector<StringRef, 16> components; in remove_dots() local
754 if (!components.empty() && components.back() != "..") { in remove_dots()
755 components.pop_back(); in remove_dots()
757 components.push_back(component); in remove_dots()
760 components.push_back(component); in remove_dots()
773 if (!components.empty()) { in remove_dots()
774 buffer += components[0]; in remove_dots()
775 for (StringRef C : ArrayRef(components).drop_front()) { in remove_dots()