/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.cc | 328 printer_ = &printer; 330 PrintTopBoilerplate(printer_, file_, GeneratingDescriptorProto()); 364 printer_->Print("$statement$ as $alias$\n", "statement", 368 printer_->Print("\n"); 373 printer_->Print("from $module$ import *\n", "module", module_name); 375 printer_->Print("\n"); 390 printer_->Print(m, file_descriptor_template); 391 printer_->Indent(); 392 printer_->Print( 397 printer_->Print(",\ndependencies=[") [all...] |
python_generator.h | 158 // Guards file_, printer_ and file_descriptor_serialized_. 162 mutable io::Printer* printer_; // Set in Generate(). Under mutex_. member in class:google::protobuf::compiler::python::Generator
|
/external/grpc-grpc/src/compiler/ |
protobuf_plugin.h | 136 : output_stream_(str), printer_(&output_stream_, '$') {} 140 printer_.Print(vars, string_template); 143 void Print(const char* string) { printer_.Print(string); } 144 void PrintRaw(const char* string) { printer_.PrintRaw(string); } 145 void Indent() { printer_.Indent(); } 146 void Outdent() { printer_.Outdent(); } 150 grpc::protobuf::io::Printer printer_; member in class:ProtoBufPrinter
|
python_generator.cc | 72 explicit IndentScope(grpc_generator::Printer* printer) : printer_(printer) { 73 printer_->Indent(); 76 ~IndentScope() { printer_->Outdent(); } 79 grpc_generator::Printer* printer_; member in class:grpc_python_generator::__anon22952::IndentScope
|
/external/protobuf/src/google/protobuf/util/ |
message_differencer.cc | [all...] |
message_differencer.h | 635 io::Printer* printer_; member in class:google::protobuf::util::MessageDifferencer::StreamReporter [all...] |