4 writes to _fullName
Microsoft.CodeAnalysis (4)
MetadataReader\MetadataTypeName.cs (4)
103name._fullName = fullName; 135name._fullName = null; 163name._fullName = typeName; 190_fullName = MetadataHelpers.BuildQualifiedName(_namespaceName, _typeName);
12 references to _fullName
Microsoft.CodeAnalysis (12)
MetadataReader\MetadataTypeName.cs (10)
36/// the copy of the portion of <see cref="_fullName"/> used for <see cref="_namespaceName"/>. 47/// the copy of the portion of <see cref="_fullName"/> used for <see cref="_typeName"/>. 88/// avoid the copies of the portions of <see cref="_fullName"/> used for <see cref="_namespaceSegments"/>. 186if (_fullName == null) 193return _fullName; 204Debug.Assert(_fullName != null); 205_typeNameMemory = MetadataHelpers.SplitQualifiedName(_fullName, out _namespaceNameMemory); 224Debug.Assert(_fullName != null); 225_typeNameMemory = MetadataHelpers.SplitQualifiedName(_fullName, out _namespaceNameMemory); 361return _typeName == null && _fullName == null;
MetadataReader\MetadataTypeName.Key.cs (2)
39if (mdTypeName._fullName != null) 41_namespaceOrFullyQualifiedName = mdTypeName._fullName;