Lines Matching full:props
32 CObjectVector<CProp> Props; member
34 void Clear() { Props.Clear(); } in Clear()
38 FOR_VECTOR (i, Props) in AreThereNonOptionalProps()
39 if (!Props[i].IsOptional) in AreThereNonOptionalProps()
50 CProp &prop = Props.AddNew(); in AddProp_Ascii()
68 if (Props[i].Value.vt == VT_UI4) in Get_NumThreads()
69 return (int)Props[i].Value.ulVal; in Get_NumThreads()
78 if (Props[i].Value.vt == VT_UI4) in Get_DicSize()
80 res = Props[i].Value.ulVal; in Get_DicSize()
92 if (Props[i].Value.vt == VT_UI4) in Get_Lzma_Algo()
93 return Props[i].Value.ulVal; in Get_Lzma_Algo()
101 if (Props[i].Value.vt == VT_UI4) in Get_Lzma_DicSize()
102 return Props[i].Value.ulVal; in Get_Lzma_DicSize()
112 const NWindows::NCOM::CPropVariant &val = Props[i].Value; in Get_Lzma_Eos()
153 const NWindows::NCOM::CPropVariant &val = Props[i].Value; in GetProp_BlockSize()
204 if (Props[i].Value.vt == VT_UI4) in Get_BZip2_BlockSize()
206 UInt32 blockSize = Props[i].Value.ulVal; in Get_BZip2_BlockSize()
221 if (Props[i].Value.vt == VT_UI4) in Get_Ppmd_MemSize()
222 return Props[i].Value.ulVal; in Get_Ppmd_MemSize()
259 bool IsEmpty() const { return MethodName.IsEmpty() && Props.IsEmpty(); } in IsEmpty()