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

References

include/llvm/ADT/STLExtras.h
  155     -> decltype(begin(std::forward<ContainerTy>(container))) {
  163     -> decltype(end(std::forward<ContainerTy>(container))) {
  179     -> decltype(adl_detail::adl_begin(std::forward<ContainerTy>(container))) {
  185     -> decltype(adl_detail::adl_end(std::forward<ContainerTy>(container))) {
 1186 auto find(R &&Range, const T &Val) -> decltype(adl_begin(Range)) {
 1193 auto find_if(R &&Range, UnaryPredicate P) -> decltype(adl_begin(Range)) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  816       for (std::string::const_iterator c = m_bytes.begin() + content_start;
usr/include/c++/7.4.0/bits/basic_string.h
   97       typedef std::reverse_iterator<const_iterator>	const_reverse_iterator;
  108       typedef const_iterator __const_iterator;
  376       _S_copy_chars(_CharT* __p, const_iterator __k1, const_iterator __k2)
  376       _S_copy_chars(_CharT* __p, const_iterator __k1, const_iterator __k2)
  823       const_iterator
  839       const_iterator
  884       const_iterator
  892       const_iterator
 1523       insert(const_iterator __p, size_type __n, _CharT __c)
 1567         insert(const_iterator __p, _InputIterator __beg, _InputIterator __end)
 2074         replace(const_iterator __i1, const_iterator __i2,
 2074         replace(const_iterator __i1, const_iterator __i2,
 2138 	      const_iterator __k1, const_iterator __k2)
 2138 	      const_iterator __k1, const_iterator __k2)
 2162       basic_string& replace(const_iterator __i1, const_iterator __i2,
 2162       basic_string& replace(const_iterator __i1, const_iterator __i2,
 2224 	_M_replace_dispatch(const_iterator __i1, const_iterator __i2,
 2224 	_M_replace_dispatch(const_iterator __i1, const_iterator __i2,
 2230 	_M_replace_dispatch(const_iterator __i1, const_iterator __i2,
 2230 	_M_replace_dispatch(const_iterator __i1, const_iterator __i2,
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())
   68     end(_Container& __cont) -> decltype(__cont.end())
   78     end(const _Container& __cont) -> decltype(__cont.end())
usr/include/c++/7.4.0/bits/regex.h
  962   typedef sub_match<string::const_iterator>  ssub_match;
  969   typedef sub_match<wstring::const_iterator> wssub_match;
 1948   typedef match_results<string::const_iterator>  smatch;
 1951   typedef match_results<wstring::const_iterator> wsmatch;
 2109 		_Ch_traits, _Ch_alloc>::const_iterator, _Alloc>& __m,
 2123 		_Ch_traits, _Ch_alloc>::const_iterator, _Alloc>&,
 2298 		 _Ch_traits, _Ch_alloc>::const_iterator, _Alloc>& __m,
 2313 		 _Ch_traits, _Ch_alloc>::const_iterator, _Alloc>&,
 2587   typedef regex_iterator<string::const_iterator>  sregex_iterator;
 2590   typedef regex_iterator<wstring::const_iterator> wsregex_iterator;
 2828   typedef regex_token_iterator<string::const_iterator>  sregex_token_iterator;
 2835   typedef regex_token_iterator<wstring::const_iterator> wsregex_token_iterator;
utils/TableGen/SequenceToOffsetTable.h
  120       for (typename SeqT::const_iterator SI = I->first.begin(),
utils/unittest/googlemock/include/gmock/gmock-matchers.h
 3119   typedef decltype(std::begin(
 3500     typedef decltype(std::begin(
utils/unittest/googletest/include/gtest/gtest-printers.h
  377   for (typename C::const_iterator it = container.begin();
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
  934                             typename C::const_iterator* /* const_it */ = NULL) {
utils/unittest/googletest/src/gtest.cc
 3526   for (std::string::const_iterator it = str.begin(); it != str.end(); ++it)