Lines Matching refs:prop
10 HRESULT ParsePropValue(const UString &name, const PROPVARIANT &prop, UInt32 &resValue) in ParsePropValue() argument
12 if (prop.vt == VT_UI4) in ParsePropValue()
16 resValue = prop.ulVal; in ParsePropValue()
18 else if (prop.vt == VT_EMPTY) in ParsePropValue()
81 HRESULT ParsePropDictionaryValue(const UString &name, const PROPVARIANT &prop, UInt32 &resValue) in ParsePropDictionaryValue() argument
85 if (prop.vt == VT_UI4) in ParsePropDictionaryValue()
87 UInt32 logDicSize = prop.ulVal; in ParsePropDictionaryValue()
93 if (prop.vt == VT_BSTR) in ParsePropDictionaryValue()
94 return ParsePropDictionaryValue(prop.bstrVal, resValue); in ParsePropDictionaryValue()
150 HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32 defaultNumThreads, UInt32 … in ParseMtProp() argument
154 switch(prop.vt) in ParseMtProp()
157 numThreads = prop.ulVal; in ParseMtProp()
162 RINOK(SetBoolProperty(val, prop)); in ParseMtProp()