3 instantiations of CanonicalFontFamilyReference
PresentationCore (3)
Core\CSharp\MS\Internal\FontCache\CanonicalFontFamilyReference.cs (3)
73
return new
CanonicalFontFamilyReference
(fileName, unescapeFamilyName);
77
return new
CanonicalFontFamilyReference
(absoluteUri, unescapeFamilyName);
207
private static readonly CanonicalFontFamilyReference _unresolved = new
CanonicalFontFamilyReference
((Uri)null, string.Empty);
26 references to CanonicalFontFamilyReference
PresentationCore (26)
Core\CSharp\MS\Internal\FontCache\CanonicalFontFamilyReference.cs (5)
37
public static
CanonicalFontFamilyReference
Create(Uri baseUri, string normalizedString)
89
public static
CanonicalFontFamilyReference
Unresolved
128
public bool Equals(
CanonicalFontFamilyReference
other)
138
return Equals(obj as
CanonicalFontFamilyReference
);
207
private static readonly
CanonicalFontFamilyReference
_unresolved = new CanonicalFontFamilyReference((Uri)null, string.Empty);
Core\CSharp\MS\Internal\FontFace\FontFamilyIdentifier.cs (13)
118
_canonicalReferences = new
CanonicalFontFamilyReference
[_tokenCount];
121
foreach (
CanonicalFontFamilyReference
family in first._canonicalReferences)
125
foreach (
CanonicalFontFamilyReference
family in second._canonicalReferences)
179
foreach (
CanonicalFontFamilyReference
family in _canonicalReferences)
202
internal
CanonicalFontFamilyReference
this[int tokenIndex]
253
CanonicalFontFamilyReference
[] canonicalReferences = TypefaceMetricsCache.ReadonlyLookup(hashKey) as
CanonicalFontFamilyReference
[];
258
canonicalReferences = new
CanonicalFontFamilyReference
[count];
368
private
CanonicalFontFamilyReference
GetCanonicalReference(int startIndex, int length)
377
CanonicalFontFamilyReference
canonicalReference = TypefaceMetricsCache.ReadonlyLookup(hashKey) as
CanonicalFontFamilyReference
;
383
canonicalReference =
CanonicalFontFamilyReference
.Create(_baseUri, normalizedString);
486
private
CanonicalFontFamilyReference
[] _canonicalReferences;
Core\CSharp\MS\Internal\Shaping\TypefaceMap.cs (2)
502
CanonicalFontFamilyReference
canonicalFamilyReference,
902
CanonicalFontFamilyReference
canonicalFamilyReference = null;
Core\CSharp\System\Windows\Media\FontFamily.cs (6)
66
internal static readonly
CanonicalFontFamilyReference
NullFontFamilyCanonicalName =
CanonicalFontFamilyReference
.Create(null, "#ARIAL");
414
CanonicalFontFamilyReference
canonicalName,
437
internal static IFontFamily LookupFontFamily(
CanonicalFontFamilyReference
canonicalName)
518
CanonicalFontFamilyReference
canonicalFamilyReference,
524
if (canonicalFamilyReference == null || object.ReferenceEquals(canonicalFamilyReference,
CanonicalFontFamilyReference
.Unresolved))