Home
last modified time | relevance | path

Searched refs:numProperties (Results 1 – 15 of 15) sorted by relevance

/external/lzma/CPP/7zip/Archive/
DIArchive.h131 STDMETHOD(GetNumberOfProperties)(UInt32 *numProperties) x; \
133 STDMETHOD(GetNumberOfArchiveProperties)(UInt32 *numProperties) x; \
185 …STDMETHOD(SetProperties)(const wchar_t **names, const PROPVARIANT *values, Int32 numProperties) PU…
203 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProperties) \
204 { *numProperties = sizeof(kProps) / sizeof(kProps[0]); return S_OK; } \
208 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProperties) \
209 { *numProperties = sizeof(kProps) / sizeof(kProps[0]); return S_OK; } \
214 STDMETHODIMP CHandler::GetNumberOfArchiveProperties(UInt32 *numProperties) \
215 { *numProperties = sizeof(kArcProps) / sizeof(kArcProps[0]); return S_OK; } \
219 STDMETHODIMP CHandler::GetNumberOfArchiveProperties(UInt32 *numProperties) \
[all …]
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DStylePropertyShorthand.h.tmpl41 … StylePropertyShorthand(CSSPropertyID id, const CSSPropertyID* properties, unsigned numProperties)
44 , m_length(numProperties)
49 …ID* properties, const StylePropertyShorthand** propertiesForInitialization, unsigned numProperties)
52 , m_length(numProperties)
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DSerializedScriptValue.cpp614 void writeObject(uint32_t numProperties) in writeObject() argument
617 doWriteUint32(numProperties); in writeObject()
620 void writeSparseArray(uint32_t numProperties, uint32_t length) in writeSparseArray() argument
623 doWriteUint32(numProperties); in writeSparseArray()
627 void writeDenseArray(uint32_t numProperties, uint32_t length) in writeDenseArray() argument
630 doWriteUint32(numProperties); in writeDenseArray()
986 StateBase* writeObject(uint32_t numProperties, StateBase* state) in writeObject() argument
988 m_writer.writeObject(numProperties); in writeObject()
992 StateBase* writeSparseArray(uint32_t numProperties, uint32_t length, StateBase* state) in writeSparseArray() argument
994 m_writer.writeSparseArray(numProperties, length); in writeSparseArray()
[all …]
/external/lzma/CPP/7zip/Archive/7z/
D7zProperties.cpp144 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProperties) in GetNumberOfProperties() argument
146 *numProperties = _fileInfoPopIDs.Size(); in GetNumberOfProperties()
D7zHandler.h63 STDMETHOD(SetProperties)(const wchar_t **names, const PROPVARIANT *values, Int32 numProperties);
D7zHandler.cpp447 …DIMP CHandler::SetProperties(const wchar_t **names, const PROPVARIANT *values, Int32 numProperties) in SetProperties() argument
453 for (int i = 0; i < numProperties; i++) in SetProperties()
D7zHandlerOut.cpp452 …DIMP CHandler::SetProperties(const wchar_t **names, const PROPVARIANT *values, Int32 numProperties) in SetProperties() argument
458 for (int i = 0; i < numProperties; i++) in SetProperties()
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
DSoapObject.java95 int numProperties = properties.size(); in equals() local
96 if (numProperties != otherSoapObject.properties.size()) { in equals()
101 for (int propIndex = 0; propIndex < numProperties; propIndex++) { in equals()
/external/lzma/CPP/7zip/Common/
DFilterCoder.cpp221 const PROPVARIANT *properties, UInt32 numProperties) in SetCoderProperties() argument
223 return _SetCoderProperties->SetCoderProperties(propIDs, properties, numProperties); in SetCoderProperties()
DFilterCoder.h104 const PROPVARIANT *properties, UInt32 numProperties);
/external/pdfium/core/src/fxge/Microsoft SDK/include/
DGdiPlusBitmap.h503 OUT UINT* numProperties in GetPropertySize() argument
508 numProperties)); in GetPropertySize()
514 IN UINT numProperties, in GetAllPropertyItems() argument
524 numProperties, in GetAllPropertyItems()
DGdiPlusHeaders.h530 OUT UINT* numProperties);
532 IN UINT numProperties,
DGdiPlusFlat.h1290 GdipGetPropertySize(GpImage *image, UINT* totalBufferSize, UINT* numProperties);
1294 UINT numProperties, PropertyItem* allItems);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DCSSPropertyParser.cpp1561 …lShorthand(CSSPropertyID propId, const CSSPropertyID* properties, int numProperties, bool importan… in parseFillShorthand() argument
1563 ASSERT(numProperties <= cMaxFillProperties); in parseFillShorthand()
1564 if (numProperties > cMaxFillProperties) in parseFillShorthand()
1587 for (i = 0; i < numProperties; ++i) { in parseFillShorthand()
1618 for (i = 0; !found && i < numProperties; ++i) { in parseFillShorthand()
1666 for (i = 0; i < numProperties; i++) { in parseFillShorthand()
1732 const unsigned numProperties = 8; in parseAnimationShorthand() local
1737 ASSERT(numProperties == animationProperties.length()); in parseAnimationShorthand()
1738 ASSERT(numProperties == shorthandForProperty(propId).length()); in parseAnimationShorthand()
1742 bool parsedProperty[numProperties] = { false }; in parseAnimationShorthand()
[all …]
DCSSPropertyParser.h117 …bool parseFillShorthand(CSSPropertyID, const CSSPropertyID* properties, int numProperties, bool im…