Lines Matching defs:is
13 distributed under the License is distributed on an "AS IS" BASIS,
399 // string is longer the the maximum buffer size (max_size)
427 // e.g. sc_string_old("a=%d, s is %s").fmt(1).fmt("string")
428 // should produce a=1, s is string
431 // if the type of the argument is incompatible with format
455 if(is_delimiter("hlL",result)) result++; // I64 is not supported
558 operator >> ( ::std::istream& is, sc_string_old& s )
570 while( is.get( c ) && isspace( c ) )
573 for( ; is.good() && ! isspace( c ); is.get( c ) ) {
584 return is;