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

1 2 3 4 5 6 7

  /frameworks/base/core/java/android/util/
Printer.java 25 public interface Printer {
  /external/llvm/lib/Target/BPF/
BPFMCInstLower.h 30 AsmPrinter &Printer;
33 BPFMCInstLower(MCContext &ctx, AsmPrinter &printer)
34 : Ctx(ctx), Printer(printer) {}
  /external/llvm/lib/Target/Lanai/
LanaiMCInstLower.h 31 AsmPrinter &Printer;
35 : Ctx(CTX), Printer(AP) {}
  /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/WebAssembly/
WebAssemblyMCInstLower.h 32 AsmPrinter &Printer;
40 WebAssemblyMCInstLower(MCContext &ctx, AsmPrinter &printer)
41 : Ctx(ctx), Printer(printer) {}
  /external/llvm/tools/llvm-pdbdump/
BuiltinDumper.h 30 LinePrinter &Printer;
EnumDumper.h 27 LinePrinter &Printer;
ExternalSymbolDumper.h 29 LinePrinter &Printer;
TypeDumper.h 30 LinePrinter &Printer;
TypedefDumper.h 34 LinePrinter &Printer;
VariableDumper.h 40 LinePrinter &Printer;
FunctionDumper.h 38 LinePrinter &Printer;
ClassDefinitionDumper.h 41 LinePrinter &Printer;
CompilandDumper.h 39 LinePrinter &Printer;
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.h 32 AsmPrinter &Printer;
36 AArch64MCInstLower(MCContext &ctx, AsmPrinter &printer);
  /external/llvm/lib/Target/XCore/
XCoreMCInstLower.h 29 AsmPrinter &Printer;
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeMCInstLower.h 33 AsmPrinter &Printer;
35 MBlazeMCInstLower(MCContext &ctx, Mangler &mang, AsmPrinter &printer)
36 : Ctx(ctx), Mang(mang), Printer(printer) {}
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430MCInstLower.h 33 AsmPrinter &Printer;
35 MSP430MCInstLower(MCContext &ctx, Mangler &mang, AsmPrinter &printer)
36 : Ctx(ctx), Mang(mang), Printer(printer) {}
  /system/core/libutils/
Printer.cpp 17 #define LOG_TAG "Printer"
20 #include <utils/Printer.h>
29 * Implementation of Printer
31 Printer::Printer() {
35 Printer::~Printer() {
39 void Printer::printFormatLine(const char* format, ...) {
150 PrefixPrinter::PrefixPrinter(Printer& printer, const char* prefix)
    [all...]
  /external/flatbuffers/grpc/src/compiler/
schema_interface.h 81 struct Printer {
82 virtual ~Printer() {}
108 virtual std::unique_ptr<Printer> CreatePrinter(grpc::string *str) const = 0;
  /external/protobuf/src/google/protobuf/io/
printer.cc 35 #include <google/protobuf/io/printer.h>
44 Printer::Printer(ZeroCopyOutputStream* output, char variable_delimiter)
54 Printer::Printer(ZeroCopyOutputStream* output, char variable_delimiter,
65 Printer::~Printer() {
72 bool Printer::GetSubstitutionRange(const char* varname,
89 void Printer::Annotate(const char* begin_varname, const char* end_varname,
92 // Can't generate signatures with this Printer
    [all...]
  /external/clang/unittests/AST/
StmtPrinterTest.cpp 1 //===- unittests/AST/StmtPrinterTest.cpp --- Statement printer tests ------===//
73 PrintMatch Printer;
75 Finder.addMatcher(NodeMatch, &Printer);
83 if (Printer.getNumFoundStmts() == 0)
87 if (Printer.getNumFoundStmts() > 1)
90 "(found " << Printer.getNumFoundStmts() << ")";
92 if (Printer.getPrinted() != ExpectedPrinted)
95 "got \"" << Printer.getPrinted().str() << "\"";
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
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);
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
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);
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
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);

Completed in 434 milliseconds

1 2 3 4 5 6 7