Lines Matching refs:ce
48 ary_cast( const Object & ce) in ary_cast() argument
50 csv_assert( is_type<DEST>(ce) ); in ary_cast()
51 return static_cast< const DEST& >(ce); in ary_cast()
56 ary_cast( Object & ce) in ary_cast() argument
58 csv_assert( is_type<DEST>(ce) ); in ary_cast()
59 return static_cast< DEST& >(ce); in ary_cast()
64 ary_cast( const Object * ce) in ary_cast() argument
66 if ( ce ? is_type<DEST>(*ce) : false ) in ary_cast()
67 return static_cast< const DEST* >(ce); in ary_cast()
73 ary_cast( Object * ce) in ary_cast() argument
75 if ( ce ? is_type<DEST>(*ce) : false ) in ary_cast()
76 return static_cast< DEST* >(ce); in ary_cast()