6 instantiations of ChildDocumentBlock
PresentationFramework (6)
System\Windows\Documents\DocumentSequence.cs (2)
385
ChildDocumentBlock childBlock = new
ChildDocumentBlock
(this.TextContainer, docRef);
1159
ChildDocumentBlock childBlock = new
ChildDocumentBlock
(_fixedDocumentSequence.TextContainer,
System\Windows\Documents\DocumentSequenceTextContainer.cs (4)
517
_doclistHead = new
ChildDocumentBlock
(this, new NullTextContainer());
520
_doclistTail = new
ChildDocumentBlock
(this, new NullTextContainer());
529
currentBlock.InsertNextBlock(new
ChildDocumentBlock
(this, docRef));
625
ChildDocumentBlock newBlock = new
ChildDocumentBlock
(this, (DocumentReference)item);
34 references to ChildDocumentBlock
PresentationFramework (34)
System\Windows\Documents\ChildDocumentBlock.cs (6)
73
internal
ChildDocumentBlock
InsertNextBlock(
ChildDocumentBlock
newBlock)
188
internal
ChildDocumentBlock
PreviousBlock
197
internal
ChildDocumentBlock
NextBlock
279
private
ChildDocumentBlock
_previousBlock; // Link to previous block
280
private
ChildDocumentBlock
_nextBlock; // Link to next block
System\Windows\Documents\DocumentSequence.cs (2)
385
ChildDocumentBlock
childBlock = new ChildDocumentBlock(this.TextContainer, docRef);
1159
ChildDocumentBlock
childBlock = new ChildDocumentBlock(_fixedDocumentSequence.TextContainer,
System\Windows\Documents\DocumentSequenceTextContainer.cs (14)
189
ChildDocumentBlock
cdb = this._doclistHead;
381
ChildDocumentBlock
cdb = this._doclistHead;
396
internal
ChildDocumentBlock
FindChildBlock(DocumentReference docRef)
399
ChildDocumentBlock
cdb = _doclistHead.NextBlock;
416
internal int GetChildBlockDistance(
ChildDocumentBlock
block1,
ChildDocumentBlock
block2)
428
ChildDocumentBlock
cdb = block1;
526
ChildDocumentBlock
currentBlock = _doclistHead;
625
ChildDocumentBlock
newBlock = new ChildDocumentBlock(this, (DocumentReference)item);
627
ChildDocumentBlock
insertAfter = _doclistTail.PreviousBlock;
730
ChildDocumentBlock
cdbScan = null;
737
ChildDocumentBlock
lastBlock;
812
private
ChildDocumentBlock
_doclistHead; // Head of the doubly linked list of child TextContainer entries
813
private
ChildDocumentBlock
_doclistTail; // Tail of the doubly linked list of child TextContainer entries
System\Windows\Documents\DocumentSequenceTextPointer.cs (9)
36
internal DocumentSequenceTextPointer(
ChildDocumentBlock
childBlock, ITextPointer childPosition)
545
internal
ChildDocumentBlock
ChildBlock
881
ChildDocumentBlock
block = thisTp.ChildBlock;
948
ChildDocumentBlock
thisBlock = thisTp.ChildBlock;
949
ChildDocumentBlock
tpBlock = tp.ChildBlock;
979
ChildDocumentBlock
block = tp1.ChildBlock.NextBlock;
1012
ChildDocumentBlock
nextBlock = tpScan.ChildBlock.NextBlock;
1030
ChildDocumentBlock
cdb = thisTp.ChildBlock;
1120
private
ChildDocumentBlock
_childBlock;
System\Windows\Documents\DocumentSequenceTextView.cs (2)
603
private
ChildDocumentBlock
ChildBlock
635
private
ChildDocumentBlock
_childBlock;
System\Windows\Documents\FixedFindEngine.cs (1)
150
ChildDocumentBlock
childBlock = documentSequence.TextContainer.FindChildBlock(fixedDoc.DocumentReference);