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

References

tools/clang/lib/Format/SortJavaScriptImports.cpp
   94   if (LHS.IsExport != RHS.IsExport)
   95     return LHS.IsExport < RHS.IsExport;
   96   if (LHS.Category != RHS.Category)
   97     return LHS.Category < RHS.Category;
  104   if (LHS.URL.empty() != RHS.URL.empty())
  105     return LHS.URL.empty() < RHS.URL.empty();
  106   if (int Res = LHS.URL.compare_lower(RHS.URL))
  109   if (LHS.Prefix.empty() != RHS.Prefix.empty())
  110     return LHS.Prefix.empty() < RHS.Prefix.empty();
  111   if (LHS.Prefix != RHS.Prefix)
  112     return LHS.Prefix > RHS.Prefix;