This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
const CORBA::WChar * | x | |||
) |
Definition at line 304 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), ACE_CDR::LONG_ALIGN, and ACE_CDR::SHORT_ALIGN.
00306 { 00307 return 00308 os.fragment_stream ((sizeof (CORBA::WChar) == 2 00309 ? ACE_CDR::SHORT_ALIGN 00310 : ACE_CDR::LONG_ALIGN), 00311 sizeof (CORBA::WChar)) 00312 && static_cast<ACE_OutputCDR &> (os) << x; 00313 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
const char * | x | |||
) |
Definition at line 295 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::OCTET_ALIGN.
00297 { 00298 return 00299 os.fragment_stream (ACE_CDR::OCTET_ALIGN, 00300 sizeof (char)) 00301 && static_cast<ACE_OutputCDR &> (os) << x; 00302 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::Double | x | |||
) |
Definition at line 286 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::LONGLONG_ALIGN.
00288 { 00289 return 00290 os.fragment_stream (ACE_CDR::LONGLONG_ALIGN, 00291 sizeof (CORBA::Double)) 00292 && static_cast<ACE_OutputCDR &> (os) << x; 00293 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::Float | x | |||
) |
Definition at line 277 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::LONG_ALIGN.
00279 { 00280 return 00281 os.fragment_stream (ACE_CDR::LONG_ALIGN, 00282 sizeof (CORBA::Float)) 00283 && static_cast<ACE_OutputCDR &> (os) << x; 00284 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::LongDouble | x | |||
) |
Definition at line 268 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::LONGDOUBLE_ALIGN.
00270 { 00271 return 00272 os.fragment_stream (ACE_CDR::LONGDOUBLE_ALIGN, 00273 sizeof (CORBA::LongDouble)) 00274 && static_cast<ACE_OutputCDR &> (os) << x; 00275 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::ULongLong | x | |||
) |
Definition at line 259 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::LONGLONG_ALIGN.
00261 { 00262 return 00263 os.fragment_stream (ACE_CDR::LONGLONG_ALIGN, 00264 sizeof (CORBA::ULongLong)) 00265 && static_cast<ACE_OutputCDR &> (os) << x; 00266 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::LongLong | x | |||
) |
Definition at line 250 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::LONGLONG_ALIGN.
00252 { 00253 return 00254 os.fragment_stream (ACE_CDR::LONGLONG_ALIGN, 00255 sizeof (CORBA::LongLong)) 00256 && static_cast<ACE_OutputCDR &> (os) << x; 00257 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::ULong | x | |||
) |
Definition at line 241 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::LONG_ALIGN.
00243 { 00244 return 00245 os.fragment_stream (ACE_CDR::LONG_ALIGN, 00246 sizeof (CORBA::ULong)) 00247 && static_cast<ACE_OutputCDR &> (os) << x; 00248 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::Long | x | |||
) |
Definition at line 232 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::LONG_ALIGN.
00234 { 00235 return 00236 os.fragment_stream (ACE_CDR::LONG_ALIGN, 00237 sizeof (CORBA::Long)) 00238 && static_cast<ACE_OutputCDR &> (os) << x; 00239 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::UShort | x | |||
) |
Definition at line 223 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::SHORT_ALIGN.
00225 { 00226 return 00227 os.fragment_stream (ACE_CDR::SHORT_ALIGN, 00228 sizeof (CORBA::UShort)) 00229 && static_cast<ACE_OutputCDR &> (os) << x; 00230 }
ACE_INLINE CORBA::Boolean operator<< | ( | TAO_OutputCDR & | os, | |
CORBA::Short | x | |||
) |
Definition at line 214 of file CDR.inl.
References TAO_OutputCDR::fragment_stream(), and ACE_CDR::SHORT_ALIGN.
00216 { 00217 return 00218 os.fragment_stream (ACE_CDR::SHORT_ALIGN, 00219 sizeof (CORBA::Short)) 00220 && static_cast<ACE_OutputCDR &> (os) << x; 00221 }
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::WChar *& | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::Char *& | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::Double & | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::Float & | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::LongDouble & | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::ULongLong & | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::LongLong & | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::ULong & | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::Long & | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::UShort & | x | |||
) |
ACE_INLINE CORBA::Boolean operator>> | ( | TAO_InputCDR & | is, | |
CORBA::Short & | x | |||
) |