コード例 #1
0
 private void Reset()
 {
     this.currentIndex = -1;
     this.currentInfo  = s_DefaultInfo;
     this.mainNode     = s_DefaultInfo;
     this.manager      = null;
 }
コード例 #2
0
ファイル: RecordBuilder.cs プロジェクト: uQr/referencesource
 internal RecordBuilder(RecordOutput output, XmlNameTable nameTable) {
     Debug.Assert(output != null);
     this.output    = output;
     this.nameTable = nameTable != null ? nameTable : new NameTable();
     this.atoms     = new OutKeywords(this.nameTable);
     this.scopeManager   = new OutputScopeManager(this.nameTable, this.atoms);
 }
コード例 #3
0
 private void Reset()
 {
     _currentIndex = -1;
     _currentInfo  = s_DefaultInfo;
     _mainNode     = s_DefaultInfo;
     _manager      = null;
 }
コード例 #4
0
 internal RecordBuilder(IRecordOutput output, XmlNameTable?nameTable)
 {
     Debug.Assert(output != null);
     _output       = output;
     _nameTable    = nameTable != null ? nameTable : new NameTable();
     _atoms        = new OutKeywords(_nameTable);
     _scopeManager = new OutputScopeManager(_nameTable, _atoms);
 }
コード例 #5
0
ファイル: RecordBuilder.cs プロジェクト: dox0/DotNet471RS3
 internal RecordBuilder(RecordOutput output, XmlNameTable nameTable)
 {
     Debug.Assert(output != null);
     this.output       = output;
     this.nameTable    = nameTable != null ? nameTable : new NameTable();
     this.atoms        = new OutKeywords(this.nameTable);
     this.scopeManager = new OutputScopeManager(this.nameTable, this.atoms);
 }
コード例 #6
0
ファイル: RecordBuilder.cs プロジェクト: Corillian/corefx
 internal RecordBuilder(RecordOutput output, XmlNameTable nameTable)
 {
     Debug.Assert(output != null);
     _output = output;
     _nameTable = nameTable != null ? nameTable : new NameTable();
     _atoms = new OutKeywords(_nameTable);
     _scopeManager = new OutputScopeManager(_nameTable, _atoms);
 }
コード例 #7
0
        //
        // RecordOutput interface method implementation
        //

        public Processor.OutputResult RecordDone(RecordBuilder record)
        {
            this.builder        = record;
            this.mainNode       = record.MainNode;
            this.attributeList  = record.AttributeList;
            this.attributeCount = record.AttributeCount;
            this.manager        = record.Manager;

            this.haveRecord = true;
            SetMainNode();

            return(Processor.OutputResult.Interrupt);
        }
コード例 #8
0
 private void Reset() {
     this.currentIndex = -1;
     this.currentInfo  = s_DefaultInfo;
     this.mainNode     = s_DefaultInfo;
     this.manager      = null;
 }
コード例 #9
0
        //
        // RecordOutput interface method implementation
        //

        public Processor.OutputResult RecordDone(RecordBuilder record) {
            this.builder        = record;
            this.mainNode       = record.MainNode;
            this.attributeList  = record.AttributeList;
            this.attributeCount = record.AttributeCount;
            this.manager        = record.Manager;

            this.haveRecord     = true;
            SetMainNode();

            return Processor.OutputResult.Interrupt;
        }
コード例 #10
0
ファイル: ReaderOutput.cs プロジェクト: Corillian/corefx
 private void Reset()
 {
     _currentIndex = -1;
     _currentInfo = s_DefaultInfo;
     _mainNode = s_DefaultInfo;
     _manager = null;
 }