cprintf.hh (11320:42ecb523c64a) cprintf.hh (12979:246ea8611e73)
1/*
2 * Copyright (c) 2014 ARM Limited
3 * Copyright (c) 2002-2006 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 40 unchanged lines hidden (view full) ---

49 std::ostream &stream;
50 const char *format;
51 const char *ptr;
52 bool cont;
53
54 std::ios::fmtflags saved_flags;
55 char saved_fill;
56 int saved_precision;
1/*
2 * Copyright (c) 2014 ARM Limited
3 * Copyright (c) 2002-2006 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 40 unchanged lines hidden (view full) ---

49 std::ostream &stream;
50 const char *format;
51 const char *ptr;
52 bool cont;
53
54 std::ios::fmtflags saved_flags;
55 char saved_fill;
56 int saved_precision;
57 int saved_width;
57
58 Format fmt;
59 void process();
60 void process_flag();
61
62 public:
63 Print(std::ostream &stream, const std::string &format);
64 Print(std::ostream &stream, const char *format);

--- 127 unchanged lines hidden ---
58
59 Format fmt;
60 void process();
61 void process_flag();
62
63 public:
64 Print(std::ostream &stream, const std::string &format);
65 Print(std::ostream &stream, const char *format);

--- 127 unchanged lines hidden ---