Classes | |
class | AbortingErrorCollector |
class | AllowUnknownDependenciesTest |
class | CopySourceCodeInfoToTest |
class | DatabaseBackedPoolTest |
class | DescriptorTest |
class | EnumDescriptorTest |
class | ExponentialErrorDatabase |
class | ExtensionDescriptorTest |
class | FileDescriptorTest |
class | LazilyBuildDependenciesTest |
class | MiscTest |
class | MockErrorCollector |
class | NestedDescriptorTest |
class | OneofDescriptorTest |
class | ReservedDescriptorTest |
class | ReservedEnumDescriptorTest |
class | ServiceDescriptorTest |
class | SimpleErrorCollector |
class | SingletonSourceTree |
class | SourceLocationTest |
class | StylizedFieldNamesTest |
class | ValidationErrorTest |
Enumerations | |
enum | DescriptorPoolMode { NO_DATABASE, FALLBACK_DATABASE, NO_DATABASE, FALLBACK_DATABASE } |
enum | DescriptorPoolMode { NO_DATABASE, FALLBACK_DATABASE, NO_DATABASE, FALLBACK_DATABASE } |
Functions | |
void | AddEmptyEnum (FileDescriptorProto *file, const std::string &name) |
EnumDescriptorProto * | AddEnum (FileDescriptorProto *file, const std::string &name) |
EnumValueDescriptorProto * | AddEnumValue (EnumDescriptorProto *enum_proto, const std::string &name, int number) |
FieldDescriptorProto * | AddExtension (FileDescriptorProto *file, const std::string &extendee, const std::string &name, int number, FieldDescriptorProto::Label label, FieldDescriptorProto::Type type) |
DescriptorProto::ExtensionRange * | AddExtensionRange (DescriptorProto *parent, int start, int end) |
FieldDescriptorProto * | AddField (DescriptorProto *parent, const std::string &name, int number, FieldDescriptorProto::Label label, FieldDescriptorProto::Type type) |
DescriptorProto * | AddMessage (FileDescriptorProto *file, const std::string &name) |
MethodDescriptorProto * | AddMethod (ServiceDescriptorProto *service, const std::string &name, const std::string &input_type, const std::string &output_type) |
EnumDescriptorProto * | AddNestedEnum (DescriptorProto *parent, const std::string &name) |
FieldDescriptorProto * | AddNestedExtension (DescriptorProto *parent, const std::string &extendee, const std::string &name, int number, FieldDescriptorProto::Label label, FieldDescriptorProto::Type type) |
DescriptorProto * | AddNestedMessage (DescriptorProto *parent, const std::string &name) |
DescriptorProto::ReservedRange * | AddReservedRange (DescriptorProto *parent, int start, int end) |
EnumDescriptorProto::EnumReservedRange * | AddReservedRange (EnumDescriptorProto *parent, int start, int end) |
ServiceDescriptorProto * | AddService (FileDescriptorProto *file, const std::string &name) |
static void | AddToDatabase (SimpleDescriptorDatabase *database, const char *file_text) |
static void | AddToDatabase (SimpleDescriptorDatabase *database, const char *file_text) |
static std::string | EmbedAggregateValue (const char *value) |
static std::string | EmbedAggregateValue (const char *value) |
void | ExtractDebugString (const FileDescriptor *file, std::set< std::string > *visited, std::vector< std::pair< std::string, std::string >> *debug_strings) |
INSTANTIATE_TEST_SUITE_P (DatabaseSource, AllowUnknownDependenciesTest, testing::Combine(testing::Values(NO_DATABASE, FALLBACK_DATABASE), testing::Values("proto2", "proto3"))) | |
INSTANTIATE_TEST_SUITE_P (DatabaseSource, AllowUnknownDependenciesTest, testing::Values(NO_DATABASE, FALLBACK_DATABASE)) | |
TEST (CustomOptions, AggregateOptions) | |
TEST (CustomOptions, ComplexExtensionOptions) | |
TEST (CustomOptions, DebugString) | |
TEST (CustomOptions, MessageOptionRepeatedLeafFieldSet) | |
TEST (CustomOptions, MessageOptionRepeatedMsgFieldSet) | |
TEST (CustomOptions, MessageOptionThreeFieldsSet) | |
TEST (CustomOptions, OptionLocations) | |
TEST (CustomOptions, OptionsFromOtherFile) | |
TEST (CustomOptions, OptionsWithIncompatibleDescriptors) | |
TEST (CustomOptions, OptionTypes) | |
TEST (CustomOptions, UnusedImportError) | |
TEST (CustomOptions, UnusedImportWarning) | |
TEST (OverlappingExtensionRangeTest, ExtensionRangeAfter) | |
TEST (OverlappingExtensionRangeTest, ExtensionRangeBefore) | |
TEST (OverlappingExtensionRangeTest, ExtensionRangeInternal) | |
TEST_F (CopySourceCodeInfoToTest, CopySourceCodeInfoTo) | |
TEST_F (CopySourceCodeInfoToTest, CopyTo_DoesNotCopySourceCodeInfo) | |
TEST_F (DatabaseBackedPoolTest, DoesntFallbackOnWrongType) | |
TEST_F (DatabaseBackedPoolTest, DoesntReloadFilesUncesessarily) | |
TEST_F (DatabaseBackedPoolTest, DoesntReloadKnownBadFiles) | |
TEST_F (DatabaseBackedPoolTest, DoesntRetryDbUnnecessarily) | |
TEST_F (DatabaseBackedPoolTest, ErrorWithErrorCollector) | |
TEST_F (DatabaseBackedPoolTest, ErrorWithoutErrorCollector) | |
TEST_F (DatabaseBackedPoolTest, FindAllExtensions) | |
TEST_F (DatabaseBackedPoolTest, FindDependencyBeforeDependent) | |
TEST_F (DatabaseBackedPoolTest, FindDependentBeforeDependency) | |
TEST_F (DatabaseBackedPoolTest, FindExtensionByNumber) | |
TEST_F (DatabaseBackedPoolTest, FindFileByName) | |
TEST_F (DatabaseBackedPoolTest, FindFileContainingSymbol) | |
TEST_F (DatabaseBackedPoolTest, FindMessageTypeByName) | |
TEST_F (DatabaseBackedPoolTest, RollbackAfterError) | |
TEST_F (DatabaseBackedPoolTest, UndeclaredDependencyOnUnbuiltType) | |
TEST_F (DatabaseBackedPoolTest, UnittestProto) | |
TEST_F (DescriptorTest, ContainingType) | |
TEST_F (DescriptorTest, FieldContainingType) | |
TEST_F (DescriptorTest, FieldEnumType) | |
TEST_F (DescriptorTest, FieldFile) | |
TEST_F (DescriptorTest, FieldFullName) | |
TEST_F (DescriptorTest, FieldHasDefault) | |
TEST_F (DescriptorTest, FieldIndex) | |
TEST_F (DescriptorTest, FieldJsonName) | |
TEST_F (DescriptorTest, FieldLabel) | |
TEST_F (DescriptorTest, FieldMessageType) | |
TEST_F (DescriptorTest, FieldName) | |
TEST_F (DescriptorTest, FieldNamesDedup) | |
TEST_F (DescriptorTest, FieldNumber) | |
TEST_F (DescriptorTest, FieldsByIndex) | |
TEST_F (DescriptorTest, FieldType) | |
TEST_F (DescriptorTest, FindFieldByName) | |
TEST_F (DescriptorTest, FindFieldByNumber) | |
TEST_F (DescriptorTest, GetMap) | |
TEST_F (DescriptorTest, IsMap) | |
TEST_F (DescriptorTest, Name) | |
TEST_F (DescriptorTest, PrintableNameIsExtendingTypeForMessageSetExtension) | |
TEST_F (DescriptorTest, PrintableNameIsFullNameForNonExtensionFields) | |
TEST_F (DescriptorTest, PrintableNameIsFullNameForNonMessageSetExtension) | |
TEST_F (EnumDescriptorTest, ContainingType) | |
TEST_F (EnumDescriptorTest, FindValueByName) | |
TEST_F (EnumDescriptorTest, FindValueByNumber) | |
TEST_F (EnumDescriptorTest, Name) | |
TEST_F (EnumDescriptorTest, ValueFullName) | |
TEST_F (EnumDescriptorTest, ValueIndex) | |
TEST_F (EnumDescriptorTest, ValueName) | |
TEST_F (EnumDescriptorTest, ValueNumber) | |
TEST_F (EnumDescriptorTest, ValuesByIndex) | |
TEST_F (EnumDescriptorTest, ValueType) | |
TEST_F (ExtensionDescriptorTest, DuplicateFieldNumber) | |
TEST_F (ExtensionDescriptorTest, ExtensionRanges) | |
TEST_F (ExtensionDescriptorTest, Extensions) | |
TEST_F (ExtensionDescriptorTest, FieldVsExtension) | |
TEST_F (ExtensionDescriptorTest, FindAllExtensions) | |
TEST_F (ExtensionDescriptorTest, FindExtensionByName) | |
TEST_F (ExtensionDescriptorTest, FindExtensionByPrintableName) | |
TEST_F (ExtensionDescriptorTest, IsExtensionNumber) | |
TEST_F (FileDescriptorTest, BuildAgain) | |
TEST_F (FileDescriptorTest, BuildAgainWithSyntax) | |
TEST_F (FileDescriptorTest, DebugStringRoundTrip) | |
TEST_F (FileDescriptorTest, Dependencies) | |
TEST_F (FileDescriptorTest, FindEnumTypeByName) | |
TEST_F (FileDescriptorTest, FindEnumValueByName) | |
TEST_F (FileDescriptorTest, FindExtensionByName) | |
TEST_F (FileDescriptorTest, FindExtensionByNumber) | |
TEST_F (FileDescriptorTest, FindMessageTypeByName) | |
TEST_F (FileDescriptorTest, FindServiceByName) | |
TEST_F (FileDescriptorTest, Name) | |
TEST_F (FileDescriptorTest, Package) | |
TEST_F (FileDescriptorTest, Syntax) | |
TEST_F (LazilyBuildDependenciesTest, Dependency) | |
TEST_F (LazilyBuildDependenciesTest, Enum) | |
TEST_F (LazilyBuildDependenciesTest, Extension) | |
TEST_F (LazilyBuildDependenciesTest, GeneratedFile) | |
TEST_F (LazilyBuildDependenciesTest, Message) | |
TEST_F (LazilyBuildDependenciesTest, Service) | |
TEST_F (LazilyBuildDependenciesTest, Type) | |
TEST_F (MiscTest, CppTypeNames) | |
TEST_F (MiscTest, CppTypes) | |
TEST_F (MiscTest, DefaultValues) | |
TEST_F (MiscTest, EnumType) | |
TEST_F (MiscTest, FieldOptions) | |
TEST_F (MiscTest, MessageType) | |
TEST_F (MiscTest, StaticCppTypeNames) | |
TEST_F (MiscTest, StaticTypeNames) | |
TEST_F (MiscTest, TypeNames) | |
TEST_F (NestedDescriptorTest, EnumContainingType) | |
TEST_F (NestedDescriptorTest, EnumName) | |
TEST_F (NestedDescriptorTest, FindEnumTypeByName) | |
TEST_F (NestedDescriptorTest, FindEnumValueByName) | |
TEST_F (NestedDescriptorTest, FindFieldByNameDoesntFindNestedTypes) | |
TEST_F (NestedDescriptorTest, FindNestedTypeByName) | |
TEST_F (NestedDescriptorTest, MessageContainingType) | |
TEST_F (NestedDescriptorTest, MessageName) | |
TEST_F (NestedDescriptorTest, NestedEnumsByIndex) | |
TEST_F (NestedDescriptorTest, NestedMessagesByIndex) | |
TEST_F (OneofDescriptorTest, FindByName) | |
TEST_F (OneofDescriptorTest, Normal) | |
TEST_F (ReservedDescriptorTest, IsReservedName) | |
TEST_F (ReservedDescriptorTest, IsReservedNumber) | |
TEST_F (ReservedDescriptorTest, ReservedNames) | |
TEST_F (ReservedDescriptorTest, ReservedRanges) | |
TEST_F (ReservedEnumDescriptorTest, IsReservedName) | |
TEST_F (ReservedEnumDescriptorTest, IsReservedNumber) | |
TEST_F (ReservedEnumDescriptorTest, ReservedNames) | |
TEST_F (ReservedEnumDescriptorTest, ReservedRanges) | |
TEST_F (ServiceDescriptorTest, FindMethodByName) | |
TEST_F (ServiceDescriptorTest, MethodFullName) | |
TEST_F (ServiceDescriptorTest, MethodIndex) | |
TEST_F (ServiceDescriptorTest, MethodInputType) | |
TEST_F (ServiceDescriptorTest, MethodName) | |
TEST_F (ServiceDescriptorTest, MethodOutputType) | |
TEST_F (ServiceDescriptorTest, MethodParent) | |
TEST_F (ServiceDescriptorTest, MethodsByIndex) | |
TEST_F (ServiceDescriptorTest, Name) | |
TEST_F (SourceLocationTest, ExtensionSourceLocation) | |
TEST_F (SourceLocationTest, GetSourceLocation) | |
TEST_F (SourceLocationTest, GetSourceLocation_BogusSourceCodeInfo) | |
TEST_F (SourceLocationTest, GetSourceLocation_MissingSourceCodeInfo) | |
TEST_F (SourceLocationTest, InterpretedOptionSourceLocation) | |
TEST_F (StylizedFieldNamesTest, CamelcaseName) | |
TEST_F (StylizedFieldNamesTest, FindByCamelcaseName) | |
TEST_F (StylizedFieldNamesTest, FindByLowercaseName) | |
TEST_F (StylizedFieldNamesTest, LowercaseName) | |
TEST_F (ValidationErrorTest, AggregateValueNotFound) | |
TEST_F (ValidationErrorTest, AggregateValueParseError) | |
TEST_F (ValidationErrorTest, AggregateValueUnknownFields) | |
TEST_F (ValidationErrorTest, AllowEnumAlias) | |
TEST_F (ValidationErrorTest, AlreadyDefined) | |
TEST_F (ValidationErrorTest, AlreadyDefinedInOtherFile) | |
TEST_F (ValidationErrorTest, AlreadyDefinedInPackage) | |
TEST_F (ValidationErrorTest, BadEnumDefaultValue) | |
TEST_F (ValidationErrorTest, BadMessageSetExtensionLabel) | |
TEST_F (ValidationErrorTest, BadMessageSetExtensionType) | |
TEST_F (ValidationErrorTest, BoolOptionValueIsNotTrueOrFalse) | |
TEST_F (ValidationErrorTest, CustomOptionConflictingFieldNumber) | |
TEST_F (ValidationErrorTest, DebugStringReservedRangeMax) | |
TEST_F (ValidationErrorTest, DisallowEnumAlias) | |
TEST_F (ValidationErrorTest, DoubleOptionValueIsNotNumber) | |
TEST_F (ValidationErrorTest, DupeDependency) | |
TEST_F (ValidationErrorTest, DupeFile) | |
TEST_F (ValidationErrorTest, DuplicateExtensionFieldNumber) | |
TEST_F (ValidationErrorTest, DupOption) | |
TEST_F (ValidationErrorTest, EmptyEnum) | |
TEST_F (ValidationErrorTest, EnumDefaultValueIsInteger) | |
TEST_F (ValidationErrorTest, EnumFieldTypeIsMessage) | |
TEST_F (ValidationErrorTest, EnumMixedReservedRangeOverlap) | |
TEST_F (ValidationErrorTest, EnumMixedReservedRangeOverlap2) | |
TEST_F (ValidationErrorTest, EnumNegativeReservedFieldError) | |
TEST_F (ValidationErrorTest, EnumNegativeReservedRangeOverlap) | |
TEST_F (ValidationErrorTest, EnumOptionValueIsNotEnumValueName) | |
TEST_F (ValidationErrorTest, EnumOptionValueIsNotIdentifier) | |
TEST_F (ValidationErrorTest, EnumOptionValueIsSiblingEnumValueName) | |
TEST_F (ValidationErrorTest, EnumReservedFieldError) | |
TEST_F (ValidationErrorTest, EnumReservedFieldsDebugString) | |
TEST_F (ValidationErrorTest, EnumReservedNameError) | |
TEST_F (ValidationErrorTest, EnumReservedNameRedundant) | |
TEST_F (ValidationErrorTest, EnumReservedRangeOverlap) | |
TEST_F (ValidationErrorTest, EnumReservedRangeOverlapByOne) | |
TEST_F (ValidationErrorTest, EnumReservedRangeStartGreaterThanEnd) | |
TEST_F (ValidationErrorTest, EnumValueAlreadyDefinedInParent) | |
TEST_F (ValidationErrorTest, EnumValueAlreadyDefinedInParentNonGlobal) | |
TEST_F (ValidationErrorTest, EnumValuesConflictWhenPrefixesStripped) | |
TEST_F (ValidationErrorTest, EnumValuesConflictWithDifferentCasing) | |
TEST_F (ValidationErrorTest, ErrorsReportedToLogError) | |
TEST_F (ValidationErrorTest, ExtensionMissingExtendee) | |
TEST_F (ValidationErrorTest, ExtensionRangeEndBeforeStart) | |
TEST_F (ValidationErrorTest, FieldInExtensionRange) | |
TEST_F (ValidationErrorTest, FieldInMessageSet) | |
TEST_F (ValidationErrorTest, FieldNumberConflict) | |
TEST_F (ValidationErrorTest, FieldOneofIndexNegative) | |
TEST_F (ValidationErrorTest, FieldOneofIndexTooLarge) | |
TEST_F (ValidationErrorTest, FieldTypeDefinedInIndirectDependency) | |
TEST_F (ValidationErrorTest, FieldTypeDefinedInPrivateDependencyOfPublicDependency) | |
TEST_F (ValidationErrorTest, FieldTypeDefinedInPublicDependency) | |
TEST_F (ValidationErrorTest, FieldTypeDefinedInTransitivePublicDependency) | |
TEST_F (ValidationErrorTest, FieldTypeDefinedInUndeclaredDependency) | |
TEST_F (ValidationErrorTest, FieldTypeMayBeItsName) | |
TEST_F (ValidationErrorTest, FieldTypeNotAType) | |
TEST_F (ValidationErrorTest, FloatOptionValueIsNotNumber) | |
TEST_F (ValidationErrorTest, ForeignUnimportedPackageNoCrash) | |
TEST_F (ValidationErrorTest, HugeExtensionRangeNumber) | |
TEST_F (ValidationErrorTest, HugeFieldNumber) | |
TEST_F (ValidationErrorTest, IllegalPackedField) | |
TEST_F (ValidationErrorTest, InputTypeNotAMessage) | |
TEST_F (ValidationErrorTest, InputTypeNotDefined) | |
TEST_F (ValidationErrorTest, Int32OptionValueIsNotPositiveInt) | |
TEST_F (ValidationErrorTest, Int32OptionValueOutOfNegativeRange) | |
TEST_F (ValidationErrorTest, Int32OptionValueOutOfPositiveRange) | |
TEST_F (ValidationErrorTest, Int64OptionValueIsNotPositiveInt) | |
TEST_F (ValidationErrorTest, Int64OptionValueOutOfRange) | |
TEST_F (ValidationErrorTest, InvalidDefaults) | |
TEST_F (ValidationErrorTest, InvalidName) | |
TEST_F (ValidationErrorTest, InvalidOptionName) | |
TEST_F (ValidationErrorTest, InvalidPackageName) | |
TEST_F (ValidationErrorTest, InvalidPublicDependencyIndex) | |
TEST_F (ValidationErrorTest, JsonNameOptionOnExtensions) | |
TEST_F (ValidationErrorTest, LiteExtendsNotLite) | |
TEST_F (ValidationErrorTest, MapEntryBase) | |
TEST_F (ValidationErrorTest, MapEntryConflictsWithEnum) | |
TEST_F (ValidationErrorTest, MapEntryConflictsWithField) | |
TEST_F (ValidationErrorTest, MapEntryConflictsWithMessage) | |
TEST_F (ValidationErrorTest, MapEntryConflictsWithOneof) | |
TEST_F (ValidationErrorTest, MapEntryDifferentContainingType) | |
TEST_F (ValidationErrorTest, MapEntryEnumTypes) | |
TEST_F (ValidationErrorTest, MapEntryExtension) | |
TEST_F (ValidationErrorTest, MapEntryExtensionRange) | |
TEST_F (ValidationErrorTest, MapEntryExtraField) | |
TEST_F (ValidationErrorTest, MapEntryKeyLabel) | |
TEST_F (ValidationErrorTest, MapEntryKeyName) | |
TEST_F (ValidationErrorTest, MapEntryKeyNumber) | |
TEST_F (ValidationErrorTest, MapEntryKeyTypeBytes) | |
TEST_F (ValidationErrorTest, MapEntryKeyTypeDouble) | |
TEST_F (ValidationErrorTest, MapEntryKeyTypeEnum) | |
TEST_F (ValidationErrorTest, MapEntryKeyTypeFloat) | |
TEST_F (ValidationErrorTest, MapEntryKeyTypeMessage) | |
TEST_F (ValidationErrorTest, MapEntryMessageName) | |
TEST_F (ValidationErrorTest, MapEntryNestedType) | |
TEST_F (ValidationErrorTest, MapEntryNoneRepeatedMapEntry) | |
TEST_F (ValidationErrorTest, MapEntryUsesNoneZeroEnumDefaultValue) | |
TEST_F (ValidationErrorTest, MapEntryValueLabel) | |
TEST_F (ValidationErrorTest, MapEntryValueName) | |
TEST_F (ValidationErrorTest, MapEntryValueNumber) | |
TEST_F (ValidationErrorTest, MessageFieldTypeIsEnum) | |
TEST_F (ValidationErrorTest, MissingFileName) | |
TEST_F (ValidationErrorTest, MissingName) | |
TEST_F (ValidationErrorTest, NegativeExtensionRangeNumber) | |
TEST_F (ValidationErrorTest, NegativeFieldNumber) | |
TEST_F (ValidationErrorTest, NoLiteServices) | |
TEST_F (ValidationErrorTest, NonExtensionWithExtendee) | |
TEST_F (ValidationErrorTest, NonMessageExtendee) | |
TEST_F (ValidationErrorTest, NonPrimitiveWithoutTypeName) | |
TEST_F (ValidationErrorTest, NotAnExtensionNumber) | |
TEST_F (ValidationErrorTest, NotLiteImportsLite) | |
TEST_F (ValidationErrorTest, NullCharFileName) | |
TEST_F (ValidationErrorTest, NullCharPackageName) | |
TEST_F (ValidationErrorTest, NullCharSymbolName) | |
TEST_F (ValidationErrorTest, OneofFieldsConsecutiveDefinition) | |
TEST_F (ValidationErrorTest, OneofLabelMismatch) | |
TEST_F (ValidationErrorTest, OneofWithNoFields) | |
TEST_F (ValidationErrorTest, OptionExtendsAtomicType) | |
TEST_F (ValidationErrorTest, OptionWrongType) | |
TEST_F (ValidationErrorTest, OutputTypeNotAMessage) | |
TEST_F (ValidationErrorTest, OutputTypeNotDefined) | |
TEST_F (ValidationErrorTest, OverlappingExtensionRanges) | |
TEST_F (ValidationErrorTest, PackageAlreadyDefined) | |
TEST_F (ValidationErrorTest, PackageOriginallyDeclaredInTransitiveDependent) | |
TEST_F (ValidationErrorTest, PrimitiveWithTypeName) | |
TEST_F (ValidationErrorTest, Proto3RequiredFields) | |
TEST_F (ValidationErrorTest, RelativeFieldTypeNotAType) | |
TEST_F (ValidationErrorTest, RepeatedMessageOption) | |
TEST_F (ValidationErrorTest, RequiredExtension) | |
TEST_F (ValidationErrorTest, ReservedExtensionRangeAdjacent) | |
TEST_F (ValidationErrorTest, ReservedExtensionRangeError) | |
TEST_F (ValidationErrorTest, ReservedFieldError) | |
TEST_F (ValidationErrorTest, ReservedFieldNumber) | |
TEST_F (ValidationErrorTest, ReservedFieldsDebugString) | |
TEST_F (ValidationErrorTest, ReservedNameError) | |
TEST_F (ValidationErrorTest, ReservedNameRedundant) | |
TEST_F (ValidationErrorTest, ReservedRangeOverlap) | |
TEST_F (ValidationErrorTest, ResolveUndefinedOption) | |
TEST_F (ValidationErrorTest, RollbackAfterError) | |
TEST_F (ValidationErrorTest, SearchMostLocalFirst) | |
TEST_F (ValidationErrorTest, SearchMostLocalFirst2) | |
TEST_F (ValidationErrorTest, StringOptionValueIsNotString) | |
TEST_F (ValidationErrorTest, UInt32OptionValueIsNotPositiveInt) | |
TEST_F (ValidationErrorTest, UInt32OptionValueOutOfRange) | |
TEST_F (ValidationErrorTest, UInt64OptionValueIsNotPositiveInt) | |
TEST_F (ValidationErrorTest, UndefinedExtendee) | |
TEST_F (ValidationErrorTest, UndefinedFieldType) | |
TEST_F (ValidationErrorTest, UndefinedFieldTypeWithDefault) | |
TEST_F (ValidationErrorTest, UndefinedNestedFieldType) | |
TEST_F (ValidationErrorTest, UnknownDependency) | |
TEST_F (ValidationErrorTest, UnknownOption) | |
TEST_F (ValidationErrorTest, UnusedImportWarning) | |
TEST_F (ValidationErrorTest, UnusedImportWithOtherError) | |
TEST_F (ValidationErrorTest, ValidateProto3DefaultValue) | |
TEST_F (ValidationErrorTest, ValidateProto3Enum) | |
TEST_F (ValidationErrorTest, ValidateProto3EnumFromProto2) | |
TEST_F (ValidationErrorTest, ValidateProto3Extension) | |
TEST_F (ValidationErrorTest, ValidateProto3ExtensionRange) | |
TEST_F (ValidationErrorTest, ValidateProto3Group) | |
TEST_F (ValidationErrorTest, ValidateProto3JsonName) | |
TEST_F (ValidationErrorTest, ValidateProto3MessageSetWireFormat) | |
TEST_P (AllowUnknownDependenciesTest, CopyTo) | |
TEST_P (AllowUnknownDependenciesTest, CustomOption) | |
TEST_P (AllowUnknownDependenciesTest, CustomOptions) | |
TEST_P (AllowUnknownDependenciesTest, PlaceholderFile) | |
TEST_P (AllowUnknownDependenciesTest, PlaceholderTypes) | |
TEST_P (AllowUnknownDependenciesTest, UndeclaredDependencyTriggersBuildOfDependency) | |
TEST_P (AllowUnknownDependenciesTest, UnknownExtendee) | |
Variables | |
const char *const | kCopySourceCodeInfoToTestInput |
const char *const | kSourceLocationTestInput |
Enumerator | |
---|---|
NO_DATABASE | |
FALLBACK_DATABASE | |
NO_DATABASE | |
FALLBACK_DATABASE |
Definition at line 2652 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
Enumerator | |
---|---|
NO_DATABASE | |
FALLBACK_DATABASE | |
NO_DATABASE | |
FALLBACK_DATABASE |
Definition at line 2813 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
void google::protobuf::descriptor_unittest::AddEmptyEnum | ( | FileDescriptorProto * | file, |
const std::string & | name | ||
) |
Definition at line 192 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
EnumDescriptorProto * google::protobuf::descriptor_unittest::AddEnum | ( | FileDescriptorProto * | file, |
const std::string & | name | ||
) |
Definition at line 87 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
EnumValueDescriptorProto * google::protobuf::descriptor_unittest::AddEnumValue | ( | EnumDescriptorProto * | enum_proto, |
const std::string & | name, | ||
int | number | ||
) |
Definition at line 171 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
FieldDescriptorProto * google::protobuf::descriptor_unittest::AddExtension | ( | FileDescriptorProto * | file, |
const std::string & | extendee, | ||
const std::string & | name, | ||
int | number, | ||
FieldDescriptorProto::Label | label, | ||
FieldDescriptorProto::Type | type | ||
) |
Definition at line 119 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
DescriptorProto::ExtensionRange * google::protobuf::descriptor_unittest::AddExtensionRange | ( | DescriptorProto * | parent, |
int | start, | ||
int | end | ||
) |
Definition at line 147 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
FieldDescriptorProto * google::protobuf::descriptor_unittest::AddField | ( | DescriptorProto * | parent, |
const std::string & | name, | ||
int | number, | ||
FieldDescriptorProto::Label | label, | ||
FieldDescriptorProto::Type | type | ||
) |
Definition at line 108 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
DescriptorProto * google::protobuf::descriptor_unittest::AddMessage | ( | FileDescriptorProto * | file, |
const std::string & | name | ||
) |
Definition at line 73 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
MethodDescriptorProto * google::protobuf::descriptor_unittest::AddMethod | ( | ServiceDescriptorProto * | service, |
const std::string & | name, | ||
const std::string & | input_type, | ||
const std::string & | output_type | ||
) |
Definition at line 179 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
EnumDescriptorProto * google::protobuf::descriptor_unittest::AddNestedEnum | ( | DescriptorProto * | parent, |
const std::string & | name | ||
) |
Definition at line 94 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
FieldDescriptorProto * google::protobuf::descriptor_unittest::AddNestedExtension | ( | DescriptorProto * | parent, |
const std::string & | extendee, | ||
const std::string & | name, | ||
int | number, | ||
FieldDescriptorProto::Label | label, | ||
FieldDescriptorProto::Type | type | ||
) |
Definition at line 133 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
DescriptorProto * google::protobuf::descriptor_unittest::AddNestedMessage | ( | DescriptorProto * | parent, |
const std::string & | name | ||
) |
Definition at line 80 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
DescriptorProto::ReservedRange * google::protobuf::descriptor_unittest::AddReservedRange | ( | DescriptorProto * | parent, |
int | start, | ||
int | end | ||
) |
Definition at line 155 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
EnumDescriptorProto::EnumReservedRange * google::protobuf::descriptor_unittest::AddReservedRange | ( | EnumDescriptorProto * | parent, |
int | start, | ||
int | end | ||
) |
Definition at line 163 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
ServiceDescriptorProto * google::protobuf::descriptor_unittest::AddService | ( | FileDescriptorProto * | file, |
const std::string & | name | ||
) |
Definition at line 101 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
|
static |
Definition at line 6508 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
|
static |
Definition at line 6799 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
|
static |
Definition at line 5554 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
|
static |
Definition at line 5823 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
void google::protobuf::descriptor_unittest::ExtractDebugString | ( | const FileDescriptor * | file, |
std::set< std::string > * | visited, | ||
std::vector< std::pair< std::string, std::string >> * | debug_strings | ||
) |
Definition at line 551 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::INSTANTIATE_TEST_SUITE_P | ( | DatabaseSource | , |
AllowUnknownDependenciesTest | , | ||
testing::Combine(testing::Values(NO_DATABASE, FALLBACK_DATABASE), testing::Values("proto2", "proto3")) | |||
) |
google::protobuf::descriptor_unittest::INSTANTIATE_TEST_SUITE_P | ( | DatabaseSource | , |
AllowUnknownDependenciesTest | , | ||
testing::Values(NO_DATABASE, FALLBACK_DATABASE) | |||
) |
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
AggregateOptions | |||
) |
Definition at line 3420 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
ComplexExtensionOptions | |||
) |
Definition at line 3067 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
DebugString | |||
) |
Definition at line 3539 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
MessageOptionRepeatedLeafFieldSet | |||
) |
Definition at line 3252 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
MessageOptionRepeatedMsgFieldSet | |||
) |
Definition at line 3332 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
MessageOptionThreeFieldsSet | |||
) |
Definition at line 3175 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
OptionLocations | |||
) |
Definition at line 2976 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
OptionsFromOtherFile | |||
) |
Definition at line 3120 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
OptionsWithIncompatibleDescriptors | |||
) |
Definition at line 3490 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
OptionTypes | |||
) |
Definition at line 3010 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
UnusedImportError | |||
) |
Definition at line 3660 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | CustomOptions | , |
UnusedImportWarning | |||
) |
Definition at line 3459 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | OverlappingExtensionRangeTest | , |
ExtensionRangeAfter | |||
) |
Definition at line 2163 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | OverlappingExtensionRangeTest | , |
ExtensionRangeBefore | |||
) |
Definition at line 2188 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST | ( | OverlappingExtensionRangeTest | , |
ExtensionRangeInternal | |||
) |
Definition at line 2138 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | CopySourceCodeInfoToTest | , |
CopySourceCodeInfoTo | |||
) |
Definition at line 7666 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | CopySourceCodeInfoToTest | , |
CopyTo_DoesNotCopySourceCodeInfo | |||
) |
Definition at line 7656 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
DoesntFallbackOnWrongType | |||
) |
Definition at line 6985 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
DoesntReloadFilesUncesessarily | |||
) |
Definition at line 6877 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
DoesntReloadKnownBadFiles | |||
) |
Definition at line 6975 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
DoesntRetryDbUnnecessarily | |||
) |
Definition at line 6832 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
ErrorWithErrorCollector | |||
) |
Definition at line 6762 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
ErrorWithoutErrorCollector | |||
) |
Definition at line 6747 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
FindAllExtensions | |||
) |
Definition at line 6732 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
FindDependencyBeforeDependent | |||
) |
Definition at line 6658 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
FindDependentBeforeDependency | |||
) |
Definition at line 6677 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
FindExtensionByNumber | |||
) |
Definition at line 6718 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
FindFileByName | |||
) |
Definition at line 6644 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
FindFileContainingSymbol | |||
) |
Definition at line 6696 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
FindMessageTypeByName | |||
) |
Definition at line 6707 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
RollbackAfterError | |||
) |
Definition at line 6791 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
UndeclaredDependencyOnUnbuiltType | |||
) |
Definition at line 6778 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DatabaseBackedPoolTest | , |
UnittestProto | |||
) |
Definition at line 6805 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
ContainingType | |||
) |
Definition at line 811 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldContainingType | |||
) |
Definition at line 1008 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldEnumType | |||
) |
Definition at line 1027 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldFile | |||
) |
Definition at line 944 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldFullName | |||
) |
Definition at line 866 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldHasDefault | |||
) |
Definition at line 1001 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldIndex | |||
) |
Definition at line 955 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldJsonName | |||
) |
Definition at line 905 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldLabel | |||
) |
Definition at line 976 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldMessageType | |||
) |
Definition at line 1019 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldName | |||
) |
Definition at line 859 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldNamesDedup | |||
) |
Definition at line 825 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldNumber | |||
) |
Definition at line 962 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldsByIndex | |||
) |
Definition at line 816 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FieldType | |||
) |
Definition at line 969 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FindFieldByName | |||
) |
Definition at line 824 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
FindFieldByNumber | |||
) |
Definition at line 844 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
GetMap | |||
) |
Definition at line 1053 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
IsMap | |||
) |
Definition at line 995 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
Name | |||
) |
Definition at line 801 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
PrintableNameIsExtendingTypeForMessageSetExtension | |||
) |
Definition at line 898 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
PrintableNameIsFullNameForNonExtensionFields | |||
) |
Definition at line 877 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | DescriptorTest | , |
PrintableNameIsFullNameForNonMessageSetExtension | |||
) |
Definition at line 891 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
ContainingType | |||
) |
Definition at line 1385 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
FindValueByName | |||
) |
Definition at line 1396 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
FindValueByNumber | |||
) |
Definition at line 1407 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
Name | |||
) |
Definition at line 1375 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
ValueFullName | |||
) |
Definition at line 1423 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
ValueIndex | |||
) |
Definition at line 1430 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
ValueName | |||
) |
Definition at line 1418 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
ValueNumber | |||
) |
Definition at line 1435 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
ValuesByIndex | |||
) |
Definition at line 1390 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | EnumDescriptorTest | , |
ValueType | |||
) |
Definition at line 1440 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ExtensionDescriptorTest | , |
DuplicateFieldNumber | |||
) |
Definition at line 2016 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ExtensionDescriptorTest | , |
ExtensionRanges | |||
) |
Definition at line 1896 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ExtensionDescriptorTest | , |
Extensions | |||
) |
Definition at line 1907 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ExtensionDescriptorTest | , |
FieldVsExtension | |||
) |
Definition at line 2052 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ExtensionDescriptorTest | , |
FindAllExtensions | |||
) |
Definition at line 2005 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ExtensionDescriptorTest | , |
FindExtensionByName | |||
) |
Definition at line 1963 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ExtensionDescriptorTest | , |
FindExtensionByPrintableName | |||
) |
Definition at line 1976 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ExtensionDescriptorTest | , |
IsExtensionNumber | |||
) |
Definition at line 1952 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
BuildAgain | |||
) |
Definition at line 480 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
BuildAgainWithSyntax | |||
) |
Definition at line 492 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
DebugStringRoundTrip | |||
) |
Definition at line 577 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
Dependencies | |||
) |
Definition at line 406 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
FindEnumTypeByName | |||
) |
Definition at line 424 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
FindEnumValueByName | |||
) |
Definition at line 436 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
FindExtensionByName | |||
) |
Definition at line 460 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
FindExtensionByNumber | |||
) |
Definition at line 472 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
FindMessageTypeByName | |||
) |
Definition at line 412 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
FindServiceByName | |||
) |
Definition at line 448 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
Name | |||
) |
Definition at line 395 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
Package | |||
) |
Definition at line 401 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | FileDescriptorTest | , |
Syntax | |||
) |
Definition at line 523 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | LazilyBuildDependenciesTest | , |
Dependency | |||
) |
Definition at line 8004 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | LazilyBuildDependenciesTest | , |
Enum | |||
) |
Definition at line 7781 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | LazilyBuildDependenciesTest | , |
Extension | |||
) |
Definition at line 7879 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | LazilyBuildDependenciesTest | , |
GeneratedFile | |||
) |
Definition at line 7948 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | LazilyBuildDependenciesTest | , |
Message | |||
) |
Definition at line 7741 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | LazilyBuildDependenciesTest | , |
Service | |||
) |
Definition at line 7911 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | LazilyBuildDependenciesTest | , |
Type | |||
) |
Definition at line 7818 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
CppTypeNames | |||
) |
Definition at line 2399 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
CppTypes | |||
) |
Definition at line 2374 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
DefaultValues | |||
) |
Definition at line 2491 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
EnumType | |||
) |
Definition at line 2466 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
FieldOptions | |||
) |
Definition at line 2614 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
MessageType | |||
) |
Definition at line 2441 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
StaticCppTypeNames | |||
) |
Definition at line 2424 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
StaticTypeNames | |||
) |
Definition at line 2349 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | MiscTest | , |
TypeNames | |||
) |
Definition at line 2324 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
EnumContainingType | |||
) |
Definition at line 1783 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
EnumName | |||
) |
Definition at line 1771 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
FindEnumTypeByName | |||
) |
Definition at line 1796 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
FindEnumValueByName | |||
) |
Definition at line 1809 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
FindFieldByNameDoesntFindNestedTypes | |||
) |
Definition at line 1751 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
FindNestedTypeByName | |||
) |
Definition at line 1758 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
MessageContainingType | |||
) |
Definition at line 1738 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
MessageName | |||
) |
Definition at line 1726 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
NestedEnumsByIndex | |||
) |
Definition at line 1790 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | NestedDescriptorTest | , |
NestedMessagesByIndex | |||
) |
Definition at line 1745 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | OneofDescriptorTest | , |
FindByName | |||
) |
Definition at line 1122 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | OneofDescriptorTest | , |
Normal | |||
) |
Definition at line 1110 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ReservedDescriptorTest | , |
IsReservedName | |||
) |
Definition at line 2122 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ReservedDescriptorTest | , |
IsReservedNumber | |||
) |
Definition at line 2100 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ReservedDescriptorTest | , |
ReservedNames | |||
) |
Definition at line 2115 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ReservedDescriptorTest | , |
ReservedRanges | |||
) |
Definition at line 2087 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ReservedEnumDescriptorTest | , |
IsReservedName | |||
) |
Definition at line 2253 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ReservedEnumDescriptorTest | , |
IsReservedNumber | |||
) |
Definition at line 2213 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ReservedEnumDescriptorTest | , |
ReservedNames | |||
) |
Definition at line 2246 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ReservedEnumDescriptorTest | , |
ReservedRanges | |||
) |
Definition at line 2186 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
FindMethodByName | |||
) |
Definition at line 1565 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
MethodFullName | |||
) |
Definition at line 1581 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
MethodIndex | |||
) |
Definition at line 1588 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
MethodInputType | |||
) |
Definition at line 1598 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
MethodName | |||
) |
Definition at line 1576 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
MethodOutputType | |||
) |
Definition at line 1603 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
MethodParent | |||
) |
Definition at line 1593 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
MethodsByIndex | |||
) |
Definition at line 1559 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ServiceDescriptorTest | , |
Name | |||
) |
Definition at line 1549 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | SourceLocationTest | , |
ExtensionSourceLocation | |||
) |
Definition at line 7199 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | SourceLocationTest | , |
GetSourceLocation | |||
) |
Definition at line 7167 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | SourceLocationTest | , |
GetSourceLocation_BogusSourceCodeInfo | |||
) |
Definition at line 7607 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | SourceLocationTest | , |
GetSourceLocation_MissingSourceCodeInfo | |||
) |
Definition at line 7589 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | SourceLocationTest | , |
InterpretedOptionSourceLocation | |||
) |
Definition at line 7219 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | StylizedFieldNamesTest | , |
CamelcaseName | |||
) |
Definition at line 1219 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | StylizedFieldNamesTest | , |
FindByCamelcaseName | |||
) |
Definition at line 1268 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | StylizedFieldNamesTest | , |
FindByLowercaseName | |||
) |
Definition at line 1239 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | StylizedFieldNamesTest | , |
LowercaseName | |||
) |
Definition at line 1199 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
AggregateValueNotFound | |||
) |
Definition at line 5568 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
AggregateValueParseError | |||
) |
Definition at line 5579 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
AggregateValueUnknownFields | |||
) |
Definition at line 5588 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
AllowEnumAlias | |||
) |
Definition at line 5743 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
AlreadyDefined | |||
) |
Definition at line 3672 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
AlreadyDefinedInOtherFile | |||
) |
Definition at line 3692 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
AlreadyDefinedInPackage | |||
) |
Definition at line 3681 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
BadEnumDefaultValue | |||
) |
Definition at line 4919 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
BadMessageSetExtensionLabel | |||
) |
Definition at line 4392 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
BadMessageSetExtensionType | |||
) |
Definition at line 4374 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
BoolOptionValueIsNotTrueOrFalse | |||
) |
Definition at line 5419 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
CustomOptionConflictingFieldNumber | |||
) |
Definition at line 5240 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
DebugStringReservedRangeMax | |||
) |
Definition at line 4226 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
DisallowEnumAlias | |||
) |
Definition at line 5729 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
DoubleOptionValueIsNotNumber | |||
) |
Definition at line 5403 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
DupeDependency | |||
) |
Definition at line 3774 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
DupeFile | |||
) |
Definition at line 3828 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
DuplicateExtensionFieldNumber | |||
) |
Definition at line 5532 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
DupOption | |||
) |
Definition at line 5117 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EmptyEnum | |||
) |
Definition at line 4462 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumDefaultValueIsInteger | |||
) |
Definition at line 4933 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumFieldTypeIsMessage | |||
) |
Definition at line 4893 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumMixedReservedRangeOverlap | |||
) |
Definition at line 4049 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumMixedReservedRangeOverlap2 | |||
) |
Definition at line 4063 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumNegativeReservedFieldError | |||
) |
Definition at line 3995 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumNegativeReservedRangeOverlap | |||
) |
Definition at line 4035 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumOptionValueIsNotEnumValueName | |||
) |
Definition at line 5454 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumOptionValueIsNotIdentifier | |||
) |
Definition at line 5435 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumOptionValueIsSiblingEnumValueName | |||
) |
Definition at line 5473 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumReservedFieldError | |||
) |
Definition at line 3983 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumReservedFieldsDebugString | |||
) |
Definition at line 4118 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumReservedNameError | |||
) |
Definition at line 4090 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumReservedNameRedundant | |||
) |
Definition at line 4105 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumReservedRangeOverlap | |||
) |
Definition at line 4007 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumReservedRangeOverlapByOne | |||
) |
Definition at line 4021 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumReservedRangeStartGreaterThanEnd | |||
) |
Definition at line 4077 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumValueAlreadyDefinedInParent | |||
) |
Definition at line 3717 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumValueAlreadyDefinedInParentNonGlobal | |||
) |
Definition at line 3730 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumValuesConflictWhenPrefixesStripped | |||
) |
Definition at line 6137 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
EnumValuesConflictWithDifferentCasing | |||
) |
Definition at line 6109 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ErrorsReportedToLogError | |||
) |
Definition at line 5704 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ExtensionMissingExtendee | |||
) |
Definition at line 4237 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ExtensionRangeEndBeforeStart | |||
) |
Definition at line 4447 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldInExtensionRange | |||
) |
Definition at line 3845 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldInMessageSet | |||
) |
Definition at line 4411 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldNumberConflict | |||
) |
Definition at line 4361 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldOneofIndexNegative | |||
) |
Definition at line 4283 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldOneofIndexTooLarge | |||
) |
Definition at line 4267 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldTypeDefinedInIndirectDependency | |||
) |
Definition at line 4602 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldTypeDefinedInPrivateDependencyOfPublicDependency | |||
) |
Definition at line 4713 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldTypeDefinedInPublicDependency | |||
) |
Definition at line 4637 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldTypeDefinedInTransitivePublicDependency | |||
) |
Definition at line 4672 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldTypeDefinedInUndeclaredDependency | |||
) |
Definition at line 4586 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldTypeMayBeItsName | |||
) |
Definition at line 4881 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FieldTypeNotAType | |||
) |
Definition at line 4853 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
FloatOptionValueIsNotNumber | |||
) |
Definition at line 5387 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ForeignUnimportedPackageNoCrash | |||
) |
Definition at line 3802 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
HugeExtensionRangeNumber | |||
) |
Definition at line 4435 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
HugeFieldNumber | |||
) |
Definition at line 4203 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
IllegalPackedField | |||
) |
Definition at line 5051 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
InputTypeNotAMessage | |||
) |
Definition at line 5009 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
InputTypeNotDefined | |||
) |
Definition at line 4996 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
Int32OptionValueIsNotPositiveInt | |||
) |
Definition at line 5289 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
Int32OptionValueOutOfNegativeRange | |||
) |
Definition at line 5272 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
Int32OptionValueOutOfPositiveRange | |||
) |
Definition at line 5255 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
Int64OptionValueIsNotPositiveInt | |||
) |
Definition at line 5323 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
Int64OptionValueOutOfRange | |||
) |
Definition at line 5305 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
InvalidDefaults | |||
) |
Definition at line 4143 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
InvalidName | |||
) |
Definition at line 3752 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
InvalidOptionName | |||
) |
Definition at line 5137 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
InvalidPackageName | |||
) |
Definition at line 3760 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
InvalidPublicDependencyIndex | |||
) |
Definition at line 3793 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
JsonNameOptionOnExtensions | |||
) |
Definition at line 5512 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
LiteExtendsNotLite | |||
) |
Definition at line 5611 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryBase | |||
) |
Definition at line 5837 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryConflictsWithEnum | |||
) |
Definition at line 6092 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryConflictsWithField | |||
) |
Definition at line 6056 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryConflictsWithMessage | |||
) |
Definition at line 6076 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryConflictsWithOneof | |||
) |
Definition at line 6206 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryDifferentContainingType | |||
) |
Definition at line 5920 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryEnumTypes | |||
) |
Definition at line 5876 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryExtension | |||
) |
Definition at line 5854 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryExtensionRange | |||
) |
Definition at line 5843 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryExtraField | |||
) |
Definition at line 5888 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryKeyLabel | |||
) |
Definition at line 5940 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryKeyName | |||
) |
Definition at line 5930 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryKeyNumber | |||
) |
Definition at line 5950 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryKeyTypeBytes | |||
) |
Definition at line 6010 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryKeyTypeDouble | |||
) |
Definition at line 6000 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryKeyTypeEnum | |||
) |
Definition at line 6020 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryKeyTypeFloat | |||
) |
Definition at line 5990 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryKeyTypeMessage | |||
) |
Definition at line 6045 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryMessageName | |||
) |
Definition at line 5902 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryNestedType | |||
) |
Definition at line 5865 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryNoneRepeatedMapEntry | |||
) |
Definition at line 5912 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryUsesNoneZeroEnumDefaultValue | |||
) |
Definition at line 6230 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryValueLabel | |||
) |
Definition at line 5970 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryValueName | |||
) |
Definition at line 5960 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MapEntryValueNumber | |||
) |
Definition at line 5980 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MessageFieldTypeIsEnum | |||
) |
Definition at line 4906 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MissingFileName | |||
) |
Definition at line 3768 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
MissingName | |||
) |
Definition at line 3744 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NegativeExtensionRangeNumber | |||
) |
Definition at line 4424 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NegativeFieldNumber | |||
) |
Definition at line 4191 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NoLiteServices | |||
) |
Definition at line 5631 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NonExtensionWithExtendee | |||
) |
Definition at line 4250 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NonMessageExtendee | |||
) |
Definition at line 4495 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NonPrimitiveWithoutTypeName | |||
) |
Definition at line 4959 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NotAnExtensionNumber | |||
) |
Definition at line 4508 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NotLiteImportsLite | |||
) |
Definition at line 5597 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NullCharFileName | |||
) |
Definition at line 3995 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NullCharPackageName | |||
) |
Definition at line 4003 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
NullCharSymbolName | |||
) |
Definition at line 3975 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
OneofFieldsConsecutiveDefinition | |||
) |
Definition at line 4300 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
OneofLabelMismatch | |||
) |
Definition at line 4982 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
OneofWithNoFields | |||
) |
Definition at line 4971 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
OptionExtendsAtomicType | |||
) |
Definition at line 5098 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
OptionWrongType | |||
) |
Definition at line 5081 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
OutputTypeNotAMessage | |||
) |
Definition at line 5036 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
OutputTypeNotDefined | |||
) |
Definition at line 5023 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
OverlappingExtensionRanges | |||
) |
Definition at line 3867 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
PackageAlreadyDefined | |||
) |
Definition at line 3705 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
PackageOriginallyDeclaredInTransitiveDependent | |||
) |
Definition at line 4812 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
PrimitiveWithTypeName | |||
) |
Definition at line 4947 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
Proto3RequiredFields | |||
) |
Definition at line 6259 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
RelativeFieldTypeNotAType | |||
) |
Definition at line 4866 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
RepeatedMessageOption | |||
) |
Definition at line 5156 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
RequiredExtension | |||
) |
Definition at line 4524 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ReservedExtensionRangeAdjacent | |||
) |
Definition at line 3909 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ReservedExtensionRangeError | |||
) |
Definition at line 3896 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ReservedFieldError | |||
) |
Definition at line 3883 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ReservedFieldNumber | |||
) |
Definition at line 4216 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ReservedFieldsDebugString | |||
) |
Definition at line 3963 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ReservedNameError | |||
) |
Definition at line 3932 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ReservedNameRedundant | |||
) |
Definition at line 3951 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ReservedRangeOverlap | |||
) |
Definition at line 3919 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ResolveUndefinedOption | |||
) |
Definition at line 5179 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
RollbackAfterError | |||
) |
Definition at line 5655 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
SearchMostLocalFirst | |||
) |
Definition at line 4760 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
SearchMostLocalFirst2 | |||
) |
Definition at line 4794 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
StringOptionValueIsNotString | |||
) |
Definition at line 5495 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UInt32OptionValueIsNotPositiveInt | |||
) |
Definition at line 5355 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UInt32OptionValueOutOfRange | |||
) |
Definition at line 5339 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UInt64OptionValueIsNotPositiveInt | |||
) |
Definition at line 5371 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UndefinedExtendee | |||
) |
Definition at line 4483 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UndefinedFieldType | |||
) |
Definition at line 4545 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UndefinedFieldTypeWithDefault | |||
) |
Definition at line 4556 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UndefinedNestedFieldType | |||
) |
Definition at line 4572 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UnknownDependency | |||
) |
Definition at line 3784 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UnknownOption | |||
) |
Definition at line 5224 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UnusedImportWarning | |||
) |
Definition at line 5754 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
UnusedImportWithOtherError | |||
) |
Definition at line 6774 of file protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ValidateProto3DefaultValue | |||
) |
Definition at line 6295 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ValidateProto3Enum | |||
) |
Definition at line 6361 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ValidateProto3EnumFromProto2 | |||
) |
Definition at line 6412 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ValidateProto3Extension | |||
) |
Definition at line 6438 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ValidateProto3ExtensionRange | |||
) |
Definition at line 6322 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ValidateProto3Group | |||
) |
Definition at line 6395 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ValidateProto3JsonName | |||
) |
Definition at line 6479 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_F | ( | ValidationErrorTest | , |
ValidateProto3MessageSetWireFormat | |||
) |
Definition at line 6349 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_P | ( | AllowUnknownDependenciesTest | , |
CopyTo | |||
) |
Definition at line 2791 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_P | ( | AllowUnknownDependenciesTest | , |
CustomOption | |||
) |
Definition at line 2847 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_P | ( | AllowUnknownDependenciesTest | , |
CustomOptions | |||
) |
Definition at line 2814 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_P | ( | AllowUnknownDependenciesTest | , |
PlaceholderFile | |||
) |
Definition at line 2746 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_P | ( | AllowUnknownDependenciesTest | , |
PlaceholderTypes | |||
) |
Definition at line 2767 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_P | ( | AllowUnknownDependenciesTest | , |
UndeclaredDependencyTriggersBuildOfDependency | |||
) |
Definition at line 2900 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
google::protobuf::descriptor_unittest::TEST_P | ( | AllowUnknownDependenciesTest | , |
UnknownExtendee | |||
) |
Definition at line 2823 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
Definition at line 7634 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.
Definition at line 7050 of file bloaty/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc.