Searched refs:output_type (Results 1 – 13 of 13) sorted by relevance
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_service.cc | 189 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/ |
D | cpp_service.cc | 149 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/ |
D | fmodaudio.c | 548 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/ |
D | service_reflection.py | 203 return method_descriptor.output_type._concrete_class 284 method_descriptor.output_type._concrete_class, callback)
|
D | descriptor.py | 542 input_type, output_type, options=None): argument 554 self.output_type = output_type
|
/external/protobuf/python/google/protobuf/internal/ |
D | descriptor_test.py | 94 output_type=None)
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 1476 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()
|
D | descriptor.h | 756 const Descriptor* output_type() const; 1263 PROTOBUF_DEFINE_ACCESSOR(MethodDescriptor, output_type, const Descriptor*)
|
D | descriptor.pb.cc | 3883 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()
|
D | descriptor_unittest.cc | 151 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()
|
D | descriptor.proto | 191 optional string output_type = 3; field
|
D | descriptor.pb.h | 1334 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/ |
D | python_generator.cc | 473 m["output_type"] = ModuleLevelDescriptorName(*(method->output_type())); in PrintServiceDescriptor()
|