reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/GlobPattern.cpp
  113   if (!hasWildcard(S)) {
  114     Pat.Exact = S;
  120   if (S.endswith("*") && !S.endswith("\\*") && !hasWildcard(S.drop_back())) {
  120   if (S.endswith("*") && !S.endswith("\\*") && !hasWildcard(S.drop_back())) {
  120   if (S.endswith("*") && !S.endswith("\\*") && !hasWildcard(S.drop_back())) {
  121     Pat.Prefix = S.drop_back();
  126   if (S.startswith("*") && !hasWildcard(S.drop_front())) {
  126   if (S.startswith("*") && !hasWildcard(S.drop_front())) {
  127     Pat.Suffix = S.drop_front();
  133   StringRef Original = S;
  134   while (!S.empty()) {
  135     Expected<BitVector> BV = scan(S, Original);