Home
last modified time | relevance | path

Searched refs:input_type (Results 1 – 21 of 21) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_service.cc148 sub_vars["input_type"] = ClassName(method->input_type(), true); in GenerateMethodSignatures()
219 sub_vars["input_type"] = ClassName(method->input_type(), true); in GenerateNotImplementedMethods()
249 sub_vars["input_type"] = ClassName(method->input_type(), true); in GenerateCallMethod()
290 (which == REQUEST) ? method->input_type() : method->output_type(); in GenerateGetPrototype()
317 sub_vars["input_type"] = ClassName(method->input_type(), true); in GenerateStubMethods()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_service.cc188 vars["input"] = ClassName(method->input_type()); in GenerateCallMethod()
233 vars["input"] = ClassName(method->input_type()); in GenerateCallBlockingMethod()
278 (which == REQUEST) ? method->input_type() : method->output_type()); in GenerateGetPrototype()
416 vars["input"] = ClassName(method->input_type()); in GenerateMethodSignature()
431 vars["input"] = ClassName(method->input_type()); in GenerateBlockingMethodSignature()
/external/chromium/chrome/browser/autocomplete/
Dautocomplete.h732 AutocompleteInput::Type input_type, in AutocompleteLog()
737 input_type(input_type), in AutocompleteLog()
745 AutocompleteInput::Type input_type; member
Dhistory_quick_provider.h58 AutocompleteInput::Type input_type,
Dhistory_url_provider.h190 static int CalculateRelevance(AutocompleteInput::Type input_type,
Dhistory_quick_provider.cc200 AutocompleteInput::Type input_type, in CalculateRelevance() argument
Dhistory_url_provider.cc458 int HistoryURLProvider::CalculateRelevance(AutocompleteInput::Type input_type, in CalculateRelevance() argument
/external/valgrind/tsan/
Dts_offline.cc361 if (G_flags->input_type == "bin") { in main()
363 } else if (G_flags->input_type == "decode") { in main()
371 } else if (G_flags->input_type == "str") { in main()
374 Printf("Error: Unknown input_type value %s\n", G_flags->input_type.c_str()); in main()
Dthread_sanitizer.h49 string input_type; // for ts_offline. member
Dthread_sanitizer.cc8058 G_flags->input_type = input_type_tmp; in ThreadSanitizerParseFlags()
8060 G_flags->input_type = "str"; in ThreadSanitizerParseFlags()
/external/chromium/chrome/browser/metrics/
Dmetrics_log.cc474 const std::string input_type( in RecordOmniboxOpenedURL() local
475 AutocompleteInput::TypeToString(log.input_type)); in RecordOmniboxOpenedURL()
476 if (!input_type.empty()) in RecordOmniboxOpenedURL()
477 WriteAttribute("inputtype", input_type); in RecordOmniboxOpenedURL()
/external/protobuf/python/google/protobuf/
Ddescriptor.py542 input_type, output_type, options=None): argument
553 self.input_type = input_type
Dservice_reflection.py187 return method_descriptor.input_type._concrete_class
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py93 input_type=None,
/external/protobuf/src/google/protobuf/
Ddescriptor.cc1471 if (!input_type()->is_unqualified_placeholder_) { in CopyTo()
1474 proto->mutable_input_type()->append(input_type()->full_name()); in CopyTo()
1797 input_type()->full_name(), in DebugString()
3589 Symbol input_type = LookupSymbol(proto.input_type(), method->full_name()); in CrossLinkMethod() local
3590 if (input_type.IsNull()) { in CrossLinkMethod()
3593 proto.input_type()); in CrossLinkMethod()
3594 } else if (input_type.type != Symbol::MESSAGE) { in CrossLinkMethod()
3597 "\"" + proto.input_type() + "\" is not a message type."); in CrossLinkMethod()
3599 method->input_type_ = input_type.descriptor; in CrossLinkMethod()
Ddescriptor.h754 const Descriptor* input_type() const;
1262 PROTOBUF_DEFINE_ACCESSOR(MethodDescriptor, input_type, const Descriptor*)
Ddescriptor.pb.cc3866 this->input_type().data(), this->input_type().length(), in MergePartialFromCodedStream()
3936 this->input_type().data(), this->input_type().length(), in SerializeWithCachedSizes()
3939 2, this->input_type(), output); in SerializeWithCachedSizes()
3978 this->input_type().data(), this->input_type().length(), in SerializeWithCachedSizesToArray()
3982 2, this->input_type(), target); in SerializeWithCachedSizesToArray()
4024 this->input_type()); in ByteSize()
4072 set_input_type(from.input_type()); in MergeFrom()
Ddescriptor_unittest.cc150 const string& input_type, in AddMethod() argument
154 result->set_input_type(input_type); in AddMethod()
1130 EXPECT_EQ(foo_request_, foo_->input_type()); in TEST_F()
1131 EXPECT_EQ(bar_request_, bar_->input_type()); in TEST_F()
Ddescriptor.proto190 optional string input_type = 2; field
Ddescriptor.pb.h1324 inline const ::std::string& input_type() const;
3517 inline const ::std::string& MethodDescriptorProto::input_type() const { in input_type() function
/external/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.cc472 m["input_type"] = ModuleLevelDescriptorName(*(method->input_type())); in PrintServiceDescriptor()