6 instantiations of ChildDocumentBlock
PresentationFramework (6)
System\Windows\Documents\DocumentSequence.cs (2)
381
ChildDocumentBlock childBlock = new
ChildDocumentBlock
(this.TextContainer, docRef);
1155
ChildDocumentBlock childBlock = new
ChildDocumentBlock
(_fixedDocumentSequence.TextContainer,
System\Windows\Documents\DocumentSequenceTextContainer.cs (4)
509
_doclistHead = new
ChildDocumentBlock
(this, new NullTextContainer());
512
_doclistTail = new
ChildDocumentBlock
(this, new NullTextContainer());
521
currentBlock.InsertNextBlock(new
ChildDocumentBlock
(this, docRef));
617
ChildDocumentBlock newBlock = new
ChildDocumentBlock
(this, (DocumentReference)item);
34 references to ChildDocumentBlock
PresentationFramework (34)
System\Windows\Documents\ChildDocumentBlock.cs (6)
70
internal
ChildDocumentBlock
InsertNextBlock(
ChildDocumentBlock
newBlock)
185
internal
ChildDocumentBlock
PreviousBlock
194
internal
ChildDocumentBlock
NextBlock
276
private
ChildDocumentBlock
_previousBlock; // Link to previous block
277
private
ChildDocumentBlock
_nextBlock; // Link to next block
System\Windows\Documents\DocumentSequence.cs (2)
381
ChildDocumentBlock
childBlock = new ChildDocumentBlock(this.TextContainer, docRef);
1155
ChildDocumentBlock
childBlock = new ChildDocumentBlock(_fixedDocumentSequence.TextContainer,
System\Windows\Documents\DocumentSequenceTextContainer.cs (14)
181
ChildDocumentBlock
cdb = this._doclistHead;
373
ChildDocumentBlock
cdb = this._doclistHead;
388
internal
ChildDocumentBlock
FindChildBlock(DocumentReference docRef)
391
ChildDocumentBlock
cdb = _doclistHead.NextBlock;
408
internal int GetChildBlockDistance(
ChildDocumentBlock
block1,
ChildDocumentBlock
block2)
420
ChildDocumentBlock
cdb = block1;
518
ChildDocumentBlock
currentBlock = _doclistHead;
617
ChildDocumentBlock
newBlock = new ChildDocumentBlock(this, (DocumentReference)item);
619
ChildDocumentBlock
insertAfter = _doclistTail.PreviousBlock;
722
ChildDocumentBlock
cdbScan = null;
729
ChildDocumentBlock
lastBlock;
804
private
ChildDocumentBlock
_doclistHead; // Head of the doubly linked list of child TextContainer entries
805
private
ChildDocumentBlock
_doclistTail; // Tail of the doubly linked list of child TextContainer entries
System\Windows\Documents\DocumentSequenceTextPointer.cs (9)
30
internal DocumentSequenceTextPointer(
ChildDocumentBlock
childBlock, ITextPointer childPosition)
539
internal
ChildDocumentBlock
ChildBlock
875
ChildDocumentBlock
block = thisTp.ChildBlock;
942
ChildDocumentBlock
thisBlock = thisTp.ChildBlock;
943
ChildDocumentBlock
tpBlock = tp.ChildBlock;
973
ChildDocumentBlock
block = tp1.ChildBlock.NextBlock;
1006
ChildDocumentBlock
nextBlock = tpScan.ChildBlock.NextBlock;
1024
ChildDocumentBlock
cdb = thisTp.ChildBlock;
1114
private
ChildDocumentBlock
_childBlock;
System\Windows\Documents\DocumentSequenceTextView.cs (2)
595
private
ChildDocumentBlock
ChildBlock
627
private
ChildDocumentBlock
_childBlock;
System\Windows\Documents\FixedFindEngine.cs (1)
148
ChildDocumentBlock
childBlock = documentSequence.TextContainer.FindChildBlock(fixedDoc.DocumentReference);