Home | History | Annotate | Download | only in 7z

Lines Matching refs:Defined

102   CRecordVector<bool> Defined;

107 Defined.Clear();
118 if (index < Defined.Size() && Defined[index])
127 void SetItem(int index, bool defined, UInt64 value)
129 while (index >= Defined.Size())
130 Defined.Add(false);
131 Defined[index] = defined;
132 if (!defined)
139 bool CheckSize(int size) const { return Defined.Size() == size || Defined.Size() == 0; }