Lines Matching refs:index

318 Z7_COM7F_IMF(CHandler::GetProperty(UInt32 index, PROPID propID, PROPVARIANT *value))

323 const CParseItem &item = _items[index];
330 ConvertUInt32ToString(index + 1, sz);
400 const UInt32 index = allFilesMode ? i : indices[i];
401 const CParseItem &item = _items[index];
403 RINOK(extractCallback->GetStream(index, &realOutStream, askMode))
432 Z7_COM7F_IMF(CHandler::GetStream(UInt32 index, ISequentialInStream **stream))
435 const CParseItem &item = _items[index];
444 HRESULT Archive_GetItemBoolProp(IInArchive *arc, UInt32 index, PROPID propID, bool &result) throw()
448 RINOK(arc->GetProperty(index, propID, &prop))
456 HRESULT Archive_IsItem_Dir(IInArchive *arc, UInt32 index, bool &result) throw()
458 return Archive_GetItemBoolProp(arc, index, kpidIsDir, result);
461 HRESULT Archive_IsItem_Aux(IInArchive *arc, UInt32 index, bool &result) throw()
463 return Archive_GetItemBoolProp(arc, index, kpidIsAux, result);
466 HRESULT Archive_IsItem_AltStream(IInArchive *arc, UInt32 index, bool &result) throw()
468 return Archive_GetItemBoolProp(arc, index, kpidIsAltStream, result);
471 HRESULT Archive_IsItem_Deleted(IInArchive *arc, UInt32 index, bool &result) throw()
473 return Archive_GetItemBoolProp(arc, index, kpidIsDeleted, result);
526 HRESULT CArc::GetItem_PathToParent(UInt32 index, UInt32 parent, UStringVector &parts) const
530 if (index == parent)
532 UInt32 curIndex = index;
610 HRESULT CArc::GetItem_Path(UInt32 index, UString &result) const
620 if (GetRawProps->GetRawProp(index, kpidPath, &p, &size, &propType) == S_OK &&
665 else if (GetRawProps->GetRawProp(index, kpidName, &p, &size, &propType) == S_OK &&
673 UInt32 index2 = index;
702 UInt32 index2 = index;
736 RINOK(Archive->GetProperty(index, kpidPath, &prop))
746 return GetItem_DefaultPath(index, result);
752 HRESULT CArc::GetItem_DefaultPath(UInt32 index, UString &result) const
756 RINOK(Archive_IsItem_Dir(Archive, index, isDir))
761 RINOK(Archive->GetProperty(index, kpidExtension, &prop))
773 HRESULT CArc::GetItem_Path2(UInt32 index, UString &result) const
775 RINOK(GetItem_Path(index, result))
779 RINOK(Archive_IsItem_Deleted(Archive, index, isDeleted))
810 HRESULT CArc::GetItem(UInt32 index, CReadArcItem &item) const
824 RINOK(Archive_IsItem_Dir(Archive, index, item.IsDir))
827 RINOK(GetItem_Path2(index, item.Path))
830 UInt32 mainIndex = index;
838 RINOK(Archive_IsItem_AltStream(Archive, index, item.IsAltStream))
850 RINOK(GetRawProps->GetParent(index, &parentIndex, &parentType))
854 RINOK(Archive->GetProperty(index, kpidName, &prop))
943 static HRESULT Archive_GetItem_Size(IInArchive *archive, UInt32 index, UInt64 &size, bool &defined)
948 RINOK(archive->GetProperty(index, kpidSize, &prop))
964 HRESULT CArc::GetItem_Size(UInt32 index, UInt64 &size, bool &defined) const
969 RINOK(Archive->GetProperty(index, kpidSize, &prop))
983 HRESULT CArc::GetItem_MTime(UInt32 index, CArcTime &at) const
987 RINOK(Archive->GetProperty(index, kpidMTime, &prop))
1005 RINOK(Archive->GetProperty(index, kpidTimeType, &prop))
1049 const int index = orderIndices[i];
1050 if (index < 0)
1052 const CArcInfoEx &ai = codecs->Formats[(unsigned)index];
1074 orderIndices2.Add(index);
1566 Z7_COM7F_IMF(CExtractCallback_To_OpenCallback::GetStream(UInt32 /* index */, ISequentialOutStream **outStream, Int32 /* askExtractMode */))
1841 // we move index from orderIndices to orderIndices2 for priority handlers.
1845 const int index = orderIndices[i];
1846 if (index < 0)
1848 const CArcInfoEx &ai = op.codecs->Formats[(unsigned)index];
1852 orderIndices2.Add(index);
2398 int index = orderIndices[i];
2399 if (index < 0)
2401 const CArcInfoEx &ai = op.codecs->Formats[(unsigned)index];
2427 unsigned sigIndex = arc2sig[(unsigned)index] + k;
2434 difficultFormats.Add((unsigned)index);
2435 difficultBools[(unsigned)index] = true;
2623 unsigned index;
2627 index = difficultFormats[indexOfDifficult++];
2634 index = sig2arc[i];
2635 unsigned sigIndex = i - arc2sig[index];
2637 if (needCheckStartOpen && difficultBools[index])
2639 const CArcInfoEx &ai = op.codecs->Formats[index];
2660 const CArcInfoEx &ai = op.codecs->Formats[index];
2666 if (skipFrontalFormat[index])
2706 const bool isMainFormat = isMainFormatArr[index];
2710 RINOK(PrepareToOpen(op, index, archive))
2759 ErrorInfo.ErrorFormatIndex = (int)index;
2949 FormatIndex = (int)index;
2963 pi.FormatIndex = (int)index;
3613 int index = codecs.FindFormatForArchiveType(name);
3616 if (index < 0)
3640 type.FormatIndex = index;