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

References

include/llvm/ADT/Hashing.h
  654   return hash_combine_range(arg.begin(), arg.end());
lib/Bitcode/Writer/BitcodeWriter.cpp
 1252     for (const auto P : M.getSourceFileName())
 2328       Record.append(AsmStr.begin(), AsmStr.end());
 2333       Record.append(ConstraintStr.begin(), ConstraintStr.end());
 4562     for (const auto P : M.getSourceFileName())
lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
   57   SymName.append(MId.begin(), llvm::find(MId, '.'));
lib/ExecutionEngine/ExecutionEngine.cpp
  354     std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest.get());
lib/Transforms/Utils/MetaRenamer.cpp
   89       for (auto C : M.getModuleIdentifier())
tools/clang/lib/Basic/Diagnostic.cpp
  784     for (char c : S) {
  895       OutStr.append(S.begin(), S.end());
tools/clang/lib/CodeGen/CGDebugInfo.cpp
 2391       for (char c : Macro)
tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  635   std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
  571   std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
tools/clang/lib/Frontend/TextDiagnostic.cpp
 1117         std::copy(I->CodeToInsert.begin(), I->CodeToInsert.end(),
tools/clang/lib/Lex/ModuleMap.cpp
  220     RelativePathName.append(Header.FileName.begin(), Header.FileName.end());
tools/lldb/source/Host/common/Editline.cpp
   93   for (wchar_t ch : content) {
  134   for (EditLineCharType ch : line) {
tools/lldb/source/Utility/Args.cpp
  616   for (char c : arg) {
tools/lldb/source/Utility/Event.cpp
  128       std::count_if(m_bytes.begin(), m_bytes.end(), isprint);
tools/lldb/source/Utility/StringLexer.cpp
   44   for (auto c : token) {
tools/lldb/unittests/Editline/EditlineTest.cpp
  200     for (auto ch : line) {
usr/include/c++/7.4.0/bits/basic_string.h
  877       { return const_reverse_iterator(this->begin()); }
usr/include/c++/7.4.0/bits/range_access.h
   48     begin(_Container& __cont) -> decltype(__cont.begin())
   58     begin(const _Container& __cont) -> decltype(__cont.begin())
   59     { return __cont.begin(); }
usr/include/c++/7.4.0/bits/regex.h
 2113     { return regex_match(__s.begin(), __s.end(), __m, __re, __flags); }
 2278     { return regex_search(__s.begin(), __s.end(), __e, __flags); }
 2302     { return regex_search(__s.begin(), __s.end(), __m, __e, __f); }
utils/TableGen/SequenceToOffsetTable.h
  120       for (typename SeqT::const_iterator SI = I->first.begin(),
utils/benchmark/src/sysinfo.cc
  468     return std::equal(Key.begin(), Key.end(), Value.begin(), Cmp);
  468     return std::equal(Key.begin(), Key.end(), Value.begin(), Cmp);
utils/unittest/googlemock/include/gmock/gmock-matchers.h
 3179     StlContainerConstIterator it = stl_container.begin();
utils/unittest/googletest/include/gtest/gtest-printers.h
  377   for (typename C::const_iterator it = container.begin();
utils/unittest/googletest/src/gtest.cc
 3526   for (std::string::const_iterator it = str.begin(); it != str.end(); ++it)