/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_enum_field.h | 53 void GenerateMembers(io::Printer* printer) const; 54 void GenerateMergingCode(io::Printer* printer) const; 55 void GenerateParsingCode(io::Printer* printer) const; 56 void GenerateSerializationCode(io::Printer* printer) const; 57 void GenerateSerializedSizeCode(io::Printer* printer) const [all...] |
javamicro_message.h | 46 class Printer; // printer.h 62 void GenerateStaticVariables(io::Printer* printer); 66 void GenerateStaticVariableInitializers(io::Printer* printer); 69 void Generate(io::Printer* printer); 72 void GenerateMessageSerializationMethods(io::Printer* printer); [all...] |
javamicro_message_field.h | 53 void GenerateMembers(io::Printer* printer) const; 54 void GenerateMergingCode(io::Printer* printer) const; 55 void GenerateParsingCode(io::Printer* printer) const; 56 void GenerateSerializationCode(io::Printer* printer) const; 57 void GenerateSerializedSizeCode(io::Printer* printer) const [all...] |
javamicro_primitive_field.h | 53 void GenerateMembers(io::Printer* printer) const; 54 void GenerateMergingCode(io::Printer* printer) const; 55 void GenerateParsingCode(io::Printer* printer) const; 56 void GenerateSerializationCode(io::Printer* printer) const; 57 void GenerateSerializedSizeCode(io::Printer* printer) const [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_file.cc | 45 #include <google/protobuf/io/printer.h> 93 void FileGenerator::GenerateHeader(io::Printer* printer) { 97 printer->Print( 110 printer->Print( 116 printer->Print( 133 printer->Print( 137 printer->Print( 140 printer->Print( 144 printer->Print [all...] |
cpp_field.h | 48 class Printer; // printer.h 75 virtual void GeneratePrivateMembers(io::Printer* printer) const = 0; 80 virtual void GenerateStaticMembers(io::Printer* printer) const {} 84 virtual void GenerateAccessorDeclarations(io::Printer* printer) const = 0; 89 io::Printer* printer) const = 0 [all...] |
cpp_enum_field.cc | 37 #include <google/protobuf/io/printer.h> 72 GeneratePrivateMembers(io::Printer* printer) const { 73 printer->Print(variables_, "int $name$_;\n"); 77 GenerateAccessorDeclarations(io::Printer* printer) const { 78 printer->Print(variables_, 84 GenerateInlineAccessorDefinitions(io::Printer* printer) const { 85 printer->Print(variables_ [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_doc_comment.cc | 39 #include <google/protobuf/io/printer.h> 106 io::Printer* printer, const SourceLocation& location) { 123 printer->Print( 131 printer->Print(" * $line$\n", "line", lines[i]); 133 printer->Print(" *$line$\n", "line", lines[i]); 136 printer->Print(" * </pre>\n"); 142 io::Printer* printer, const DescriptorType* descriptor) { 145 WriteDocCommentBodyForLocation(printer, location) [all...] |
java_lazy_message_field.cc | 39 #include <google/protobuf/io/printer.h> 59 GenerateMembers(io::Printer* printer) const { 60 printer->Print(variables_, 64 PrintExtraFieldInfo(variables_, printer); 65 WriteFieldDocComment(printer, descriptor_); 66 printer->Print(variables_, 70 WriteFieldDocComment(printer, descriptor_); 72 printer->Print(variables_, 77 WriteFieldDocComment(printer, descriptor_) [all...] |
java_message.cc | 51 #include <google/protobuf/io/printer.h> 90 void ImmutableMessageGenerator::GenerateStaticVariables(io::Printer* printer) { 116 printer->Print(vars, 121 GenerateFieldAccessorTable(printer); 128 .GenerateStaticVariables(printer); 133 io::Printer* printer) { 146 printer->Print(vars, 150 printer->Print(vars [all...] |
/system/core/libutils/ |
CallStack.cpp | 20 #include <utils/Printer.h> 53 LogPrinter printer(logtag, priority, prefix, /*ignoreBlankLines*/false); 54 print(printer); 58 FdPrinter printer(fd, indent, prefix); 59 print(printer); 65 String8Printer printer(&str, prefix); 66 print(printer); 71 void CallStack::print(Printer& printer) const { 73 printer.printLine(mFrameLines[i]) [all...] |
ProcessCallStack.cpp | 27 #include <utils/Printer.h> 46 static void dumpProcessHeader(Printer& printer, pid_t pid, const char* timeStr) { 67 printer.printLine(); 68 printer.printLine(); 69 printer.printFormatLine("----- pid %d at %s -----", pid, timeStr); 70 printer.printFormatLine("Cmd line: %s", procName); 73 static void dumpProcessFooter(Printer& printer, pid_t pid) { 74 printer.printLine() [all...] |
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_primitive_field.cc | 42 #include <google/protobuf/io/printer.h> 270 void PrimitiveFieldGenerator::GenerateInitSavedDefaultCode(io::Printer* printer) const { 272 printer->Print(variables_, 278 GenerateMembers(io::Printer* printer, bool lazy_init) const { 282 printer->Print(variables_, 285 printer->Print(variables_, 291 printer->Print(variables_, 295 printer->Print(variables_ [all...] |
/external/llvm/tools/llvm-pdbdump/ |
ClassDefinitionDumper.cpp | 33 : PDBSymDumper(true), Printer(P) {} 37 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " "; 38 WithColor(Printer, PDB_ColorItem::Type).get() << Class.getName(); 42 Printer.Indent(); 43 Printer.NewLine(); 44 Printer << ":"; 47 Printer << " "; 48 WithColor(Printer, PDB_ColorItem::Keyword).get() << Base->getAccess(); 50 WithColor(Printer, PDB_ColorItem::Keyword).get() << " virtual"; 51 WithColor(Printer, PDB_ColorItem::Type).get() << " " << Base->getName() [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...] |
/prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/command/ |
pretty_printers.py | 1 # Pretty-printer commands. 25 """Internal utility to parse a pretty-printer command argv. 31 printer-name;subprinter-name. 76 def printer_enabled_p(printer): 77 """Internal utility to see if printer (or subprinter) is enabled.""" 78 if hasattr(printer, "enabled"): 79 return printer.enabled 87 Usage: info pretty-printer [object-regexp [name-regexp]] 93 NAME-REGEXP matches the name of the pretty-printer. 95 printer-name;subprinter-name [all...] |