コード例 #1
0
ファイル: iostream.C プロジェクト: Kiddinglife/4.4BSD-Lite
istream& istream::scan(const char *format ...)
{
    if (ipfx0()) {
	va_list ap;
	va_start(ap, format);
	_strbuf->vscan(format, ap, this);
	va_end(ap);
    }
    return *this;
}
コード例 #2
0
ファイル: IOStream_T.cpp プロジェクト: Denominator13/NeoCore
template <class STREAM> ACE_IOStream<STREAM> &
ACE_IOStream<STREAM>::operator>> (ACE_IOStream_String &v)
{
  if (ipfx0 ())
    {
      char c;
      this->get (c);

      for (v = c;
           this->get (c) && !isspace (c);
           v += c)
        continue;
    }

  isfx ();

  return *this;
}
コード例 #3
0
ファイル: iostream.C プロジェクト: Kiddinglife/4.4BSD-Lite
istream& istream::vscan(const char *format, _G_va_list args)
{
    if (ipfx0())
	_strbuf->vscan(format, args, this);
    return *this;
}