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

Declarations

usr/include/c++/7.4.0/bits/algorithmfwd.h
  336     is_sorted(_FIter, _FIter, _Compare);

References

lib/Analysis/LoopCacheAnalysis.cpp
   66   return (std::is_sorted(Loops.begin(), Loops.end(),
lib/Analysis/TargetLibraryInfo.cpp
   71   assert(std::is_sorted(StandardNames.begin(), StandardNames.end(),
lib/Bitcode/Writer/ValueEnumerator.cpp
  226   if (std::is_sorted(
lib/IR/AsmWriter.cpp
  231   if (std::is_sorted(
lib/IR/Attributes.cpp
  978   assert(std::is_sorted(Attrs.begin(), Attrs.end(),
 1014   assert(std::is_sorted(Attrs.begin(), Attrs.end(),
lib/Target/ARM/ARMConstantIslandPass.cpp
  305   assert(std::is_sorted(MF->begin(), MF->end(),
lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
  809     assert(std::is_sorted(MI->begin() + OpNum, MI->end(),
lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
 1741     assert(std::is_sorted(MI.begin() + Op, MI.end(),
lib/Target/Mips/MipsCCState.cpp
   33   assert(std::is_sorted(std::begin(LibCalls), std::end(LibCalls), Comp));
lib/Target/X86/X86ISelLowering.cpp
 3166   return std::is_sorted(ArgLocs.begin(), ArgLocs.end(),
lib/Transforms/IPO/CalledValuePropagation.cpp
   73     assert(std::is_sorted(this->Functions.begin(), this->Functions.end(),
tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
   63   assert(std::is_sorted(Collection.begin(), Collection.end(),
tools/clang/tools/extra/clangd/unittests/SemanticHighlightingTests.cpp
   77   assert(std::is_sorted(
tools/lld/wasm/InputFiles.cpp
  224   assert(std::is_sorted(relocs.begin(), relocs.end(),
  228   assert(std::is_sorted(
tools/llvm-exegesis/lib/Target.cpp
  119   assert(std::is_sorted(
tools/llvm-objcopy/ELF/Object.cpp
 1892   assert(std::is_sorted(std::begin(Segments), std::end(Segments),
tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
   64   assert(std::is_sorted(O.SymTable.Symbols.begin(), O.SymTable.Symbols.end(),
tools/verify-uselistorder/verify-uselistorder.cpp
  412   } while (std::is_sorted(V->use_begin(), V->use_end(), compareUses));
unittests/ADT/SimpleIListTest.cpp
  476     EXPECT_TRUE(std::is_sorted(L1.begin(), L1.end(), makeFalse));
  477     EXPECT_TRUE(std::is_sorted(L2.begin(), L2.end(), makeFalse));
  485   EXPECT_TRUE(std::is_sorted(L1.begin(), L1.end(), makeFalse));
  500   EXPECT_TRUE(std::is_sorted(L2.begin(), L2.end(), makeFalse));
  584   EXPECT_FALSE(std::is_sorted(L.begin(), L.end(), compare));
  588   EXPECT_TRUE(std::is_sorted(L.begin(), L.end(), compare));
unittests/IR/ModuleTest.cpp
   45     EXPECT_FALSE(std::is_sorted(M.global_begin(), M.global_end(), compare));
   47     EXPECT_TRUE(std::is_sorted(M.global_begin(), M.global_end(), compare));