/external/lzma/CPP/7zip/Archive/ |
D | IArchive.h | 272 STDMETHOD(GetNumberOfProperties)(UInt32 *numProps) MY_NO_THROW_DECL_ONLY x; \ 274 STDMETHOD(GetNumberOfArchiveProperties)(UInt32 *numProps) MY_NO_THROW_DECL_ONLY x; \ 319 STDMETHOD(GetNumRawProps)(UInt32 *numProps) x; \ 503 …STDMETHOD(SetProperties)(const wchar_t * const *names, const PROPVARIANT *values, UInt32 numProps)… 549 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps) \ 550 { *numProps = ARRAY_SIZE(kProps); return S_OK; } \ 554 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps) \ 555 { *numProps = ARRAY_SIZE(kProps); return S_OK; } \ 560 STDMETHODIMP CHandler::GetNumberOfArchiveProperties(UInt32 *numProps) \ 561 { *numProps = ARRAY_SIZE(kArcProps); return S_OK; } \ [all …]
|
/external/lzma/CPP/7zip/Compress/ |
D | Lzma2Encoder.cpp | 61 const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderProperties() argument 66 for (UInt32 i = 0; i < numProps; i++) in SetCoderProperties() 75 const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderPropertiesOpt() argument 77 for (UInt32 i = 0; i < numProps; i++) in SetCoderPropertiesOpt()
|
D | LzmaEncoder.cpp | 111 const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderProperties() argument 116 for (UInt32 i = 0; i < numProps; i++) in SetCoderProperties() 133 const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderPropertiesOpt() argument 135 for (UInt32 i = 0; i < numProps; i++) in SetCoderPropertiesOpt()
|
D | DeltaFilter.cpp | 38 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps); 54 …DIMP CEncoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps) in SetCoderProperties() argument 57 for (UInt32 i = 0; i < numProps; i++) in SetCoderProperties()
|
D | XzEncoder.cpp | 189 const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderProperties() argument 193 for (UInt32 i = 0; i < numProps; i++) in SetCoderProperties() 204 const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderPropertiesOpt() argument 206 for (UInt32 i = 0; i < numProps; i++) in SetCoderPropertiesOpt()
|
D | Lzma2Encoder.h | 32 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps); 34 …STDMETHOD(SetCoderPropertiesOpt)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
|
D | XzEncoder.h | 37 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps); 38 …STDMETHOD(SetCoderPropertiesOpt)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
|
D | LzmaEncoder.h | 33 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps); 35 …STDMETHOD(SetCoderPropertiesOpt)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
|
D | PpmdEncoder.cpp | 56 …CEncoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderProperties() argument 60 for (UInt32 i = 0; i < numProps; i++) in SetCoderProperties()
|
D | PpmdEncoder.h | 50 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
|
D | Bcj2Coder.h | 51 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
|
/external/lzma/CPP/Common/ |
D | CrcReg.cpp | 39 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps); 66 …rcHasher::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderProperties() argument 68 for (UInt32 i = 0; i < numProps; i++) in SetCoderProperties()
|
/external/lzma/CPP/7zip/UI/Console/ |
D | List.cpp | 454 UInt32 numProps; in AddMainProps() local 455 RINOK(archive->GetNumberOfProperties(&numProps)); in AddMainProps() 456 for (UInt32 i = 0; i < numProps; i++) in AddMainProps() 469 UInt32 numProps; in AddRawProps() local 470 RINOK(getRawProps->GetNumRawProps(&numProps)); in AddRawProps() 471 for (UInt32 i = 0; i < numProps; i++) in AddRawProps() 957 UInt32 numProps; in Print_OpenArchive_Props() local 958 RINOK(archive->GetNumberOfArchiveProperties(&numProps)); in Print_OpenArchive_Props() 960 for (UInt32 j = 0; j < numProps; j++) in Print_OpenArchive_Props() 972 UInt32 numProps; in Print_OpenArchive_Props() local [all …]
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zHandler.cpp | 59 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps) in GetNumberOfProperties() argument 61 *numProps = 0; in GetNumberOfProperties() 289 STDMETHODIMP CHandler::GetNumRawProps(UInt32 *numProps) in GetNumRawProps() argument 291 *numProps = 0; in GetNumRawProps() 720 …P CHandler::SetProperties(const wchar_t * const *names, const PROPVARIANT *values, UInt32 numProps) in SetProperties() argument 727 for (UInt32 i = 0; i < numProps; i++) in SetProperties()
|
D | 7zProperties.cpp | 143 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps) in GetNumberOfProperties() argument 145 *numProps = _fileInfoPopIDs.Size(); in GetNumberOfProperties()
|
D | 7zHandler.h | 122 …STDMETHOD(SetProperties)(const wchar_t * const *names, const PROPVARIANT *values, UInt32 numProps);
|
/external/lzma/CPP/7zip/Crypto/ |
D | MyAes.cpp | 96 …CbcCoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *coderProps, UInt32 numProps) in SetCoderProperties() argument 98 for (UInt32 i = 0; i < numProps; i++) in SetCoderProperties()
|
D | MyAes.h | 42 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
|
/external/lzma/CPP/7zip/Archive/Common/ |
D | HandlerOut.cpp | 197 …ethodProps::SetProperties(const wchar_t * const *names, const PROPVARIANT *values, UInt32 numProps) in SetProperties() argument 201 for (UInt32 i = 0; i < numProps; i++) in SetProperties()
|
D | HandlerOut.h | 103 HRESULT SetProperties(const wchar_t * const *names, const PROPVARIANT *values, UInt32 numProps);
|
/external/lzma/CPP/7zip/ |
D | ICoder.h | 140 …STDMETHOD(SetCoderPropertiesOpt)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps)… 145 …STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps) PU…
|
/external/icu/icu4c/source/test/intltest/ |
D | intltest.cpp | 581 numProps = 0; in IntlTest() 597 numProps = caller->numProps; in setCaller() 598 for (int32_t i = 0; i < numProps; i++) { in setCaller() 2182 if (numProps < kMaxProps) { in setProperty() 2183 proplines[numProps] = propline; in setProperty() 2185 numProps++; in setProperty() 2190 for (int32_t i = 0; i < numProps; i++) { in getProperty()
|
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
D | LzmaAlone.cpp | 694 unsigned numProps = kNumPropsMax; in main2() local 696 numProps--; in main2() 698 HRESULT res = encoderSpec->SetCoderProperties(propIDs, props, numProps); in main2()
|
/external/owasp/sanitizer/empiricism/ |
D | html-containment.js | 174 var numProps = 0; 179 || ++numProps > inlinePropLimit) {
|
/external/lzma/CPP/7zip/UI/Common/ |
D | UpdateCallback.cpp | 155 STDMETHODIMP CArchiveUpdateCallback::GetNumRawProps(UInt32 *numProps) in GetNumRawProps() argument 157 *numProps = 0; in GetNumRawProps() 159 *numProps = 1; in GetNumRawProps()
|