/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_primitive_field.cc | 37 #include <google/protobuf/io/printer.h> 113 GeneratePrivateMembers(io::Printer* printer) const { 114 printer->Print(variables_, "$type$ $name$_;\n"); 118 GenerateAccessorDeclarations(io::Printer* printer) const { 119 printer->Print(variables_, 125 GenerateInlineAccessorDefinitions(io::Printer* printer) const { 126 printer->Print(variables_ [all...] |
cpp_string_field.cc | 37 #include <google/protobuf/io/printer.h> 82 GeneratePrivateMembers(io::Printer* printer) const { 83 printer->Print(variables_, "::std::string* $name$_;\n"); 87 GenerateStaticMembers(io::Printer* printer) const { 89 printer->Print(variables_, "static ::std::string* $default_variable$;\n"); 94 GenerateAccessorDeclarations(io::Printer* printer) const { 112 printer->Outdent() [all...] |
cpp_enum.cc | 40 #include <google/protobuf/io/printer.h> 73 void EnumGenerator::GenerateDefinition(io::Printer* printer) { 78 printer->Print(vars, "enum $classname$ {\n"); 79 printer->Indent(); 93 if (i > 0) printer->Print(",\n"); 94 printer->Print(vars, "$prefix$$name$ = $number$"); 104 printer->Outdent(); 105 printer->Print("\n};\n"); 116 printer->Print(vars [all...] |
cpp_service.cc | 37 #include <google/protobuf/io/printer.h> 59 void ServiceGenerator::GenerateDeclarations(io::Printer* printer) { 61 printer->Print(vars_, 65 GenerateInterface(printer); 66 GenerateStubDefinition(printer); 69 void ServiceGenerator::GenerateInterface(io::Printer* printer) { 70 printer->Print(vars_, 77 printer->Indent() [all...] |
cpp_enum.h | 46 class Printer; // printer.h 66 void GenerateDefinition(io::Printer* printer); 70 void GenerateGetEnumDescriptorSpecializations(io::Printer* printer); 76 void GenerateSymbolImports(io::Printer* printer); 82 void GenerateDescriptorInitializer(io::Printer* printer, int index) [all...] |
cpp_file.h | 49 class Printer; // printer.h 69 void GenerateHeader(io::Printer* printer); 70 void GenerateSource(io::Printer* printer); 75 void GenerateBuildDescriptors(io::Printer* printer); 77 void GenerateNamespaceOpeners(io::Printer* printer); [all...] |
/external/ppp/pppd/plugins/rp-pppoe/ |
common.c | 171 void (*printer)(void *, char *, ...), void *arg) 178 printer(arg, "PPPOE Discovery V%dT%d ", PPPOE_VER(packet->vertype), 182 printer(arg, "PADI"); 185 printer(arg, "PADO"); 188 printer(arg, "PADR"); 191 printer(arg, "PADS"); 194 printer(arg, "PADT"); 197 printer(arg, "unknown code %x", packet->code); 199 printer(arg, " session 0x%x length %d\n", ntohs(packet->session), len); 202 printer(arg, "PPPOE Session V%dT%d", PPPOE_VER(packet->vertype) [all...] |
/external/llvm/tools/llvm-pdbdump/ |
llvm-pdbdump.cpp | 125 LinePrinter Printer(2, outs()); 130 WithColor(Printer, PDB_ColorItem::None).get() << "Summary for "; 131 WithColor(Printer, PDB_ColorItem::Path).get() << FileName; 132 Printer.Indent(); 135 Printer.NewLine(); 136 WithColor(Printer, PDB_ColorItem::Identifier).get() << "Size"; 138 Printer << ": " << FileSize << " bytes"; 140 Printer << ": (Unable to obtain file size)"; 143 Printer.NewLine(); 144 WithColor(Printer, PDB_ColorItem::Identifier).get() << "Guid" [all...] |
TypedefDumper.cpp | 27 TypedefDumper::TypedefDumper(LinePrinter &P) : PDBSymDumper(true), Printer(P) {} 30 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; 34 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " 41 BuiltinDumper Dumper(Printer); 46 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; 47 WithColor(Printer, PDB_ColorItem::Type).get() << " " << Symbol.getName(); 52 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; 54 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; 63 FunctionDumper NestedDumper(Printer); 67 Printer << ((Symbol.isReference()) ? "&" : "*") [all...] |
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_message_field.cc | 40 #include <google/protobuf/io/printer.h> 81 GenerateMembers(io::Printer* printer) const { 82 printer->Print(variables_, 106 GenerateMergingCode(io::Printer* printer) const { 107 printer->Print(variables_, 114 GenerateParsingCode(io::Printer* printer) const { 115 printer->Print(variables_ [all...] |
javamicro_enum_field.cc | 41 #include <google/protobuf/io/printer.h> 82 GenerateMembers(io::Printer* printer) const { 83 printer->Print(variables_, 101 GenerateMergingCode(io::Printer* printer) const { 102 printer->Print(variables_, 110 GenerateParsingCode(io::Printer* printer) const { 111 printer->Print(variables_ [all...] |
javamicro_field.h | 46 class Printer; // printer.h 60 virtual void GenerateMembers(io::Printer* printer) const = 0; 61 virtual void GenerateMergingCode(io::Printer* printer) const = 0; 62 virtual void GenerateParsingCode(io::Printer* printer) const = 0; 63 virtual void GenerateSerializationCode(io::Printer* printer) const = 0 [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_extension.h | 53 class Printer; // printer.h 69 virtual void Generate(io::Printer* printer) = 0; 70 virtual void GenerateNonNestedInitializationCode(io::Printer* printer) = 0; 71 virtual void GenerateRegistrationCode(io::Printer* printer) = 0; 90 virtual void Generate(io::Printer* printer); [all...] |
java_shared_code_generator.cc | 40 #include <google/protobuf/io/printer.h> 69 scoped_ptr<io::Printer> printer(new io::Printer(output.get(), '$')); 71 printer->Print( 77 printer->Print( 82 printer->Print( 88 printer->Indent(); 89 printer->Indent(); 90 GenerateDescriptors(printer.get()) [all...] |
/prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/command/ |
type_printers.py | 1 # Type printer commands. 38 for printer in sorted_type_printers: 39 if printer.enabled: 43 print (" %s%s" % (printer.name, enabled)) 86 print ("No type printer named '%s'" % name) 102 """GDB command to enable the specified type printer. 104 Usage: enable type-printer NAME 106 NAME is the name of the type-printer. 110 super(EnableTypePrinter, self).__init__(True, "enable type-printer") 113 """GDB command to disable the specified type-printer [all...] |
/frameworks/base/core/java/android/print/ |
PrinterInfo.java | 24 * This class represents the description of a printer. Instances of 27 * major components, printer properties such as name, id, status, 28 * description and printer capabilities which describe the various 29 * print modes a printer supports such as media sizes, margins, etc. 33 /** Printer status: the printer is idle and ready to print. */ 36 /** Printer status: the printer is busy printing. */ 39 /** Printer status: the printer is not available. * [all...] |