Home
last modified time | relevance | path

Searched refs:output_type (Results 1 – 13 of 13) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/java/
Djava_service.cc189 vars["output"] = ClassName(method->output_type()); in GenerateCallMethod()
234 vars["output"] = ClassName(method->output_type()); in GenerateCallBlockingMethod()
278 (which == REQUEST) ? method->input_type() : method->output_type()); in GenerateGetPrototype()
329 vars["output"] = ClassName(method->output_type()); in GenerateStub()
393 vars["output"] = ClassName(method->output_type()); in GenerateBlockingStub()
417 vars["output"] = ClassName(method->output_type()); in GenerateMethodSignature()
432 vars["output"] = ClassName(method->output_type()); in GenerateBlockingMethodSignature()
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_service.cc149 sub_vars["output_type"] = ClassName(method->output_type(), true); in GenerateMethodSignatures()
220 sub_vars["output_type"] = ClassName(method->output_type(), true); in GenerateNotImplementedMethods()
250 sub_vars["output_type"] = ClassName(method->output_type(), true); in GenerateCallMethod()
290 (which == REQUEST) ? method->input_type() : method->output_type(); in GenerateGetPrototype()
318 sub_vars["output_type"] = ClassName(method->output_type(), true); in GenerateStubMethods()
/external/qemu/audio/
Dfmodaudio.c548 int output_type = -1; in fmod_audio_init() local
569 output_type = drvtab[i].type; in fmod_audio_init()
583 if (output_type != -1) { in fmod_audio_init()
584 status = FSOUND_SetOutput (output_type); in fmod_audio_init()
586 fmod_logerr ("FSOUND_SetOutput(%d) failed\n", output_type); in fmod_audio_init()
/external/protobuf/python/google/protobuf/
Dservice_reflection.py203 return method_descriptor.output_type._concrete_class
284 method_descriptor.output_type._concrete_class, callback)
Ddescriptor.py542 input_type, output_type, options=None): argument
554 self.output_type = output_type
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py94 output_type=None)
/external/protobuf/src/google/protobuf/
Ddescriptor.cc1476 if (!output_type()->is_unqualified_placeholder_) { in CopyTo()
1479 proto->mutable_output_type()->append(output_type()->full_name()); in CopyTo()
1798 output_type()->full_name()); in DebugString()
3602 Symbol output_type = LookupSymbol(proto.output_type(), method->full_name()); in CrossLinkMethod() local
3603 if (output_type.IsNull()) { in CrossLinkMethod()
3606 proto.output_type()); in CrossLinkMethod()
3607 } else if (output_type.type != Symbol::MESSAGE) { in CrossLinkMethod()
3610 "\"" + proto.output_type() + "\" is not a message type."); in CrossLinkMethod()
3612 method->output_type_ = output_type.descriptor; in CrossLinkMethod()
Ddescriptor.h756 const Descriptor* output_type() const;
1263 PROTOBUF_DEFINE_ACCESSOR(MethodDescriptor, output_type, const Descriptor*)
Ddescriptor.pb.cc3883 this->output_type().data(), this->output_type().length(), in MergePartialFromCodedStream()
3945 this->output_type().data(), this->output_type().length(), in SerializeWithCachedSizes()
3948 3, this->output_type(), output); in SerializeWithCachedSizes()
3988 this->output_type().data(), this->output_type().length(), in SerializeWithCachedSizesToArray()
3992 3, this->output_type(), target); in SerializeWithCachedSizesToArray()
4031 this->output_type()); in ByteSize()
4075 set_output_type(from.output_type()); in MergeFrom()
Ddescriptor_unittest.cc151 const string& output_type) { in AddMethod() argument
155 result->set_output_type(output_type); in AddMethod()
1135 EXPECT_EQ(foo_response_, foo_->output_type()); in TEST_F()
1136 EXPECT_EQ(bar_response_, bar_->output_type()); in TEST_F()
Ddescriptor.proto191 optional string output_type = 3; field
Ddescriptor.pb.h1334 inline const ::std::string& output_type() const;
3559 inline const ::std::string& MethodDescriptorProto::output_type() const { in output_type() function
/external/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.cc473 m["output_type"] = ModuleLevelDescriptorName(*(method->output_type())); in PrintServiceDescriptor()