Home
last modified time | relevance | path

Searched refs:_M_ptr (Results 1 – 7 of 7) sorted by relevance

/external/llvm/test/Transforms/DeadStoreElimination/
D2011-09-06-EndOfFunction.ll13 %_M_ptr.i.i = getelementptr inbounds %"class.std::auto_ptr"* %temp.lvalue, i64 0, i32 0
14 %tmp.i.i = load i32** %_M_ptr.i.i, align 8
16 store i32* null, i32** %_M_ptr.i.i, align 8
17 %_M_ptr.i.i4 = getelementptr inbounds %"class.std::auto_ptr"* %agg.result, i64 0, i32 0
18 store i32* %tmp.i.i, i32** %_M_ptr.i.i4, align 8
/external/clang/test/Analysis/diagnostics/Inputs/include/
Dreport-issues-within-main-file.h4 _Tp* _M_ptr;
6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } in throw()
7 ~auto_ptr() { delete _M_ptr; } in ~auto_ptr() local
/external/clang/test/CodeGenCXX/
D2010-07-23-DeclLoc.cpp14 _Tp* _M_ptr; member in std::auto_ptr
17 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } in auto_ptr()
/external/stlport/stlport/stl/
D_function_adaptors.h582 _Result (*_M_ptr)(_Arg);
585 explicit pointer_to_unary_function(_Result (*__x)(_Arg)) : _M_ptr(__x) {}
586 _Result operator()(_Arg __x) const { return _M_ptr(__x); }
593 _Result (*_M_ptr)(_Arg1, _Arg2);
597 : _M_ptr(__x) {}
599 return _M_ptr(__x, __y);
691 __fun_type _M_ptr;
694 explicit pointer_to_unary_function(__fun_type __x) : _M_ptr(__x) {}
695 void operator()(_Arg __x) const { _M_ptr(__x); }
701 __fun_type _M_ptr;
[all …]
D_fstream.c283 _CharT* _M_ptr; member
284 _Filebuf_Tmp_Buf(ptrdiff_t __n) : _M_ptr(0) { _M_ptr = new _CharT[__n]; } in _Filebuf_Tmp_Buf()
285 ~_Filebuf_Tmp_Buf() { delete[] _M_ptr; } in ~_Filebuf_Tmp_Buf()
352 _CharT* __ibegin = __buf._M_ptr; in seekoff()
D_rope.h626 _Rope_RopeRep<_CharT,_Alloc>* _M_ptr;
628 { _Rope_RopeRep<_CharT,_Alloc>::_S_unref(_M_ptr); }
630 _Rope_self_destruct_ptr() : _M_ptr(0) {}
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
635 _Rope_RopeRep<_CharT,_Alloc>& operator*() { return *_M_ptr; }
636 _Rope_RopeRep<_CharT,_Alloc>* operator->() { return _M_ptr; }
637 operator _Rope_RopeRep<_CharT,_Alloc>*() { return _M_ptr; }
640 { _M_ptr = __x; return *this; }
/external/clang/www/
Dlibstdc++4.4-clang0x.patch71 std::swap(_M_ptr, __other._M_ptr);