Home
last modified time | relevance | path

Searched refs:proto_file (Results 1 – 14 of 14) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/examples/
DCMakeLists.txt37 foreach(proto_file ${${example}_PROTOS})
38 get_filename_component(proto_file_abs ${proto_file} ABSOLUTE)
39 get_filename_component(basename ${proto_file} NAME_WE)
47 COMMENT "Generating ${generated_files} from ${proto_file}"
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/cpp/
Dcpp_bootstrap_unittest.cc126 const FileDescriptor* proto_file = in TEST() local
131 ASSERT_TRUE(proto_file != NULL); in TEST()
138 ASSERT_TRUE(generator.Generate(proto_file, parameter, in TEST()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/objectivec/
Dobjectivec_file.cc226 StringPiece proto_file(proto_file_list, start, offset - start); in ConsumeLine() local
227 StringPieceTrimWhitespace(&proto_file); in ConsumeLine()
228 if (proto_file.size() != 0) { in ConsumeLine()
230 map_->find(proto_file.ToString()); in ConsumeLine()
233 << proto_file.ToString() << "' with '" << framework_name.ToString() in ConsumeLine()
238 if (proto_file.find(' ') != StringPiece::npos) { in ConsumeLine()
240 << proto_file.ToString() << "'" << endl; in ConsumeLine()
244 (*map_)[proto_file.ToString()] = framework_name.ToString(); in ConsumeLine()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/cmake/
Dtests.cmake85 foreach(proto_file ${lite_test_protos})
86 compile_proto_file(${proto_file})
87 string(REPLACE .proto .pb.cc pb_file ${proto_file})
90 endforeach(proto_file)
93 foreach(proto_file ${tests_protos})
94 compile_proto_file(${proto_file})
95 string(REPLACE .proto .pb.cc pb_file ${proto_file})
98 endforeach(proto_file)
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/csharp/
Dcsharp_helpers.cc109 std::string StripDotProto(const std::string& proto_file) { in StripDotProto() argument
110 int lastindex = proto_file.find_last_of("."); in StripDotProto()
111 return proto_file.substr(0, lastindex); in StripDotProto()
124 std::string proto_file = descriptor->name(); in GetFileNameBase() local
125 int lastslash = proto_file.find_last_of("/"); in GetFileNameBase()
126 std::string base = proto_file.substr(lastslash + 1); in GetFileNameBase()
Dcsharp_helpers.h72 std::string StripDotProto(const std::string& proto_file);
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/ruby/
Druby_generator.cc51 std::string GetRequireName(const std::string& proto_file);
73 std::string GetRequireName(const std::string& proto_file) { in GetRequireName() argument
74 int lastindex = proto_file.find_last_of("."); in GetRequireName()
75 return proto_file.substr(0, lastindex) + "_pb"; in GetRequireName()
78 std::string GetOutputFilename(const std::string& proto_file) { in GetOutputFilename() argument
79 return GetRequireName(proto_file) + ".rb"; in GetOutputFilename()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/
DRakefile32 well_known_protos.each do |proto_file|
33 input_file = "../src/" + proto_file
34 output_file = "lib/" + proto_file.sub(/\.proto$/, "_pb.rb")
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dplugin.cc101 const FileDescriptor* file = pool.BuildFile(request.proto_file(i)); in GenerateCode()
Dplugin.pb.h148 const ::google::protobuf::FileDescriptorProto& proto_file(int index) const;
154 proto_file() const;
539 inline const ::google::protobuf::FileDescriptorProto& CodeGeneratorRequest::proto_file(int index) c… in proto_file() function
557 CodeGeneratorRequest::proto_file() const { in proto_file() function
Dplugin.pb.cc359 15, this->proto_file(i), output); in SerializeWithCachedSizes()
397 15, this->proto_file(i), false, target); in InternalSerializeWithCachedSizesToArray()
431 this->proto_file(i)); in ByteSize()
496 if (!::google::protobuf::internal::AllAreInitialized(this->proto_file())) return false; in IsInitialized()
640 const ::google::protobuf::FileDescriptorProto& CodeGeneratorRequest::proto_file(int index) const { in proto_file() function in google::protobuf::compiler::CodeGeneratorRequest
658 CodeGeneratorRequest::proto_file() const { in proto_file() function in google::protobuf::compiler::CodeGeneratorRequest
Dplugin.proto60 // descriptor will be included in proto_file, below.
77 repeated FileDescriptorProto proto_file = 15; field
/frameworks/base/tools/streaming_proto/cpp/
Dmain.cpp183 const FileDescriptorProto& file_descriptor = request.proto_file(i); in main()
/frameworks/base/tools/streaming_proto/java/
Dmain.cpp285 const FileDescriptorProto& file_descriptor = request.proto_file(i); in main()