Home
last modified time | relevance | path

Searched refs:type_name (Results 1 – 25 of 48) sorted by relevance

12

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Derror_listener.h64 StringPiece type_name, StringPiece value) = 0;
88 StringPiece type_name, StringPiece value) {} in InvalidValue() argument
Dmock_error_listener.h53 StringPiece type_name, StringPiece value));
Dutility.cc306 bool IsWellKnownType(const string& type_name) { in IsWellKnownType() argument
308 return ContainsKey(*well_known_types_, type_name); in IsWellKnownType()
Dutility.h156 LIBPROTOBUF_EXPORT bool IsWellKnownType(const string& type_name);
Dprotostream_objectsource.h265 util::Status IncrementRecursionDepth(StringPiece type_name,
/frameworks/opt/gamesdk/samples/tuningfork/prototest/src/
Dplay.cc56 std::cerr << e->type_name() << "\n"; in main()
62 std::cerr << e->type_name() << " *ERROR* not supported\n"; in main()
/frameworks/base/tools/streaming_proto/
Dstream_proto_utils.cpp66 return field.type_name(); in get_proto_type()
72 return field.type_name(); in get_proto_type()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/csharp/
Dcsharp_field_base.cc76 (*variables)["type_name"] = type_name(); in SetCommonFieldVariables()
152 std::string FieldGeneratorBase::type_name() { in type_name() function in google::protobuf::compiler::csharp::FieldGeneratorBase
153 return type_name(descriptor_); in type_name()
156 std::string FieldGeneratorBase::type_name(const FieldDescriptor* descriptor) { in type_name() function in google::protobuf::compiler::csharp::FieldGeneratorBase
165 string wrapped_field_type_name = type_name(wrapped_field); in type_name()
Dcsharp_map_field.cc64 variables_["key_type_name"] = type_name(key_descriptor); in GenerateMembers()
65 variables_["value_type_name"] = type_name(value_descriptor); in GenerateMembers()
Dcsharp_field_base.h82 std::string type_name();
83 std::string type_name(const FieldDescriptor* descriptor);
Dcsharp_wrapper_field.cc59 variables_["nonnullable_type_name"] = type_name(wrapped_field); in WrapperFieldGenerator()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/
Dtype_resolver_util.cc96 string url_prefix, type_name; in ResolveEnumType() local
97 if (!SplitTypeUrl(type_url, &url_prefix, &type_name) || in ResolveEnumType()
107 const EnumDescriptor* descriptor = pool_->FindEnumTypeByName(type_name); in ResolveEnumType()
109 return Status(NOT_FOUND, "Invalid type URL, unknown type: " + type_name); in ResolveEnumType()
Djson_util.cc120 StringPiece type_name, StringPiece value) { in InvalidValue() argument
124 " for type " + type_name.ToString()); in InvalidValue()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/
Dconformance_test.cc509 const string type_name = in TestPrematureEOFForType() local
514 "PrematureEofBeforeKnownNonRepeatedValue" + type_name); in TestPrematureEOFForType()
518 "PrematureEofBeforeKnownRepeatedValue" + type_name); in TestPrematureEOFForType()
522 "PrematureEofBeforeUnknownValue" + type_name); in TestPrematureEOFForType()
526 "PrematureEofInsideKnownNonRepeatedValue" + type_name); in TestPrematureEOFForType()
530 "PrematureEofInsideKnownRepeatedValue" + type_name); in TestPrematureEOFForType()
534 "PrematureEofInsideUnknownValue" + type_name); in TestPrematureEOFForType()
539 "PrematureEofInDelimitedDataForKnownNonRepeatedValue" + type_name); in TestPrematureEOFForType()
543 "PrematureEofInDelimitedDataForKnownRepeatedValue" + type_name); in TestPrematureEOFForType()
548 "PrematureEofInDelimitedDataForUnknownValue" + type_name); in TestPrematureEOFForType()
[all …]
/frameworks/av/services/audiopolicy/engineconfigurable/tools/
DdomainGeneratorPolicy.py120 type_name = criterion.get('type')
122 logging.info("Importing type_name {}".format(type_name))
126 if criterion_type_name == type_name:
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/
Ddescriptor_pool.py608 if field_proto.type_name:
609 desc = self._GetTypeFromScope(package, field_proto.type_name, scope)
777 def _GetTypeFromScope(self, package, type_name, scope): argument
788 if type_name not in scope:
791 possible_match = '.'.join(components + [type_name])
793 type_name = possible_match
797 return scope[type_name]
Ddescriptor.py974 type_name = field_proto.type_name
976 [type_name[type_name.rfind('.')+1:]])
Djson_format.py298 type_name = type_url.split('/')[-1]
300 message_descriptor = db.pool.FindMessageTypeByName(type_name)
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dparser.cc825 string type_name; in ParseMessageFieldNoLabel() local
835 type_name = "map"; in ParseMessageFieldNoLabel()
877 DO(ParseType(&type, &type_name)); in ParseMessageFieldNoLabel()
879 if (type_name.empty()) { in ParseMessageFieldNoLabel()
884 field->set_type_name(type_name); in ParseMessageFieldNoLabel()
1969 string* type_name) { in ParseType() argument
1975 DO(ParseUserDefinedType(type_name)); in ParseType()
1980 bool Parser::ParseUserDefinedType(string* type_name) { in ParseUserDefinedType() argument
1981 type_name->clear(); in ParseUserDefinedType()
1992 *type_name = input_->current().text; in ParseUserDefinedType()
[all …]
Dparser.h425 string* type_name);
428 bool ParseUserDefinedType(string* type_name);
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/
Ddescriptor_pool_test.py432 def __init__(self, number, type_name, default_value): argument
434 self.type_name = type_name
439 enum_desc = msg_desc.enum_types_by_name[self.type_name]
457 def __init__(self, number, type_name): argument
459 self.type_name = type_name
463 field_type_desc = msg_desc.nested_types_by_name[self.type_name]
Dmessage_factory_test.py162 ext.type_name = 'Extension'
179 ext.type_name = 'Duplicate'
/frameworks/base/libs/androidfw/
DLoadedArsc.cpp315 const char* type_name = type_string_pool_.string8At(type_idx, &type_name_len); in CollectConfigurations() local
316 if (type_name != nullptr) { in CollectConfigurations()
317 if (strncmp(type_name, "mipmap", type_name_len) == 0) { in CollectConfigurations()
354 uint32_t LoadedPackage::FindEntryByName(const std::u16string& type_name, in FindEntryByName() argument
356 ssize_t type_idx = type_string_pool_.indexOfString(type_name.data(), type_name.size()); in FindEntryByName()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Ddescriptor_database_unittest.cc66 const string& type_name) { in ExpectContainsType() argument
68 if (proto.message_type(i).name() == type_name) return; in ExpectContainsType()
72 << type_name << "\"."; in ExpectContainsType()
/frameworks/base/libs/androidfw/include/androidfw/
DLoadedArsc.h149 uint32_t FindEntryByName(const std::u16string& type_name, const std::u16string& entry_name) const;

12