|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
gen/tools/clang/include/clang/AST/Attrs.inc13763 llvm::sort(std::begin(Attrs.Features), std::end(Attrs.Features), cmp);
include/llvm/ADT/PriorityWorklist.h 115 if (std::begin(Input) == std::end(Input))
122 V.insert(V.end(), std::begin(Input), std::end(Input));
include/llvm/ADT/STLExtras.h 155 -> decltype(begin(std::forward<ContainerTy>(container))) {
156 return begin(std::forward<ContainerTy>(container));
281 llvm::make_reverse_iterator(std::begin(C)))) {
283 llvm::make_reverse_iterator(std::begin(C)));
426 FilterIteratorT(std::begin(std::forward<RangeT>(Range)),
511 return make_range(EarlyIncIteratorT(std::begin(std::forward<RangeT>(Range))),
624 using iterator = ItType<decltype(std::begin(std::declval<Args>()))...>;
636 return iterator(std::begin(std::get<Ns>(ts))...);
892 : Begins(std::begin(Ranges)...), Ends(std::end(Ranges)...) {}
921 decltype(std::begin(std::declval<RangeTs &>()))...>;
1472 return enumerator_iter<R>(0, std::begin(TheRange));
include/llvm/ADT/iterator.h 304 return make_range(PointeeIteratorT(std::begin(std::forward<RangeT>(Range))),
332 return make_range(PointerIteratorT(std::begin(std::forward<RangeT>(Range))),
lib/Bitcode/Writer/BitcodeWriter.cpp 4218 llvm::copy(Vals, std::begin(*ModHash));
lib/MC/MCSubtargetInfo.cpp 158 assert(std::is_sorted(std::begin(ProcDesc), std::end(ProcDesc)) &&
160 assert(std::is_sorted(std::begin(ProcFeatures), std::end(ProcFeatures)) &&
lib/Target/Mips/MicroMipsSizeReduction.cpp 421 ReduceEntryVector::const_iterator Start = std::begin(ReduceTable);
lib/Target/X86/AsmParser/X86AsmParser.cpp 3471 std::count(std::begin(Match), std::end(Match), Match_Success);
3517 if (std::count(std::begin(Match), std::end(Match),
3525 if (std::count(std::begin(Match), std::end(Match),
3534 if (std::count(std::begin(Match), std::end(Match),
3540 if (std::count(std::begin(Match), std::end(Match),
lib/Target/X86/X86ISelLowering.cpp13766 int InputFixed = find(SourceHalfMask, -1) - std::begin(SourceHalfMask) +
tools/clang/lib/CodeGen/CGBuiltin.cpp 5120 assert(std::is_sorted(std::begin(IntrinsicMap), std::end(IntrinsicMap)));
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp10469 return std::make_tuple(*std::min_element(std::begin(Sizes), std::end(Sizes)),
10470 *std::max_element(std::begin(Sizes), std::end(Sizes)),
tools/clang/lib/Driver/ToolChains/Arch/ARM.cpp 411 std::begin(ExtensionFeatures), std::end(ExtensionFeatures));
tools/clang/lib/Sema/SemaStmtAsm.cpp 681 std::adjacent_find(begin(NamedOperandList), end(NamedOperandList),
tools/clang/tools/extra/clang-reorder-fields/ReorderFieldsAction.cpp 207 std::sort(std::begin(NewWrittenInitializersOrder),
tools/clang/utils/TableGen/MveEmitter.cpp 817 join(std::begin(SemaChecks), std::end(SemaChecks),
1125 ShortName = join(std::begin(NameParts), std::end(NameParts), "_");
1327 join(std::begin(ArgTypeNames), std::end(ArgTypeNames), ", ");
1422 join(std::begin(conditions), std::end(conditions), " && ");
tools/lld/include/lld/Common/Threads.h 70 for_each(llvm::parallel::par, std::begin(range), std::end(range), fn);
72 for_each(llvm::parallel::seq, std::begin(range), std::end(range), fn);
85 sort(llvm::parallel::par, std::begin(range), std::end(range), fn);
87 sort(llvm::parallel::seq, std::begin(range), std::end(range), fn);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp 2785 std::begin(entries), std::end(entries),
tools/llvm-objcopy/COFF/Object.cpp 42 std::remove_if(std::begin(Symbols), std::end(Symbols),
95 std::remove_if(std::begin(Sections), std::end(Sections),
107 std::begin(Symbols), std::end(Symbols),
tools/llvm-objcopy/ELF/Object.cpp 691 std::for_each(std::begin(Symbols) + 1, std::end(Symbols),
694 std::begin(Symbols), std::end(Symbols),
702 std::remove_if(std::begin(Symbols) + 1, std::end(Symbols),
1158 std::replace_if(std::begin(SanitizedFilename), std::end(SanitizedFilename),
1813 std::begin(Sections), std::end(Sections), [=](const SecPtr &Sec) {
1844 for (auto &KeepSec : make_range(std::begin(Sections), Iter)) {
1892 assert(std::is_sorted(std::begin(Segments), std::end(Segments),
2156 std::unique(std::begin(OrderedSegments), std::end(OrderedSegments));
tools/llvm-objcopy/ELF/Object.h 491 : Data(std::begin(Data), std::end(Data)) {
tools/llvm-objcopy/MachO/Object.cpp 15 LC.Sections.erase(std::remove_if(std::begin(LC.Sections),
unittests/Support/TargetParserTest.cpp 597 std::find(std::begin(Features), std::end(Features), E.second.at(0));
604 Found = std::find(std::begin(Features), std::end(Features), E.second.at(1));
1099 auto B = std::begin(Features);