18 references to FormCompoundType
System.Private.CoreLib (18)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\EnumBuilder.cs (4)
48return SymbolType.FormCompoundType("*", this, 0)!; 53return SymbolType.FormCompoundType("&", this, 0)!; 59return SymbolType.FormCompoundType("[]", this, 0)!; 66return SymbolType.FormCompoundType(s, this, 0)!;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (6)
197return FormCompoundType(format, symbolType, curIndex); 206return FormCompoundType(format, symbolType, curIndex); 268return FormCompoundType(_format + "*", _baseType, 0)!; 273return FormCompoundType(_format + "&", _baseType, 0)!; 279return FormCompoundType(_format + "[]", _baseType, 0)!; 286SymbolType? st = FormCompoundType(_format + s, _baseType, 0) as SymbolType;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilder.cs (4)
298return SymbolType.FormCompoundType("*", this, 0)!; 303return SymbolType.FormCompoundType("&", this, 0)!; 309return SymbolType.FormCompoundType("[]", this, 0)!; 316return SymbolType.FormCompoundType(s, this, 0)!;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (4)
78return SymbolType.FormCompoundType("*", this, 0)!; 82return SymbolType.FormCompoundType("&", this, 0)!; 86return SymbolType.FormCompoundType("[]", this, 0)!; 97return SymbolType.FormCompoundType(s, this, 0)!;