HomeSort by relevance Sort by last modified time
    Searched full:printer (Results 26 - 50 of 1107) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/tools/llvm-pdbdump/
CompilandDumper.cpp 39 : PDBSymDumper(true), Printer(P) {}
47 if (Printer.IsCompilandExcluded(FullName))
50 Printer.NewLine();
51 WithColor(Printer, PDB_ColorItem::Path).get() << FullName;
56 Printer.Indent();
59 Printer.Unindent();
63 if (Printer.IsSymbolExcluded(Symbol.getName()))
66 Printer.NewLine();
70 Printer << "data: ";
71 WithColor(Printer, PDB_ColorItem::Address).get(
    [all...]
BuiltinDumper.cpp 19 : PDBSymDumper(false), Printer(P) {}
26 WithColor(Printer, PDB_ColorItem::Type).get() << "float";
28 WithColor(Printer, PDB_ColorItem::Type).get() << "double";
31 WithColor(Printer, PDB_ColorItem::Type).get() << "unsigned";
33 WithColor(Printer, PDB_ColorItem::Type).get() << " __int64";
37 WithColor(Printer, PDB_ColorItem::Type).get() << "int";
39 WithColor(Printer, PDB_ColorItem::Type).get() << "__int64";
42 WithColor(Printer, PDB_ColorItem::Type).get() << "char";
45 WithColor(Printer, PDB_ColorItem::Type).get() << "wchar_t";
48 WithColor(Printer, PDB_ColorItem::Type).get() << "void"
    [all...]
EnumDumper.cpp 22 EnumDumper::EnumDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {}
25 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum ";
26 WithColor(Printer, PDB_ColorItem::Type).get() << Symbol.getName();
31 Printer << " : ";
32 BuiltinDumper Dumper(Printer);
35 Printer << " {";
36 Printer.Indent();
41 Printer.NewLine();
42 WithColor(Printer, PDB_ColorItem::Identifier).get()
44 Printer << " = "
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_field.h 46 class Printer; // printer.h
60 virtual void GenerateInitSavedDefaultCode(io::Printer* printer) const;
71 io::Printer* printer, bool lazy_init) const = 0;
73 virtual void GenerateClearCode(io::Printer* printer) const = 0;
74 virtual void GenerateMergingCode(io::Printer* printer) const = 0
    [all...]
javanano_message_field.cc 40 #include <google/protobuf/io/printer.h>
85 GenerateMembers(io::Printer* printer, bool /* unused lazy_init */) const {
86 printer->Print(variables_,
91 GenerateClearCode(io::Printer* printer) const {
92 printer->Print(variables_,
97 GenerateMergingCode(io::Printer* printer) const {
98 printer->Print(variables_
    [all...]
javanano_enum_field.cc 41 #include <google/protobuf/io/printer.h>
100 io::Printer* printer, const vector<string>& canonical_values) {
102 printer->Print(
122 GenerateMembers(io::Printer* printer, bool /* unused lazy_init */) const {
124 printer->Print(variables_, "$message_type_intdef$\n");
126 printer->Print(variables_, "public $type$ $name$;\n");
129 printer->Print(variables_,
135 GenerateClearCode(io::Printer* printer) const
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_primitive_field.cc 44 #include <google/protobuf/io/printer.h>
193 GenerateInterfaceMembers(io::Printer* printer) const {
195 WriteFieldDocComment(printer, descriptor_);
196 printer->Print(variables_,
199 WriteFieldDocComment(printer, descriptor_);
200 printer->Print(variables_,
205 GenerateMembers(io::Printer* printer) const {
206 printer->Print(variables_
    [all...]
java_field.h 54 class Printer; // printer.h
69 virtual void GenerateInterfaceMembers(io::Printer* printer) const = 0;
70 virtual void GenerateMembers(io::Printer* printer) const = 0;
71 virtual void GenerateBuilderMembers(io::Printer* printer) const = 0;
72 virtual void GenerateInitializationCode(io::Printer* printer) const = 0
    [all...]
java_string_field.cc 45 #include <google/protobuf/io/printer.h>
193 GenerateInterfaceMembers(io::Printer* printer) const {
195 WriteFieldDocComment(printer, descriptor_);
196 printer->Print(variables_,
199 WriteFieldDocComment(printer, descriptor_);
200 printer->Print(variables_,
202 WriteFieldDocComment(printer, descriptor_);
203 printer->Print(variables_,
209 GenerateMembers(io::Printer* printer) const
    [all...]
java_doc_comment.h 43 class Printer; // printer.h
51 void WriteMessageDocComment(io::Printer* printer, const Descriptor* message);
52 void WriteFieldDocComment(io::Printer* printer, const FieldDescriptor* field);
53 void WriteEnumDocComment(io::Printer* printer, const EnumDescriptor* enum_);
54 void WriteEnumValueDocComment(io::Printer* printer,
    [all...]
  /external/tcpdump/
INSTALL.txt 134 print-802_11.c - IEEE 802.11 printer routines
135 print-ap1394.c - Apple IP-over-IEEE 1394 printer routines
136 print-ah.c - IPSEC Authentication Header printer routines
137 print-aodv.c - AODV printer routines
138 print-arcnet.c - ARCNET printer routines
139 print-arp.c - Address Resolution Protocol printer routines
141 print-atalk.c - AppleTalk printer routines
142 print-atm.c - ATM printer routines
143 print-beep.c - BEEP printer routines
144 print-bgp.c - Border Gateway Protocol printer routine
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_service.h 46 class Printer; // printer.h
65 void GenerateDeclarations(io::Printer* printer);
71 void GenerateDescriptorInitializer(io::Printer* printer, int index);
74 void GenerateImplementation(io::Printer* printer);
83 void GenerateInterface(io::Printer* printer);
    [all...]
cpp_message.cc 48 #include <google/protobuf/io/printer.h>
64 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) {
68 printer->Print("// $def$\n",
320 GenerateForwardDeclaration(io::Printer* printer) {
321 printer->Print("class $classname$;\n",
325 nested_generators_[i]->GenerateForwardDeclaration(printer);
330 GenerateEnumDefinitions(io::Printer* printer) {
    [all...]
cpp_message_field.cc 37 #include <google/protobuf/io/printer.h>
78 GeneratePrivateMembers(io::Printer* printer) const {
79 printer->Print(variables_, "$type$* $name$_;\n");
83 GenerateAccessorDeclarations(io::Printer* printer) const {
84 printer->Print(variables_,
92 GenerateInlineAccessorDefinitions(io::Printer* printer) const {
93 printer->Print(variables_
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/
printing.py 1 # Pretty-printer utilities.
30 """A basic pretty-printer.
40 enabled: A boolean indicating if the printer is enabled.
42 Subprinters are for situations where "one" pretty-printer is actually a
43 collection of several printers. E.g., The libstdc++ pretty-printer has
44 a pretty-printer for each of several different types, based on regexps.
76 def register_pretty_printer(obj, printer, replace=False):
77 """Register pretty-printer PRINTER with OBJ.
79 The printer is added to the front of the search list, thus one can overrid
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.cc 41 #include <google/protobuf/io/printer.h>
56 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) {
60 printer->Print("// $def$\n",
149 void MessageGenerator::GenerateStaticVariables(io::Printer* printer) {
154 .GenerateStaticVariables(printer);
159 io::Printer* printer) {
164 .GenerateStaticVariableInitializers(printer);
    [all...]

Completed in 461 milliseconds

12 3 4 5 6 7 8 91011>>