ROOT  6.06/09
Reference Guide
Functions
std::__ROOT Namespace Reference

Functions

template<class _CharT , class _Traits >
basic_ostream< _CharT, _Traits > & R__put_character_sequence (basic_ostream< _CharT, _Traits > &__os, const _CharT *__str, size_t __len)
 
template<class _BinaryPredicate , class _ForwardIterator1 , class _ForwardIterator2 >
_ForwardIterator1 __search (_ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, _ForwardIterator2 __last2, _BinaryPredicate __pred, forward_iterator_tag, forward_iterator_tag)
 
template<class _BinaryPredicate , class _RandomAccessIterator1 , class _RandomAccessIterator2 >
_LIBCPP_CONSTEXPR_AFTER_CXX11 _RandomAccessIterator1 __search (_RandomAccessIterator1 __first1, _RandomAccessIterator1 __last1, _RandomAccessIterator2 __first2, _RandomAccessIterator2 __last2, _BinaryPredicate __pred, random_access_iterator_tag, random_access_iterator_tag)
 
template<class _ForwardIterator1 , class _ForwardIterator2 , class _BinaryPredicate >
_LIBCPP_CONSTEXPR_AFTER_CXX11 _ForwardIterator1 __find_first_of_ce (_ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, _ForwardIterator2 __last2, _BinaryPredicate __pred)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_find (const _CharT *__p, _SizeT __sz, _CharT __c, _SizeT __pos) _NOEXCEPT
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_find (const _CharT *__p, _SizeT __sz, const _CharT *__s, _SizeT __pos, _SizeT __n)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_rfind (const _CharT *__p, _SizeT __sz, _CharT __c, _SizeT __pos)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_rfind (const _CharT *__p, _SizeT __sz, const _CharT *__s, _SizeT __pos, _SizeT __n)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_find_first_of (const _CharT *__p, _SizeT __sz, const _CharT *__s, _SizeT __pos, _SizeT __n)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_find_last_of (const _CharT *__p, _SizeT __sz, const _CharT *__s, _SizeT __pos, _SizeT __n)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_find_first_not_of (const _CharT *__p, _SizeT __sz, const _CharT *__s, _SizeT __pos, _SizeT __n)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_find_first_not_of (const _CharT *__p, _SizeT __sz, _CharT __c, _SizeT __pos)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_find_last_not_of (const _CharT *__p, _SizeT __sz, const _CharT *__s, _SizeT __pos, _SizeT __n)
 
template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY __str_find_last_not_of (const _CharT *__p, _SizeT __sz, _CharT __c, _SizeT __pos)
 

Function Documentation

template<class _ForwardIterator1 , class _ForwardIterator2 , class _BinaryPredicate >
_LIBCPP_CONSTEXPR_AFTER_CXX11 _ForwardIterator1 std::__ROOT::__find_first_of_ce ( _ForwardIterator1  __first1,
_ForwardIterator1  __last1,
_ForwardIterator2  __first2,
_ForwardIterator2  __last2,
_BinaryPredicate  __pred 
)

Definition at line 329 of file RWrap_libcpp_string_view.h.

Referenced by __str_find_first_of().

template<class _BinaryPredicate , class _ForwardIterator1 , class _ForwardIterator2 >
_ForwardIterator1 std::__ROOT::__search ( _ForwardIterator1  __first1,
_ForwardIterator1  __last1,
_ForwardIterator2  __first2,
_ForwardIterator2  __last2,
_BinaryPredicate  __pred,
forward_iterator_tag  ,
forward_iterator_tag   
)

Definition at line 178 of file RWrap_libcpp_string_view.h.

template<class _BinaryPredicate , class _RandomAccessIterator1 , class _RandomAccessIterator2 >
_LIBCPP_CONSTEXPR_AFTER_CXX11 _RandomAccessIterator1 std::__ROOT::__search ( _RandomAccessIterator1  __first1,
_RandomAccessIterator1  __last1,
_RandomAccessIterator2  __first2,
_RandomAccessIterator2  __last2,
_BinaryPredicate  __pred,
random_access_iterator_tag  ,
random_access_iterator_tag   
)

Definition at line 215 of file RWrap_libcpp_string_view.h.

Referenced by __str_find().

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_find ( const _CharT *  __p,
_SizeT  __sz,
_CharT  __c,
_SizeT  __pos 
)

Definition at line 342 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_find ( const _CharT *  __p,
_SizeT  __sz,
const _CharT *  __s,
_SizeT  __pos,
_SizeT  __n 
)

Definition at line 355 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_find_first_not_of ( const _CharT *  __p,
_SizeT  __sz,
const _CharT *  __s,
_SizeT  __pos,
_SizeT  __n 
)

Definition at line 453 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_find_first_not_of ( const _CharT *  __p,
_SizeT  __sz,
_CharT  __c,
_SizeT  __pos 
)

Definition at line 469 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_find_first_of ( const _CharT *  __p,
_SizeT  __sz,
const _CharT *  __s,
_SizeT  __pos,
_SizeT  __n 
)

Definition at line 414 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_find_last_not_of ( const _CharT *  __p,
_SizeT  __sz,
const _CharT *  __s,
_SizeT  __pos,
_SizeT  __n 
)

Definition at line 486 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_find_last_not_of ( const _CharT *  __p,
_SizeT  __sz,
_CharT  __c,
_SizeT  __pos 
)

Definition at line 502 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_find_last_of ( const _CharT *  __p,
_SizeT  __sz,
const _CharT *  __s,
_SizeT  __pos,
_SizeT  __n 
)

Definition at line 430 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_rfind ( const _CharT *  __p,
_SizeT  __sz,
_CharT  __c,
_SizeT  __pos 
)

Definition at line 376 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _SizeT , class _Traits , _SizeT __npos>
_SizeT _LIBCPP_CONSTEXPR_AFTER_CXX11 _LIBCPP_INLINE_VISIBILITY std::__ROOT::__str_rfind ( const _CharT *  __p,
_SizeT  __sz,
const _CharT *  __s,
_SizeT  __pos,
_SizeT  __n 
)

Definition at line 395 of file RWrap_libcpp_string_view.h.

template<class _CharT , class _Traits >
basic_ostream<_CharT, _Traits>& std::__ROOT::R__put_character_sequence ( basic_ostream< _CharT, _Traits > &  __os,
const _CharT *  __str,
size_t  __len 
)

Definition at line 140 of file RWrap_libcpp_string_view.h.

Referenced by operator<<().