Home
last modified time | relevance | path

Searched refs:proto_name (Results 1 - 12 of 12) sorted by relevance

/third_party/protobuf/python/google/protobuf/
H A Ddescriptor_database.py63 proto_name = file_desc_proto.name
64 if proto_name not in self._file_desc_protos_by_file:
65 self._file_desc_protos_by_file[proto_name] = file_desc_proto
66 elif self._file_desc_protos_by_file[proto_name] != file_desc_proto:
68 '%s already added, but with different descriptor.' % proto_name)
H A Ddescriptor.py1068 proto_name = binascii.hexlify(os.urandom(16)).decode('ascii')
1072 proto_name + '.proto')
1075 file_descriptor_proto.name = proto_name + '.proto'
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DFieldDescriptor.php256 $proto_name = $proto->getName(); variable
257 $json_name = implode('', array_map('ucwords', explode('_', $proto_name)));
258 if ($proto_name[0] !== "_" && !ctype_upper($proto_name[0])) {
/third_party/curl/src/
H A Dtool_libinfo.c58 const char *proto_name; member
154 for(p = possibly_built_in; p->proto_name; p++) in get_libcurl_info()
155 if(curl_strequal(p->proto_name, *builtin)) { in get_libcurl_info()
/third_party/libsnd/
H A Dmake_lite.py21 def find_function_prototype (source, proto_name):
22 proto_re = "(^[a-zA-Z_ \t]+\s+%s[^a-zA-Z0-9_]\s*\([^\)]+\)\s+;\n)" % (proto_name)
79 def remove_prototype (source, proto_name):
80 proto_text = find_function_prototype (source, proto_name)
82 print "remove_prototype : prototype '%s' not found. Exiting." % proto_name
/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface_unittest.cc175 const std::string& proto_name,
179 const std::string& proto_name,
184 const std::string& proto_name,
189 const std::string& proto_name,
441 const std::string& proto_name, const std::string& message_name) { in ExpectGenerated()
442 MockCodeGenerator::ExpectGenerated(generator_name, parameter, "", proto_name, in ExpectGenerated()
443 message_name, proto_name, temp_directory_); in ExpectGenerated()
448 const std::string& proto_name, const std::string& message_name, in ExpectGenerated()
450 MockCodeGenerator::ExpectGenerated(generator_name, parameter, "", proto_name, in ExpectGenerated()
451 message_name, proto_name, in ExpectGenerated()
439 ExpectGenerated( const std::string& generator_name, const std::string& parameter, const std::string& proto_name, const std::string& message_name) ExpectGenerated() argument
446 ExpectGenerated( const std::string& generator_name, const std::string& parameter, const std::string& proto_name, const std::string& message_name, const std::string& output_directory) ExpectGenerated() argument
455 ExpectGeneratedWithMultipleInputs( const std::string& generator_name, const std::string& all_proto_names, const std::string& proto_name, const std::string& message_name) ExpectGeneratedWithMultipleInputs() argument
463 ExpectGeneratedWithInsertions( const std::string& generator_name, const std::string& parameter, const std::string& insertions, const std::string& proto_name, const std::string& message_name) ExpectGeneratedWithInsertions() argument
[all...]
/third_party/ffmpeg/libavformat/
H A Dhls.c644 const char *proto_name = NULL; in open_url() local
650 proto_name = avio_find_protocol_name(url + 7); in open_url()
653 proto_name = avio_find_protocol_name(url + 5); in open_url()
656 if (!proto_name) in open_url()
657 proto_name = avio_find_protocol_name(url); in open_url()
659 if (!proto_name) in open_url()
663 if (av_strstart(proto_name, "file", NULL)) { in open_url()
671 } else if (av_strstart(proto_name, "http", NULL)) { in open_url()
673 } else if (av_strstart(proto_name, "data", NULL)) { in open_url()
678 if (!strncmp(proto_name, ur in open_url()
[all...]
H A Ddashdec.c164 const char *proto_name = avio_find_protocol_name(url); in ishttp() local
165 return proto_name && av_strstart(proto_name, "http", NULL); in ishttp()
406 const char *proto_name = NULL; in open_url() local
412 proto_name = avio_find_protocol_name(url + 7); in open_url()
415 if (!proto_name) in open_url()
416 proto_name = avio_find_protocol_name(url); in open_url()
418 if (!proto_name) in open_url()
421 proto_name_len = strlen(proto_name); in open_url()
423 if (av_strstart(proto_name, "fil in open_url()
[all...]
/third_party/lwip/src/include/netif/ppp/
H A Dfsm.h127 const char *proto_name; /* String name for protocol (for messages) */ member
/third_party/lwip/src/netif/ppp/
H A Dfsm.c71 #define PROTO_NAME(f) ((f)->callbacks->proto_name)
/third_party/ffmpeg/fftools/
H A Dffmpeg_opt.c1078 const char *proto_name = avio_find_protocol_name(filename); in assert_file_overwrite() local
1086 if (proto_name && !strcmp(proto_name, "file") && avio_check(filename, 0) == 0) { in assert_file_overwrite()
1105 if (proto_name && !strcmp(proto_name, "file")) { in assert_file_overwrite()
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc3307 // Full proto name is "scope.proto_name" if scope is non-empty and
3308 // "proto_name" otherwise.
3310 const std::string& proto_name);
4591 const std::string& scope, const std::string& proto_name) { in AllocateNameString()
4594 full_name = tables_->AllocateString(proto_name); in AllocateNameString()
4597 *full_name = StrCat(scope, ".", proto_name); in AllocateNameString()
4590 AllocateNameString( const std::string& scope, const std::string& proto_name) AllocateNameString() argument

Completed in 27 milliseconds