Searched defs:PrintStream (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPrintStream.cpp27 #include "PrintStream.h"
35 PrintStream::PrintStream() { } function in class:WTF::PrintStream
36 PrintStream::~PrintStream() { } // Force the vtable to be in this module
38 void PrintStream::printf(const char* format, ...)
46 void PrintStream::flush()
50 void printInternal(PrintStream& out, const char* string)
55 void printInternal(PrintStream& out, const CString& string)
60 void printInternal(PrintStream
[all...]
H A DPrintStream.h39 class PrintStream { class in namespace:WTF
40 WTF_MAKE_FAST_ALLOCATED; WTF_MAKE_NONCOPYABLE(PrintStream);
42 PrintStream();
43 virtual ~PrintStream();
48 // Typically a no-op for many subclasses of PrintStream, this is a hint that
209 void printInternal(PrintStream&, const char*);
210 void printInternal(PrintStream&, const CString&);
211 void printInternal(PrintStream&, const String&);
212 inline void printInternal(PrintStream& out, char* value) { printInternal(out, static_cast<const char*>(value)); }
213 inline void printInternal(PrintStream
[all...]

Completed in 93 milliseconds