Lines Matching defs:original
862 // Given a permuted argument, find it's position in the original Args vector.
864 const Args &original) {
866 original, [arg](const Args::ArgEntry &D) { return D.c_str() == arg; });
869 // Given a permuted argument, find it's index in the original Args vector.
870 static size_t FindOriginalIndex(const char *arg, const Args &original) {
871 return std::distance(original.begin(), FindOriginalIter(arg, original));
874 // Construct a new Args object, consisting of the entries from the original
877 const Args &original) {
880 auto pos = FindOriginalIter(arg, original);
881 assert(pos != original.end());