Home
last modified time | relevance | path

Searched defs:name (Results 1 – 25 of 173) sorted by relevance

1234567

/thrift-3.4.0/compiler/cpp/src/thrift/parse/
Dt_scope.h48 void add_type(std::string name, t_type* type) { types_[name] = type; } in add_type()
50 t_type* get_type(std::string name) { return types_[name]; } in get_type()
52 const t_type* get_type(std::string name) const { in get_type()
61 void add_service(std::string name, t_service* service) { services_[name] = service; } in add_service()
63 t_service* get_service(std::string name) { return services_[name]; } in get_service()
65 const t_service* get_service(std::string name) const { in get_service()
74 void add_constant(std::string name, t_const* constant) { in add_constant()
82 t_const* get_constant(std::string name) { return constants_[name]; } in get_constant()
84 const t_const* get_constant(std::string name) const { in get_constant()
Dt_type.h43 virtual void set_name(const std::string& name) { name_ = name; } in set_name()
93 t_type(t_program* program, std::string name) : program_(program), name_(name) { ; } in t_type()
95 t_type(std::string name) : program_(nullptr), name_(name) { ; } in t_type()
/thrift-3.4.0/lib/php/src/ext/thrift_protocol/
Dphp_thrift_protocol.h40 #define ZEND_ARG_INFO_WITH_DEFAULT_VALUE(pass_by_ref, name, default_value) \ argument
46 #define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(name, return_reference, required_num_args, class_na… argument
52 # define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(name, return_reference, required_num_args, class_na… argument
57 # define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(name, return_reference, num_args, type) \ argument
62 # define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(name, return_reference, required_num_args, cla… argument
67 # define ZEND_ARG_TYPE_MASK(pass_by_ref, name, type_mask, default_value) \ argument
72 # define ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(pass_by_ref, name, type_hint, allow_null, default_va… argument
/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/partial/
DThriftField.java35 public final String name; field in ThriftField
51 ThriftField(String name, List<ThriftField> fields) { in ThriftField()
60 ThriftField(String name) { in ThriftField()
68 ThriftField(String name, List<ThriftField> fields, boolean allowFieldAdds) { in ThriftField()
176 private static ThriftField findField(String name, List<ThriftField> fields) { in findField()
/thrift-3.4.0/compiler/cpp/tests/netcore/
Dt_netcore_generator_initialization_tests.cc25 string name = "netstd"; variable
41 string name = "netstd"; variable
63 string name = "netstd"; variable
Dt_netcore_generator_helpers_tests.cc27 string name = "netstd"; variable
54 string name = "netstd"; variable
83 string name = "netstd"; variable
Dt_netcore_generator_functional_tests.cc26 string name = "netstd"; variable
59 string name = "netstd"; variable
92 string name = "netstd"; variable
128 string name = "netstd"; variable
164 string name = "netstd"; variable
200 string name = "netstd"; variable
236 string name = "netstd"; variable
272 string name = "netstd"; variable
308 string name = "netstd"; variable
/thrift-3.4.0/lib/java/src/test/java/org/apache/thrift/
DTestOptionType.java33 String name = "Chuck Norris"; in testSome() local
45 String name = null; in testNone() local
/thrift-3.4.0/
Ddub.json2 "name": "apache-thrift", string
17 "name": "use_openssl_1_0", string
26 "name": "use_openssl_1_1", string
/thrift-3.4.0/test/features/
Dtests.json4 "name": "theader_unframed_binary", string
18 "name": "theader_framed_binary", string
32 "name": "theader_unframed_compact", string
46 "name": "theader_framed_compact", string
59 "name": "limit_string_length", string
76 "name": "limit_container_length", string
93 "name": "nosslv3", string
104 "name": "tls", string
/thrift-3.4.0/lib/nodejs/test/episodic-code-generation-test/
Depisodic_compilation.package.json2 "name": "types-package" string
/thrift-3.4.0/lib/cpp/src/thrift/protocol/
DTVirtualProtocol.h44 uint32_t readMessageBegin(std::string& name, TMessageType& messageType, int32_t& seqid) { in readMessageBegin()
57 uint32_t readStructBegin(std::string& name) { in readStructBegin()
68 uint32_t readFieldBegin(std::string& name, TType& fieldType, int16_t& fieldId) { in readFieldBegin()
172 uint32_t writeMessageBegin(const std::string& name, in writeMessageBegin()
187 uint32_t writeStructBegin(const char* name) { in writeStructBegin()
198 uint32_t writeFieldBegin(const char* name, const TType fieldType, const int16_t fieldId) { in writeFieldBegin()
318 uint32_t writeMessageBegin_virt(const std::string& name, in writeMessageBegin_virt()
328 uint32_t writeStructBegin_virt(const char* name) override { in writeStructBegin_virt()
334 uint32_t writeFieldBegin_virt(const char* name, in writeFieldBegin_virt()
400 uint32_t readMessageBegin_virt(std::string& name, in readMessageBegin_virt()
[all …]
DTHeaderProtocol.cpp57 uint32_t THeaderProtocol::writeMessageBegin(const std::string& name, in writeMessageBegin()
69 uint32_t THeaderProtocol::writeStructBegin(const char* name) { in writeStructBegin()
77 uint32_t THeaderProtocol::writeFieldBegin(const char* name, in writeFieldBegin()
153 uint32_t THeaderProtocol::readMessageBegin(std::string& name, in readMessageBegin()
178 uint32_t THeaderProtocol::readStructBegin(std::string& name) { in readStructBegin()
186 uint32_t THeaderProtocol::readFieldBegin(std::string& name, TType& fieldType, int16_t& fieldId) { in readFieldBegin()
DTProtocolDecorator.h48 uint32_t writeMessageBegin_virt(const std::string& name, in writeMessageBegin_virt()
54 uint32_t writeStructBegin_virt(const char* name) override { in writeStructBegin_virt()
59 uint32_t writeFieldBegin_virt(const char* name, in writeFieldBegin_virt()
96 uint32_t readMessageBegin_virt(std::string& name, in readMessageBegin_virt()
103 uint32_t readStructBegin_virt(std::string& name) override { in readStructBegin_virt()
108 uint32_t readFieldBegin_virt(std::string& name, TType& fieldType, int16_t& fieldId) override { in readFieldBegin_virt()
/thrift-3.4.0/compiler/cpp/src/thrift/generate/
Dt_markdown_generator.cc193 string name = get_service_name(*sv_iter); in generate_program_toc_row() local
226 string name = (*en_iter)->get_name(); in generate_program_toc_row() local
244 string name = (*td_iter)->get_symbolic(); in generate_program_toc_row() local
262 string name = (*o_iter)->get_name(); in generate_program_toc_row() local
293 string name = (*con_iter)->get_name(); in generate_program_toc_row() local
759 string name = escape_html(tvalue->get_identifier()); in print_const_value() local
938 string name = ttypedef->get_name(); in generate_typedef() local
954 string name = tenum->get_name(); in generate_enum() local
978 string name = tconst->get_name(); in generate_const() local
996 string name = tstruct->get_name(); in generate_struct() local
Dt_gv_generator.cc138 string name = ttypedef->get_name(); in generate_typedef() local
150 string name = tenum->get_name(); in generate_enum() local
166 string name = tconst->get_name(); in generate_const() local
181 string name = tstruct->get_name(); in generate_struct() local
Dt_st_generator.cc203 string name = capitalize(class_name); in prefix() local
254 void t_st_generator::st_class_def(std::ostream& out, string name) { in st_class_def()
262 void t_st_generator::st_method(std::ostream& out, string cls, string name) { in st_method()
266 void t_st_generator::st_class_method(std::ostream& out, string cls, string name) { in st_class_method()
270 void t_st_generator::st_class_method(std::ostream& out, string cls, string name, string category) { in st_class_method()
274 void t_st_generator::st_method(std::ostream& out, string cls, string name, string category) { in st_method()
297 string name, in st_setter()
304 void t_st_generator::st_getter(std::ostream& out, string cls, string name) { in st_getter()
312 string name, in st_accessors()
358 string name = tconst->get_name(); in generate_const() local
[all …]
Dt_html_generator.cc167 string name = get_service_name(*sv_iter); in generate_program_toc_row() local
192 string name = (*en_iter)->get_name(); in generate_program_toc_row() local
203 string name = (*td_iter)->get_symbolic(); in generate_program_toc_row() local
215 string name = (*o_iter)->get_name(); in generate_program_toc_row() local
232 string name = (*con_iter)->get_name(); in generate_program_toc_row() local
726 string name = escape_html(tvalue->get_identifier()); in print_const_value() local
903 string name = ttypedef->get_name(); in generate_typedef() local
919 string name = tenum->get_name(); in generate_enum() local
942 string name = tconst->get_name(); in generate_const() local
961 string name = tstruct->get_name(); in generate_struct() local
/thrift-3.4.0/lib/nodejs/lib/thrift/
Dmultiplexed_protocol.js32 MultiplexProtocol.prototype.writeMessageBegin = function(name, type, seqid) { argument
36 serviceName + ":" + name,
40 MultiplexProtocol.super_.prototype.writeMessageBegin.call(this, name, type, seqid); argument
/thrift-3.4.0/lib/cpp/src/thrift/processor/
DTMultiplexedProcessor.h54 std::string name; variable
118 const std::string& name, in protocol_error()
153 std::string name; in process() local
/thrift-3.4.0/lib/cpp/test/
DAllProtocolTests.tcc69 std::string name; in testField() local
100 const char* name; in testMessage() member
117 std::string name; in testMessage() local
/thrift-3.4.0/lib/rb/lib/thrift/
Dprocessor.rb61 def write_result(result, oprot, name, seqid) argument
68 def write_error(err, oprot, name, seqid) argument
Dclient.rb28 def send_message(name, args_class, args = {}) argument
33 def send_oneway_message(name, args_class, args = {}) argument
/thrift-3.4.0/lib/haxe/src/org/apache/thrift/protocol/
DTStruct.hx24 public var name : String; variable
/thrift-3.4.0/lib/php/lib/Protocol/
DTProtocolDecorator.php64 public function writeMessageBegin($name, $type, $seqid)
85 public function writeStructBegin($name)
188 public function readMessageBegin(&$name, &$type, &$seqid)
201 public function readStructBegin(&$name)
211 public function readFieldBegin(&$name, &$fieldType, &$fieldId)

1234567