HomeSort by relevance Sort by last modified time
    Searched refs:numProps (Results 1 - 25 of 35) sorted by null

1 2

  /external/lzma/CPP/7zip/Compress/
Lzma2Encoder.h 27 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
LzmaEncoder.h 28 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
DeltaFilter.cpp 30 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
59 STDMETHODIMP CDeltaEncoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps)
62 for (UInt32 i = 0; i < numProps; i++)
PpmdEncoder.h 49 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
Lzma2Encoder.cpp 59 const PROPVARIANT *coderProps, UInt32 numProps)
64 for (UInt32 i = 0; i < numProps; i++)
LzmaEncoder.cpp 115 const PROPVARIANT *coderProps, UInt32 numProps)
120 for (UInt32 i = 0; i < numProps; i++)
PpmdEncoder.cpp 60 STDMETHODIMP CEncoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *coderProps, UInt32 numProps)
64 for (UInt32 i = 0; i < numProps; i++)
  /external/lzma/CPP/Common/
CrcReg.cpp 46 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
91 const PROPVARIANT *coderProps, UInt32 numProps)
93 for (UInt32 i = 0; i < numProps; i++)
  /external/lzma/CPP/7zip/Archive/
IArchive.h 202 STDMETHOD(GetNumberOfProperties)(UInt32 *numProps) MY_NO_THROW_DECL_ONLY x; \
204 STDMETHOD(GetNumberOfArchiveProperties)(UInt32 *numProps) MY_NO_THROW_DECL_ONLY x; \
247 STDMETHOD(GetNumRawProps)(UInt32 *numProps) x; \
385 STDMETHOD(SetProperties)(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps) PURE;
417 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps) \
418 { *numProps = ARRAY_SIZE(kProps); return S_OK; } \
422 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps) \
423 { *numProps = ARRAY_SIZE(kProps); return S_OK; } \
428 STDMETHODIMP CHandler::GetNumberOfArchiveProperties(UInt32 *numProps) \
429 { *numProps = ARRAY_SIZE(kArcProps); return S_OK; } \
    [all...]
XzHandler.cpp 174 STDMETHOD(SetProperties)(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps);
937 STDMETHODIMP CHandler::SetProperties(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps)
941 for (UInt32 i = 0; i < numProps; i++)
  /external/lzma/CPP/7zip/Archive/Common/
HandlerOut.h 60 HRESULT SetProperties(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps);
HandlerOut.cpp 111 HRESULT CSingleMethodProps::SetProperties(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps)
114 for (UInt32 i = 0; i < numProps; i++)
  /external/lzma/CPP/7zip/Crypto/
MyAes.h 36 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
MyAes.cpp 96 STDMETHODIMP CAesCbcCoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *coderProps, UInt32 numProps)
98 for (UInt32 i = 0; i < numProps; i++)
  /external/lzma/CPP/7zip/Archive/7z/
7zProperties.cpp 150 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps)
152 *numProps = _fileInfoPopIDs.Size();
7zHandler.cpp 56 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps)
58 *numProps = 0;
290 STDMETHODIMP CHandler::GetNumRawProps(UInt32 *numProps)
292 *numProps = 0;
718 STDMETHODIMP CHandler::SetProperties(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps)
724 for (UInt32 i = 0; i < numProps; i++)
7zHandler.h 120 STDMETHOD(SetProperties)(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps);
7zHandlerOut.cpp 795 STDMETHODIMP CHandler::SetProperties(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps)
801 for (UInt32 i = 0; i < numProps; i++)
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 415 UInt32 numProps;
416 RINOK(archive->GetNumberOfProperties(&numProps));
417 for (UInt32 i = 0; i < numProps; i++)
430 UInt32 numProps;
431 RINOK(getRawProps->GetNumRawProps(&numProps));
432 for (UInt32 i = 0; i < numProps; i++)
1035 UInt32 numProps;
1036 RINOK(archive->GetNumberOfArchiveProperties(&numProps));
1038 for (UInt32 j = 0; j < numProps; j++)
1049 UInt32 numProps;
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 479 unsigned numProps = kNumPropsMax;
481 numProps--;
483 if (encoderSpec->SetCoderProperties(propIDs, props, numProps) != S_OK)
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.cpp 135 STDMETHODIMP CArchiveUpdateCallback::GetNumRawProps(UInt32 *numProps)
137 *numProps = 0;
139 *numProps = 1;
  /external/icu/icu4c/source/test/intltest/
intltest.cpp 561 numProps = 0;
577 numProps = caller->numProps;
578 for (int32_t i = 0; i < numProps; i++) {
    [all...]
intltest.h 357 int32_t numProps;
  /external/lzma/CPP/7zip/
ICoder.h 55 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps) PURE;
  /external/owasp/sanitizer/empiricism/
html-containment.js 174 var numProps = 0;
179 || ++numProps > inlinePropLimit) {

Completed in 279 milliseconds

1 2