6 instantiations of ChildDocumentBlock
PresentationFramework (6)
System\Windows\Documents\DocumentSequence.cs (2)
369
ChildDocumentBlock childBlock = new
ChildDocumentBlock
(this.TextContainer, docRef);
1143
ChildDocumentBlock childBlock = new
ChildDocumentBlock
(_fixedDocumentSequence.TextContainer,
System\Windows\Documents\DocumentSequenceTextContainer.cs (4)
500
_doclistHead = new
ChildDocumentBlock
(this, new NullTextContainer());
503
_doclistTail = new
ChildDocumentBlock
(this, new NullTextContainer());
512
currentBlock.InsertNextBlock(new
ChildDocumentBlock
(this, docRef));
608
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)
369
ChildDocumentBlock
childBlock = new ChildDocumentBlock(this.TextContainer, docRef);
1143
ChildDocumentBlock
childBlock = new ChildDocumentBlock(_fixedDocumentSequence.TextContainer,
System\Windows\Documents\DocumentSequenceTextContainer.cs (14)
173
ChildDocumentBlock
cdb = this._doclistHead;
364
ChildDocumentBlock
cdb = this._doclistHead;
379
internal
ChildDocumentBlock
FindChildBlock(DocumentReference docRef)
382
ChildDocumentBlock
cdb = _doclistHead.NextBlock;
399
internal int GetChildBlockDistance(
ChildDocumentBlock
block1,
ChildDocumentBlock
block2)
411
ChildDocumentBlock
cdb = block1;
509
ChildDocumentBlock
currentBlock = _doclistHead;
608
ChildDocumentBlock
newBlock = new ChildDocumentBlock(this, (DocumentReference)item);
610
ChildDocumentBlock
insertAfter = _doclistTail.PreviousBlock;
713
ChildDocumentBlock
cdbScan = null;
720
ChildDocumentBlock
lastBlock;
795
private
ChildDocumentBlock
_doclistHead; // Head of the doubly linked list of child TextContainer entries
796
private
ChildDocumentBlock
_doclistTail; // Tail of the doubly linked list of child TextContainer entries
System\Windows\Documents\DocumentSequenceTextPointer.cs (9)
28
internal DocumentSequenceTextPointer(
ChildDocumentBlock
childBlock, ITextPointer childPosition)
536
internal
ChildDocumentBlock
ChildBlock
872
ChildDocumentBlock
block = thisTp.ChildBlock;
939
ChildDocumentBlock
thisBlock = thisTp.ChildBlock;
940
ChildDocumentBlock
tpBlock = tp.ChildBlock;
970
ChildDocumentBlock
block = tp1.ChildBlock.NextBlock;
1003
ChildDocumentBlock
nextBlock = tpScan.ChildBlock.NextBlock;
1021
ChildDocumentBlock
cdb = thisTp.ChildBlock;
1111
private
ChildDocumentBlock
_childBlock;
System\Windows\Documents\DocumentSequenceTextView.cs (2)
589
private
ChildDocumentBlock
ChildBlock
621
private
ChildDocumentBlock
_childBlock;
System\Windows\Documents\FixedFindEngine.cs (1)
145
ChildDocumentBlock
childBlock = documentSequence.TextContainer.FindChildBlock(fixedDoc.DocumentReference);