Lines Matching defs:K
61 const auto K = FilePath.find(Separator, J); // Index of next `Separator`.
62 const bool NoMoreSeparatorsInFilePath = K == StringRef::npos;
76 J = K; // Skip to next `Separator` in `FilePath`.
94 if (const auto K = Pattern.find_first_of("]/", I + 1);
95 K != StringRef::npos && Pattern[K] == ']' && K > I + 1) {
106 if (I + 2 < K && Pattern[I + 1] == '-') {
112 } while (!Match && I < K);
115 I = K + 1; // After the `]`.