Home | History | Annotate | Download | only in base

Lines Matching refs:components

118 // For example, foo.tar.gz or foo.tar.Z would have extension components of
208 void FilePath::GetComponents(std::vector<StringType>* components) const {
209 DCHECK(components);
210 if (!components)
212 components->clear();
220 // Capture path components.
240 *components = std::vector<StringType>(ret_val.rbegin(), ret_val.rend());
504 components;
505 GetComponents(&components);
507 std::vector<StringType>::const_iterator it = components.begin();
508 for (; it != components.end(); ++it) {