4 instantiations of ContentLocator
PresentationFramework (4)
src\Framework\MS\Internal\Annotations\Anchoring\DataIdProcessor.cs (1)
184locator = new ContentLocator();
src\Framework\MS\Internal\Annotations\Anchoring\FixedPageProcessor.cs (1)
150locator = new ContentLocator();
src\Framework\System\Windows\Annotations\AnnotationHelper.cs (1)
754ContentLocator locator = new ContentLocator();
src\Framework\System\Windows\Annotations\LocatorPartList.cs (1)
136ContentLocator clone = new ContentLocator();
69 references to ContentLocator
PresentationFramework (69)
src\Framework\MS\Internal\Annotations\Anchoring\DataIdProcessor.cs (2)
173public override ContentLocator GenerateLocator(PathNode node, out bool continueGenerating) 180ContentLocator locator = null;
src\Framework\MS\Internal\Annotations\Anchoring\FixedPageProcessor.cs (2)
118public override ContentLocator GenerateLocator(PathNode node, out bool continueGenerating) 126ContentLocator locator = null;
src\Framework\MS\Internal\Annotations\Anchoring\LocatorManager.cs (24)
322ContentLocator[] lists = new ContentLocator[locators.Count]; 327foreach (ContentLocator locator in locators) 437ContentLocator realLocator = locator as ContentLocator; 566internal Object FindAttachedAnchor(DependencyObject startNode, ContentLocator[] prefixes, ContentLocatorBase locator, out AttachmentLevel attachmentLevel) 585ContentLocator realLocator = locator as ContentLocator; 629private int FindMatchingPrefix(ContentLocator[] prefixes, ContentLocatorBase locator, out bool matched) 633ContentLocator realLocator = locator as ContentLocator; 640foreach (ContentLocator prefix in prefixes) 691ContentLocator list = processor.GenerateLocator(startNode, out continueProcessing); 770tempLocators.AddRange(((ContentLocator)loc).DotProduct(locatorParts)); // 815ContentLocator locator = tempLocators[0] as ContentLocator; 841ContentLocator list = ContentLocatorGroup.Locators[0]; 936ContentLocator realLocator = locator as ContentLocator; 959IList<ContentLocator> locators = null; 968locators = new List <ContentLocator> (1); 1070private ResolvingLocatorState ResolveSingleLocator(ref object selection, ref AttachmentLevel attachmentLevel, AttachmentLevel attemptedLevel, ContentLocator locator, int offset, DependencyObject startNode, bool skipStartNode) 1135ContentLocator locator = data.ContentLocatorBase; 1366public ContentLocator ContentLocatorBase;
src\Framework\MS\Internal\Annotations\Anchoring\SubTreeProcessor.cs (1)
133public abstract ContentLocator GenerateLocator(PathNode node, out bool continueGenerating);
src\Framework\MS\Internal\Annotations\Storage\StoreAnnotationsMap.cs (4)
118public Dictionary<Guid, Annotation> FindAnnotations(ContentLocator anchorLocator) 139ContentLocator ContentLocator = locator as ContentLocator; 152foreach(ContentLocator list in ContentLocatorGroup.Locators)
src\Framework\System\Windows\Annotations\AnnotationDocumentPaginator.cs (3)
384ContentLocator[] lists = new ContentLocator[locators.Count]; 389foreach (ContentLocator locator in locators)
src\Framework\System\Windows\Annotations\AnnotationHelper.cs (3)
715ContentLocator locator = locators[0] as ContentLocator; 754ContentLocator locator = new ContentLocator();
src\Framework\System\Windows\Annotations\AnnotationResource.cs (1)
375s_ListSerializer = new Serializer(typeof(ContentLocator));
src\Framework\System\Windows\Annotations\LocatorGroup.cs (16)
62_locators = new AnnotationObservableCollection<ContentLocator>(); 85foreach (ContentLocator loc in _locators) 87clone.Locators.Add((ContentLocator)loc.Clone()); 161ContentLocator locator = (ContentLocator)AnnotationResource.ListSerializer.Deserialize(reader); 203public Collection<ContentLocator> Locators 236ContentLocator firstRight = null; 241foreach (ContentLocator left in this.Locators) 243foreach (ContentLocator right in locatorGroup.Locators) 251ContentLocator clone = (ContentLocator)left.Clone(); 263foreach (ContentLocator list in tempList) 270ContentLocator otherLoc = other as ContentLocator; 273foreach(ContentLocator loc in this.Locators) 331private AnnotationObservableCollection<ContentLocator> _locators;
src\Framework\System\Windows\Annotations\LocatorPartList.cs (10)
92public bool StartsWith(ContentLocator locator) 136ContentLocator clone = new ContentLocator(); 402ContentLocator loc = (ContentLocator)this.Clone(); 433ContentLocator temp = null; 437foreach (ContentLocator loc in locatorGroup.Locators) 445ContentLocator clone = (ContentLocator)this.Clone(); 467this.Append((ContentLocator)other); 477internal void Append(ContentLocator other)
src\Framework\System\Windows\Annotations\Storage\AnnotationStore.cs (1)
99public abstract IList<Annotation> GetAnnotations(ContentLocator anchorLocator);
src\Framework\System\Windows\Annotations\Storage\XmlStreamStore.cs (2)
254public override IList<Annotation> GetAnnotations(ContentLocator anchorLocator) 713private IList<Annotation> InternalGetAnnotations(string query, ContentLocator anchorLocator)