6 instantiations of ChildDocumentBlock
PresentationFramework (6)
System\Windows\Documents\DocumentSequence.cs (2)
368
ChildDocumentBlock childBlock = new
ChildDocumentBlock
(this.TextContainer, docRef);
1142
ChildDocumentBlock childBlock = new
ChildDocumentBlock
(_fixedDocumentSequence.TextContainer,
System\Windows\Documents\DocumentSequenceTextContainer.cs (4)
499
_doclistHead = new
ChildDocumentBlock
(this, new NullTextContainer());
502
_doclistTail = new
ChildDocumentBlock
(this, new NullTextContainer());
511
currentBlock.InsertNextBlock(new
ChildDocumentBlock
(this, docRef));
607
ChildDocumentBlock newBlock = new
ChildDocumentBlock
(this, (DocumentReference)item);
34 references to ChildDocumentBlock
PresentationFramework (34)
System\Windows\Documents\ChildDocumentBlock.cs (6)
69
internal
ChildDocumentBlock
InsertNextBlock(
ChildDocumentBlock
newBlock)
184
internal
ChildDocumentBlock
PreviousBlock
193
internal
ChildDocumentBlock
NextBlock
275
private
ChildDocumentBlock
_previousBlock; // Link to previous block
276
private
ChildDocumentBlock
_nextBlock; // Link to next block
System\Windows\Documents\DocumentSequence.cs (2)
368
ChildDocumentBlock
childBlock = new ChildDocumentBlock(this.TextContainer, docRef);
1142
ChildDocumentBlock
childBlock = new ChildDocumentBlock(_fixedDocumentSequence.TextContainer,
System\Windows\Documents\DocumentSequenceTextContainer.cs (14)
172
ChildDocumentBlock
cdb = this._doclistHead;
363
ChildDocumentBlock
cdb = this._doclistHead;
378
internal
ChildDocumentBlock
FindChildBlock(DocumentReference docRef)
381
ChildDocumentBlock
cdb = _doclistHead.NextBlock;
398
internal int GetChildBlockDistance(
ChildDocumentBlock
block1,
ChildDocumentBlock
block2)
410
ChildDocumentBlock
cdb = block1;
508
ChildDocumentBlock
currentBlock = _doclistHead;
607
ChildDocumentBlock
newBlock = new ChildDocumentBlock(this, (DocumentReference)item);
609
ChildDocumentBlock
insertAfter = _doclistTail.PreviousBlock;
712
ChildDocumentBlock
cdbScan = null;
719
ChildDocumentBlock
lastBlock;
794
private
ChildDocumentBlock
_doclistHead; // Head of the doubly linked list of child TextContainer entries
795
private
ChildDocumentBlock
_doclistTail; // Tail of the doubly linked list of child TextContainer entries
System\Windows\Documents\DocumentSequenceTextPointer.cs (9)
27
internal DocumentSequenceTextPointer(
ChildDocumentBlock
childBlock, ITextPointer childPosition)
535
internal
ChildDocumentBlock
ChildBlock
871
ChildDocumentBlock
block = thisTp.ChildBlock;
938
ChildDocumentBlock
thisBlock = thisTp.ChildBlock;
939
ChildDocumentBlock
tpBlock = tp.ChildBlock;
969
ChildDocumentBlock
block = tp1.ChildBlock.NextBlock;
1002
ChildDocumentBlock
nextBlock = tpScan.ChildBlock.NextBlock;
1020
ChildDocumentBlock
cdb = thisTp.ChildBlock;
1110
private
ChildDocumentBlock
_childBlock;
System\Windows\Documents\DocumentSequenceTextView.cs (2)
588
private
ChildDocumentBlock
ChildBlock
620
private
ChildDocumentBlock
_childBlock;
System\Windows\Documents\FixedFindEngine.cs (1)
144
ChildDocumentBlock
childBlock = documentSequence.TextContainer.FindChildBlock(fixedDoc.DocumentReference);