HomeSort by relevance Sort by last modified time
    Searched defs:Printer (Results 26 - 50 of 162) sorted by null

12 3 4 5 6 7

  /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);
  /prebuilts/tools/linux-x86_64/protoc/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);
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 1 //===- unittests/AST/DeclPrinterTest.cpp --- Declaration printer tests ----===//
74 PrintMatch Printer;
76 Finder.addMatcher(NodeMatch, &Printer);
84 if (Printer.getNumFoundDecls() == 0)
88 if (Printer.getNumFoundDecls() > 1)
91 "(found " << Printer.getNumFoundDecls() << ")";
93 if (Printer.getPrinted() != ExpectedPrinted)
96 "got \"" << Printer.getPrinted().str() << "\"";
    [all...]
  /system/core/libutils/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/clang/test/SemaCXX/
format-strings.cpp 106 class Printer {
115 void use_class(Printer<const char *> &p) {
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
ClassInfo.java 56 new Printer(out));
64 private class Printer implements ICoverageVisitor {
68 Printer(final PrintWriter out) {
  /external/llvm/lib/CodeGen/
GCMetadata.cpp 28 class Printer : public FunctionPass {
33 explicit Printer(raw_ostream &OS) : FunctionPass(ID), OS(OS) {}
84 char Printer::ID = 0;
87 return new Printer(OS);
90 const char *Printer::getPassName() const {
94 void Printer::getAnalysisUsage(AnalysisUsage &AU) const {
110 bool Printer::runOnFunction(Function &F) {
144 bool Printer::doFinalization(Module &M) {
146 assert(GMI && "Printer didn't require GCModuleInfo?!");
  /external/protobuf/src/google/protobuf/io/
printer.h 51 // Records annotations about a Printer's output.
63 // Records annotations about a Printer's output to the given protocol buffer,
96 // Printer printer(output, '$');
99 // printer.Print(vars, "My name is $name$.");
103 // Printer aggressively enforces correct usage, crashing (with assert failures)
107 // If a Printer is constructed with an AnnotationCollector, it will provide it
108 // with annotations that connect the Printer's output to paths that can identify
113 // printer.Annotate("name", person_);
130 // printer.Annotate("name", "name", person_)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
GCMetadata.cpp 28 class Printer : public FunctionPass {
33 explicit Printer(raw_ostream &OS) : FunctionPass(ID), OS(OS) {}
127 char Printer::ID = 0;
130 return new Printer(OS);
134 const char *Printer::getPassName() const {
138 void Printer::getAnalysisUsage(AnalysisUsage &AU) const {
154 bool Printer::runOnFunction(Function &F) {
LLVMTargetMachine.cpp 196 FunctionPass *Printer = getTarget().createAsmPrinter(*this, *AsmStreamer);
197 if (Printer == 0)
203 PM.add(Printer);
263 FunctionPass *Printer = getTarget().createAsmPrinter(*this, *AsmStreamer);
264 if (Printer == 0)
270 PM.add(Printer);
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXTargetMachine.cpp 180 FunctionPass *Printer = getTarget().createAsmPrinter(*this, *AsmStreamer);
181 if (Printer == 0)
187 PM.add(Printer);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
printer.h 51 // Records annotations about a Printer's output.
63 // Records annotations about a Printer's output to the given protocol buffer,
96 // Printer printer(output, '$');
99 // printer.Print(vars, "My name is $name$.");
103 // Printer aggressively enforces correct usage, crashing (with assert failures)
107 // If a Printer is constructed with an AnnotationCollector, it will provide it
108 // with annotations that connect the Printer's output to paths that can identify
113 // printer.Annotate("name", person_);
130 // printer.Annotate("name", "name", person_)
    [all...]
  /art/test/ManyMethods/
ManyMethods.java 33 static class Printer {
46 Printer.Print(Strings.msg0);
50 Printer.Print(Strings.msg1);
54 Printer.Print(Strings.msg2);
58 Printer.Print(Strings.msg1);
62 Printer.Print(Strings.msg4);
66 Printer.Print(Strings.msg5);
74 Printer.Print(Strings.msg7);
78 Printer.Print(Strings.msg8);
90 Printer.Print(Strings.msg11)
    [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) {
  /external/llvm/lib/Target/AMDGPU/Utils/
AMDKernelCodeTUtils.cpp 86 auto Printer = getPrinterTable()[FldIndex];
87 if (Printer)
88 Printer(get_amd_kernel_code_t_FieldName(FldIndex), C, OS);
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
text_format.h 90 class LIBPROTOBUF_EXPORT Printer {
92 Printer();
93 ~Printer();
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
text_format.h 90 class LIBPROTOBUF_EXPORT Printer {
92 Printer();
93 ~Printer();
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
text_format.h 90 class LIBPROTOBUF_EXPORT Printer {
92 Printer();
93 ~Printer();
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
text_format.h 90 class LIBPROTOBUF_EXPORT Printer {
92 Printer();
93 ~Printer();
  /external/protobuf/src/google/protobuf/
text_format.h 93 // The default printer that converts scalar values from fields into
97 // Printer.
130 class LIBPROTOBUF_EXPORT Printer {
132 Printer();
133 ~Printer();
188 // don't have a field-specific printer registered.
189 // Takes ownership of the printer.
190 void SetDefaultFieldValuePrinter(const FieldValuePrinter* printer);
215 // If expand==false, print Any using the default printer. The output will
227 // property of TextFormat::Printer. That is, from the printed message, w
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/gcc-4.8.3/python/libstdcxx/v6/
printers.py 378 # This is a pretty printer for std::_Rb_tree_iterator (which is
738 # A "regular expression" printer which conforms to the
752 # A pretty-printer that conforms to the "PrettyPrinter" protocol from
753 # gdb.printing. It can also be used directly as an old-style printer.
754 class Printer(object):
756 super(Printer, self).__init__()
768 printer = RxPrinter(name, function)
769 self.subprinters.append(printer)
770 self.lookup[name] = printer
808 # Cannot find a pretty printer. Return None
    [all...]
  /prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/
printers.py 378 # This is a pretty printer for std::_Rb_tree_iterator (which is
738 # A "regular expression" printer which conforms to the
752 # A pretty-printer that conforms to the "PrettyPrinter" protocol from
753 # gdb.printing. It can also be used directly as an old-style printer.
754 class Printer(object):
756 super(Printer, self).__init__()
768 printer = RxPrinter(name, function)
769 self.subprinters.append(printer)
770 self.lookup[name] = printer
808 # Cannot find a pretty printer. Return None
    [all...]
  /prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.9/
printers.py 438 # This is a pretty printer for std::_Rb_tree_iterator (which is
841 # A "regular expression" printer which conforms to the
860 # A pretty-printer that conforms to the "PrettyPrinter" protocol from
861 # gdb.printing. It can also be used directly as an old-style printer.
862 class Printer(object):
864 super(Printer, self).__init__()
876 printer = RxPrinter(name, function)
877 self.subprinters.append(printer)
878 self.lookup[name] = printer
921 # Cannot find a pretty printer. Return None
    [all...]
  /prebuilts/gdb/linux-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/
printers.py 378 # This is a pretty printer for std::_Rb_tree_iterator (which is
738 # A "regular expression" printer which conforms to the
752 # A pretty-printer that conforms to the "PrettyPrinter" protocol from
753 # gdb.printing. It can also be used directly as an old-style printer.
754 class Printer(object):
756 super(Printer, self).__init__()
768 printer = RxPrinter(name, function)
769 self.subprinters.append(printer)
770 self.lookup[name] = printer
808 # Cannot find a pretty printer. Return None
    [all...]

Completed in 7722 milliseconds

12 3 4 5 6 7