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

Declarations

usr/include/x86_64-linux-gnu/bits/libio.h
  149 struct _IO_jump_t;  struct _IO_FILE;
usr/include/x86_64-linux-gnu/bits/types/FILE.h
    4 struct _IO_FILE;
usr/include/x86_64-linux-gnu/bits/types/__FILE.h
    4 struct _IO_FILE;

References

tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   36 inline void stringify_append(llvm::raw_string_ostream &ss, const T *t) {
  201   template <typename T> T *GetObjectForIndex(unsigned idx) {
  208   template <typename T> void AddObjectForIndex(unsigned idx, T *object) {
  249       typename std::conditional<std::is_fundamental<T>::value,
  294   template <typename T> void HandleReplayResult(T *t) {
  296     if (std::is_fundamental<T>::value)
  535   template <typename T> unsigned GetIndexForObject(T *t) {
  563   template <typename T> void Serialize(T *t) {
  564     if (std::is_fundamental<T>::value) {
  575   template <typename T> void Serialize(T &t) {
  576     if (std::is_fundamental<T>::value) {
  577       m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T));
usr/include/c++/7.4.0/bits/unique_ptr.h
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1983     { typedef _Up     type; };
usr/include/stdio.h
  135 extern struct _IO_FILE *stdin;		/* Standard input stream.  */
  136 extern struct _IO_FILE *stdout;		/* Standard output stream.  */
  137 extern struct _IO_FILE *stderr;		/* Standard error output stream.  */
usr/include/x86_64-linux-gnu/bits/libio.h
  162   struct _IO_FILE *_sbuf;
  266   struct _IO_FILE *_chain;
  314 typedef struct _IO_FILE _IO_FILE;
  389 extern int __underflow (_IO_FILE *);
  390 extern int __uflow (_IO_FILE *);
  391 extern int __overflow (_IO_FILE *, int);
  433 extern int _IO_getc (_IO_FILE *__fp);
  434 extern int _IO_putc (int __c, _IO_FILE *__fp);
  435 extern int _IO_feof (_IO_FILE *__fp) __THROW;
  436 extern int _IO_ferror (_IO_FILE *__fp) __THROW;
  438 extern int _IO_peekc_locked (_IO_FILE *__fp);
  444 extern void _IO_flockfile (_IO_FILE *) __THROW;
  445 extern void _IO_funlockfile (_IO_FILE *) __THROW;
  446 extern int _IO_ftrylockfile (_IO_FILE *) __THROW;
  462 extern int _IO_vfscanf (_IO_FILE * __restrict, const char * __restrict,
  464 extern int _IO_vfprintf (_IO_FILE *__restrict, const char *__restrict,
  466 extern _IO_ssize_t _IO_padn (_IO_FILE *, int, _IO_ssize_t);
  467 extern _IO_size_t _IO_sgetn (_IO_FILE *, void *, _IO_size_t);
  469 extern _IO_off64_t _IO_seekoff (_IO_FILE *, _IO_off64_t, int, int);
  470 extern _IO_off64_t _IO_seekpos (_IO_FILE *, _IO_off64_t, int);
  472 extern void _IO_free_backup_area (_IO_FILE *) __THROW;
usr/include/x86_64-linux-gnu/bits/types/FILE.h
    7 typedef struct _IO_FILE FILE;
usr/include/x86_64-linux-gnu/bits/types/__FILE.h
    5 typedef struct _IO_FILE __FILE;