Home | History | Annotate | Download | only in Common

Lines Matching refs:prop

10 HRESULT ParsePropValue(const UString &name, const PROPVARIANT &prop, UInt32 &resValue)

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