OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_M_ptr
(Results
1 - 3
of
3
) sorted by null
/external/stlport/stlport/stl/
_function_adaptors.h
582
_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
...]
_fstream.c
283
_CharT*
_M_ptr
;
284
_Filebuf_Tmp_Buf(ptrdiff_t __n) :
_M_ptr
(0) {
_M_ptr
= new _CharT[__n]; }
285
~_Filebuf_Tmp_Buf() { delete[]
_M_ptr
; }
352
_CharT* __ibegin = __buf.
_M_ptr
;
_rope.h
626
_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; }
[
all
...]
Completed in 22 milliseconds