HomeSort by relevance Sort by last modified time
    Searched defs:Printer (Results 1 - 25 of 70) sorted by null

1 2 3

  /frameworks/base/core/java/android/util/
Printer.java 25 public interface Printer {
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.h 30 AsmPrinter &Printer;
32 MSP430MCInstLower(MCContext &ctx, AsmPrinter &printer)
33 : Ctx(ctx), Printer(printer) {}
  /external/llvm/lib/Target/XCore/
XCoreMCInstLower.h 29 AsmPrinter &Printer;
  /system/core/libutils/
Printer.cpp 17 #define LOG_TAG "Printer"
20 #include <utils/Printer.h>
35 * Implementation of Printer
37 Printer::Printer() {
41 Printer::~Printer() {
45 void Printer::printFormatLine(const char* format, ...) {
155 PrefixPrinter::PrefixPrinter(Printer& printer, const char* prefix)
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
printer.cc 35 #include <google/protobuf/io/printer.h>
43 Printer::Printer(ZeroCopyOutputStream* output, char variable_delimiter)
52 Printer::~Printer() {
59 void Printer::Print(const map<string, string>& variables, const char* text) {
113 void Printer::Print(const char* text) {
118 void Printer::Print(const char* text,
125 void Printer::Print(const char* text,
134 void Printer::Print(const char* text
    [all...]
printer.h 54 // Printer printer(output, '$');
57 // printer.Print(vars, "My name is $name$.");
61 // Printer aggressively enforces correct usage, crashing (with assert failures)
64 class LIBPROTOBUF_EXPORT Printer {
66 // Create a printer that writes text to the given output stream. Use the
68 Printer(ZeroCopyOutputStream* output, char variable_delimiter);
69 ~Printer();
129 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Printer);
  /external/protobuf/src/google/protobuf/io/
printer.cc 35 #include <google/protobuf/io/printer.h>
44 Printer::Printer(ZeroCopyOutputStream* output, char variable_delimiter)
53 Printer::~Printer() {
60 void Printer::Print(const map<string, string>& variables, const char* text) {
114 void Printer::Print(const char* text) {
119 void Printer::Print(const char* text,
126 void Printer::Print(const char* text,
135 void Printer::Indent()
    [all...]
printer.h 54 // Printer printer(output, '$');
57 // printer.Print(vars, "My name is $name$.");
61 // Printer aggressively enforces correct usage, crashing (with assert failures)
64 class LIBPROTOBUF_EXPORT Printer {
66 // Create a printer that writes text to the given output stream. Use the
68 Printer(ZeroCopyOutputStream* output, char variable_delimiter);
69 ~Printer();
125 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Printer);
  /external/clang/unittests/AST/
StmtPrinterTest.cpp 1 //===- unittests/AST/StmtPrinterTest.cpp --- Statement printer tests ------===//
73 PrintMatch Printer;
75 Finder.addMatcher(NodeMatch, &Printer);
81 if (Printer.getNumFoundStmts() == 0)
85 if (Printer.getNumFoundStmts() > 1)
88 "(found " << Printer.getNumFoundStmts() << ")";
90 if (Printer.getPrinted() != ExpectedPrinted)
93 "got \"" << Printer.getPrinted() << "\"";
DeclPrinterTest.cpp 1 //===- unittests/AST/DeclPrinterTest.cpp --- Declaration printer tests ----===//
74 PrintMatch Printer;
76 Finder.addMatcher(NodeMatch, &Printer);
82 if (Printer.getNumFoundDecls() == 0)
86 if (Printer.getNumFoundDecls() > 1)
89 "(found " << Printer.getNumFoundDecls() << ")";
91 if (Printer.getPrinted() != ExpectedPrinted)
94 "got \"" << Printer.getPrinted() << "\"";
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.h 87 class LIBPROTOBUF_EXPORT Printer {
89 Printer();
90 ~Printer();
text_format.cc 66 TextFormat::Printer printer; local
67 printer.SetSingleLineMode(true);
69 printer.PrintToString(*this, &debug_string);
82 TextFormat::Printer printer; local
83 printer.SetUseUtf8StringEscaping(true);
85 printer.PrintToString(*this, &debug_string);
646 // from the Printer found in //google/protobuf/io/printer.
    [all...]
  /system/core/include/utils/
Printer.h 25 class Printer {
36 Printer();
37 virtual ~Printer();
38 }; // class Printer
41 class LogPrinter : public Printer {
43 // Create a printer using the specified logcat and log priority
64 class FdPrinter : public Printer {
66 // Create a printer using the specified file descriptor.
88 class String8Printer : public Printer {
90 // Create a printer using the specified String8 as the target
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
printer.h 24 class Printer : public base::SupportsWeakPtr<Printer>,
30 Printer();
33 virtual ~Printer();
38 // Returns true if printer was started.
45 FRIEND_TEST_ALL_PREFIXES(Printer, ValidateCapabilities);
146 // Applies new local settings to printer.
149 // Used for erasing all printer info.
244 // Contains |true| if Printer has to check pending local settings.
247 // Contains |true| if Printer has to check available printjobs
    [all...]
printer.cc 5 #include "cloud_print/gcp20/prototype/printer.h"
44 const char kPrinterDescription[] = "Printer emulator";
57 " 'printer': {"
147 Printer::Printer()
156 Printer::~Printer() {
160 bool Printer::Start() {
177 bool Printer::IsRunning() const {
181 void Printer::Stop()
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
printer.py 33 class Printer(object):
runner_unittest.py 32 from webkitpy.test.printer import Printer
96 runner = Runner(Printer(stream, options), loader, WebKitFinder(FileSystem()))
main.py 39 from webkitpy.test.printer import Printer
79 self.printer = Printer(sys.stderr)
124 self.printer.configure(self._options)
144 self.printer.write_update("Checking imports ...")
148 self.printer.write_update("Finding the individual test methods ...")
152 self.printer.write_update("Running the tests ...")
153 self.printer.num_tests = len(parallel_tests) + len(serial_tests)
155 test_runner = Runner(self.printer, loader, self.webkit_finder
    [all...]
  /external/clang/test/SemaCXX/
format-strings.cpp 105 class Printer {
114 void use_class(Printer<const char *> &p) {
  /external/llvm/lib/CodeGen/
GCMetadata.cpp 28 class Printer : public FunctionPass {
33 explicit Printer(raw_ostream &OS) : FunctionPass(ID), OS(OS) {}
115 char Printer::ID = 0;
118 return new Printer(OS);
122 const char *Printer::getPassName() const {
126 void Printer::getAnalysisUsage(AnalysisUsage &AU) const {
142 bool Printer::runOnFunction(Function &F) {
173 bool Printer::doFinalization(Module &M) {
175 assert(GMI && "Printer didn't require GCModuleInfo?!");
LLVMTargetMachine.cpp 220 FunctionPass *Printer = getTarget().createAsmPrinter(*this, *AsmStreamer);
221 if (Printer == 0)
227 PM.add(Printer);
286 FunctionPass *Printer = getTarget().createAsmPrinter(*this, *AsmStreamer);
287 if (Printer == 0)
293 PM.add(Printer);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.h 90 class LIBPROTOBUF_EXPORT Printer {
92 Printer();
93 ~Printer();
  /external/chromium_org/tools/gdb/
gdb_chrome.py 48 class Printer(object):
53 class StringPrinter(Printer):
79 class SizePrinter(Printer):
85 class PointPrinter(Printer):
92 class RectPrinter(Printer):
99 class SmartPtrPrinter(Printer):
128 class CallbackPrinter(Printer):
135 class LocationPrinter(Printer):
144 class LockPrinter(Printer):
190 class IpcMessagePrinter(Printer)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ClassFilePrinter.java 119 StackMapTable.Printer.print((StackMapTable)ai, out);
StackMapTable.java 681 Printer.print(this, w);
690 Printer.print(this, new java.io.PrintWriter(ps, true));
693 static class Printer extends Walker {
702 new Printer(smt.get(), writer).parse();
709 Printer(byte[] data, PrintWriter pw) {

Completed in 825 milliseconds

1 2 3