Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/bindings/v8/
DSerializedScriptValue.cpp237 void writeObject(uint32_t numProperties) in writeObject() argument
240 doWriteUint32(numProperties); in writeObject()
243 void writeSparseArray(uint32_t numProperties, uint32_t length) in writeSparseArray() argument
246 doWriteUint32(numProperties); in writeSparseArray()
385 StateBase* writeObject(uint32_t numProperties, StateBase* state) in writeObject() argument
387 m_writer.writeObject(numProperties); in writeObject()
391 StateBase* writeSparseArray(uint32_t numProperties, uint32_t length, StateBase* state) in writeSparseArray() argument
393 m_writer.writeSparseArray(numProperties, length); in writeSparseArray()
540 virtual StateBase* objectDone(unsigned numProperties, Serializer&) = 0;
558 virtual StateBase* objectDone(unsigned numProperties, Serializer& serializer) in objectDone() argument
[all …]
/external/webkit/Source/WebCore/css/
DCSSPropertyLonghand.h34 CSSPropertyLonghand(const int* firstProperty, unsigned numProperties) in CSSPropertyLonghand() argument
36 , m_length(numProperties) in CSSPropertyLonghand()
DCSSMutableStyleDeclaration.h68 …leDeclaration> create(CSSRule* parentRule, const CSSProperty* const* properties, int numProperties) in create() argument
70 return adoptRef(new CSSMutableStyleDeclaration(parentRule, properties, numProperties)); in create()
125 void addParsedProperties(const CSSProperty* const *, int numProperties);
150 CSSMutableStyleDeclaration(CSSRule* parentRule, const CSSProperty* const *, int numProperties);
DCSSMutableStyleDeclaration.cpp75 …SMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * properties, int numProperties) in CSSMutableStyleDeclaration() argument
83 m_properties.reserveInitialCapacity(numProperties); in CSSMutableStyleDeclaration()
85 for (int i = 0; i < numProperties; ++i) { in CSSMutableStyleDeclaration()
630 …tableStyleDeclaration::addParsedProperties(const CSSProperty* const* properties, int numProperties) in addParsedProperties() argument
634 m_properties.reserveCapacity(numProperties); in addParsedProperties()
636 for (int i = 0; i < numProperties; ++i) { in addParsedProperties()
DCSSParser.cpp2097 bool CSSParser::parseFillShorthand(int propId, const int* properties, int numProperties, bool impor… in parseFillShorthand() argument
2099 ASSERT(numProperties <= cMaxFillProperties); in parseFillShorthand()
2100 if (numProperties > cMaxFillProperties) in parseFillShorthand()
2118 for (i = 0; i < numProperties; ++i) { in parseFillShorthand()
2142 for (i = 0; !found && i < numProperties; ++i) { in parseFillShorthand()
2178 for (i = 0; i < numProperties; ++i) { in parseFillShorthand()
2193 for (i = 0; i < numProperties; i++) { in parseFillShorthand()
2252 const int numProperties = WTF_ARRAY_LENGTH(properties); in parseAnimationShorthand() local
2256 bool parsedProperty[numProperties] = { false }; // compiler will repeat false as necessary in parseAnimationShorthand()
2257 RefPtr<CSSValue> values[numProperties]; in parseAnimationShorthand()
[all …]
DCSSParser.h82 bool parseShorthand(int propId, const int* properties, int numProperties, bool important);
103 … bool parseFillShorthand(int propId, const int* properties, int numProperties, bool important);
/external/webkit/Source/JavaScriptCore/runtime/
DObjectConstructor.cpp174 size_t numProperties = properties.size(); in objectConstructorGetOwnPropertyNames() local
175 for (size_t i = 0; i < numProperties; i++) in objectConstructorGetOwnPropertyNames()
188 size_t numProperties = properties.size(); in objectConstructorKeys() local
189 for (size_t i = 0; i < numProperties; i++) in objectConstructorKeys()
301 size_t numProperties = propertyNames.size(); in defineProperties() local
304 for (size_t i = 0; i < numProperties; i++) { in defineProperties()
323 for (size_t i = 0; i < numProperties; i++) { in defineProperties()