Searched refs:propertyID (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DPropertySetCSSStyleDeclaration.cpp167 CSSPropertyID propertyID = cssPropertyID(propertyName); local
168 if (!propertyID)
170 return cloneAndCacheForCSSOM(m_propertySet->getPropertyCSSValue(propertyID).get());
175 CSSPropertyID propertyID = cssPropertyID(propertyName); local
176 if (!propertyID)
178 return m_propertySet->getPropertyValue(propertyID);
183 CSSPropertyID propertyID = cssPropertyID(propertyName); local
184 if (!propertyID)
186 return m_propertySet->propertyIsImportant(propertyID) ? "important" : "";
191 CSSPropertyID propertyID local
199 CSSPropertyID propertyID = cssPropertyID(propertyName); local
208 CSSPropertyID propertyID = cssPropertyID(propertyName); local
232 CSSPropertyID propertyID = cssPropertyID(propertyName); local
250 getPropertyCSSValueInternal(CSSPropertyID propertyID) argument
255 getPropertyValueInternal(CSSPropertyID propertyID) argument
260 setPropertyInternal(CSSPropertyID propertyID, const String& value, bool important, ExceptionCode& ec) argument
[all...]
H A DCSSProperty.h35 StylePropertyMetadata(CSSPropertyID propertyID, CSSPropertyID shorthandID, bool important, bool implicit, bool inherited) argument
36 : m_propertyID(propertyID)
56 CSSProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> value, bool important = false, CSSPropertyID shorthandID = CSSPropertyInvalid, bool implicit = false) argument
57 : m_metadata(propertyID, shorthandID, important, implicit, isInheritedProperty(propertyID))
61 ASSERT((propertyID == CSSPropertyVariable) == (m_value && m_value->isVariableValue()));
H A DDeprecatedStyleBuilder.h46 void applyInheritValue(CSSPropertyID propertyID, StyleResolver* styleResolver) const { ASSERT(m_inherit); (*m_inherit)(propertyID, styleResolver); } argument
47 void applyInitialValue(CSSPropertyID propertyID, StyleResolver* styleResolver) const { ASSERT(m_initial); (*m_initial)(propertyID, styleResolver); } argument
48 void applyValue(CSSPropertyID propertyID, StyleResolver* styleResolver, CSSValue* value) const { ASSERT(m_apply); (*m_apply)(propertyID, styleResolver, value); } argument
H A DDOMWindowCSS.cpp62 CSSPropertyID propertyID = cssPropertyID(property.stripWhiteSpace()); local
64 if (propertyID == CSSPropertyInvalid)
77 return CSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, CSSStrictMode, 0);
H A DStylePropertySet.cpp130 String StylePropertySet::getPropertyValue(CSSPropertyID propertyID) const
132 RefPtr<CSSValue> value = getPropertyCSSValue(propertyID);
137 switch (propertyID) {
241 void StylePropertySet::appendFontLonghandValueIfExplicit(CSSPropertyID propertyID, StringBuilder& result, String& commonValue) const argument
243 int foundPropertyIndex = findPropertyIndex(propertyID);
253 switch (propertyID) {
583 PassRefPtr<CSSValue> StylePropertySet::getPropertyCSSValue(CSSPropertyID propertyID) const
585 int foundPropertyIndex = findPropertyIndex(propertyID);
591 bool MutableStylePropertySet::removeShorthandProperty(CSSPropertyID propertyID) argument
593 StylePropertyShorthand shorthand = shorthandForProperty(propertyID);
607 removeProperty(CSSPropertyID propertyID, String* returnText) argument
635 removePrefixedOrUnprefixedProperty(CSSPropertyID propertyID) argument
676 setProperty(CSSPropertyID propertyID, const String& value, bool important, StyleSheetContents* contextStyleSheet) argument
688 setProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> prpValue, bool important) argument
733 setProperty(CSSPropertyID propertyID, int identifier, bool important) argument
782 CSSPropertyID propertyID = property.id(); local
1134 findCSSPropertyWithID(CSSPropertyID propertyID) argument
1142 propertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const argument
[all...]
H A DSVGCSSComputedStyleDeclaration.cpp71 PassRefPtr<CSSValue> ComputedStyleExtractor::svgPropertyValue(CSSPropertyID propertyID, EUpdateLayout updateLayout) const argument
89 switch (propertyID) {
194 return valueForShadow(svgStyle->shadow(), propertyID, style);
207 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propertyID);
209 LOG_ERROR("unimplemented propertyID: %d", propertyID);
H A DCSSComputedStyleDeclaration.cpp637 static PassRefPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle* style) argument
641 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
646 ASSERT(propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
653 static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, CSSPropertyID propertyID, RenderView* renderView) argument
659 switch (propertyID) {
1299 PassRefPtr<CSSValue> ComputedStyleExtractor::valueForShadow(const ShadowData* shadow, CSSPropertyID propertyID, const RenderStyle* style) const argument
1309 RefPtr<CSSPrimitiveValue> spread = propertyID
1432 counterToCSSValue(const RenderStyle* style, CSSPropertyID propertyID) argument
1447 logUnimplementedPropertyID(CSSPropertyID propertyID) argument
1523 isLayoutDependentProperty(CSSPropertyID propertyID) argument
1561 getPropertyCSSValue(CSSPropertyID propertyID, EUpdateLayout updateLayout) const argument
1571 propertyValue(CSSPropertyID propertyID, EUpdateLayout updateLayout) const argument
2966 propertyMatches(CSSPropertyID propertyID, const CSSValue* value) const argument
3054 CSSPropertyID propertyID = cssPropertyID(propertyName); local
3063 CSSPropertyID propertyID = cssPropertyID(propertyName); local
3096 getPropertyCSSValueInternal(CSSPropertyID propertyID) argument
3101 getPropertyValueInternal(CSSPropertyID propertyID) argument
[all...]
H A DDeprecatedStyleBuilder.cpp64 static inline void applyInheritValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
72 handler.applyInheritValue(propertyID, styleResolver);
75 static void applyInheritValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
77 applyInheritValue<one>(propertyID, styleResolver);
78 applyInheritValue<two>(propertyID, styleResolver);
79 applyInheritValue<three>(propertyID, styleResolver);
80 applyInheritValue<four>(propertyID, styleResolver);
81 applyInheritValue<five>(propertyID, styleResolver);
85 static inline void applyInitialValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
93 handler.applyInitialValue(propertyID, styleResolve
96 applyInitialValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
106 applyValue(CSSPropertyID propertyID, StyleResolver* styleResolver, CSSValue* value) argument
117 applyValue(CSSPropertyID propertyID, StyleResolver* styleResolver, CSSValue* value) argument
235 applyInheritValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
296 applyValue(CSSPropertyID propertyID, StyleResolver* styleResolver, CSSValue* value) argument
326 applyValue(CSSPropertyID propertyID, StyleResolver* styleResolver, CSSValue* value) argument
1657 applyInitialValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
1698 applyInheritValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
1704 applyInitialValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
1710 applyValue(CSSPropertyID propertyID, StyleResolver* styleResolver, CSSValue* value) argument
1971 applyInheritValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
1978 applyInitialValue(CSSPropertyID propertyID, StyleResolver* styleResolver) argument
[all...]
H A DCSSProperty.cpp174 CSSPropertyID CSSProperty::resolveDirectionAwareProperty(CSSPropertyID propertyID, TextDirection direction, WritingMode writingMode) argument
176 switch (propertyID) {
250 return propertyID;
254 bool CSSProperty::isInheritedProperty(CSSPropertyID propertyID) argument
256 switch (propertyID) {
H A DCSSToStyleMap.cpp230 void CSSToStyleMap::mapFillXPosition(CSSPropertyID propertyID, FillLayer* layer, CSSValue* value) argument
245 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPositionX || propertyID == CSSPropertyWebkitMaskPositionX);
266 void CSSToStyleMap::mapFillYPosition(CSSPropertyID propertyID, FillLayer* layer, CSSValue* value) argument
281 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPositionY || propertyID == CSSPropertyWebkitMaskPositionY);
H A DStylePropertyShorthand.cpp474 const StylePropertyShorthand& shorthandForProperty(CSSPropertyID propertyID) argument
476 switch (propertyID) {
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSCSSStyleDeclarationCustom.cpp64 CSSPropertyID propertyID; member in class:WebCore::CSSPropertyInfo
195 if (propertyInfo.propertyID)
274 int propertyID = hashTableEntry ? hashTableEntry->id : 0;
275 if (propertyID) {
277 propertyInfo.propertyID = static_cast<CSSPropertyID>(propertyID);
290 static inline JSValue cssPropertyGetterPixelOrPosPrefix(ExecState* exec, JSCSSStyleDeclaration* thisObj, unsigned propertyID) argument
297 RefPtr<CSSValue> v = thisObj->impl()->getPropertyCSSValueInternal(static_cast<CSSPropertyID>(propertyID));
304 return getPropertyValueFallback(exec, thisObj, propertyID);
307 static JSValue cssPropertyGetterPixelOrPosPrefixCallback(ExecState* exec, JSValue slotBase, unsigned propertyID) argument
312 cssPropertyGetter(ExecState* exec, JSCSSStyleDeclaration* thisObj, unsigned propertyID) argument
321 cssPropertyGetterCallback(ExecState* exec, JSValue slotBase, unsigned propertyID) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DStyledElement.cpp230 bool StyledElement::setInlineStyleProperty(CSSPropertyID propertyID, int identifier, bool important) argument
232 ensureMutableInlineStyle()->setProperty(propertyID, cssValuePool().createIdentifierValue(identifier), important);
237 bool StyledElement::setInlineStyleProperty(CSSPropertyID propertyID, double value, CSSPrimitiveValue::UnitTypes unit, bool important) argument
239 ensureMutableInlineStyle()->setProperty(propertyID, cssValuePool().createValue(value, unit), important);
244 bool StyledElement::setInlineStyleProperty(CSSPropertyID propertyID, const String& value, bool important) argument
246 bool changes = ensureMutableInlineStyle()->setProperty(propertyID, value, important, document()->elementSheet()->contents());
252 bool StyledElement::removeInlineStyleProperty(CSSPropertyID propertyID) argument
256 bool changes = ensureMutableInlineStyle()->removeProperty(propertyID);
369 void StyledElement::addPropertyToPresentationAttributeStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, int identifier) argument
371 style->setProperty(propertyID, cssValuePoo
374 addPropertyToPresentationAttributeStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, double value, CSSPrimitiveValue::UnitTypes unit) argument
379 addPropertyToPresentationAttributeStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, const String& value) argument
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitnetworkrequest.cpp81 static void webkit_network_request_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec) argument
85 switch(propertyID) {
93 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
97 static void webkit_network_request_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* pspec) argument
102 switch(propertyID) {
110 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
H A Dwebkitviewportattributes.cpp115 static void webkit_viewport_attributes_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* paramSpec);
116 static void webkit_viewport_attributes_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* paramSpec);
435 static void webkit_viewport_attributes_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* paramSpec) argument
440 switch (propertyID) {
484 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, paramSpec);
489 static void webkit_viewport_attributes_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* paramSpec) argument
494 switch (propertyID) {
514 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, paramSpec);
H A Dwebkithittestresult.cpp87 static void webkit_hit_test_result_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec) argument
92 switch(propertyID) {
115 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
119 static void webkit_hit_test_result_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* pspec) argument
124 switch(propertyID) {
150 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
H A Dwebkitnetworkresponse.cpp87 static void webkit_network_response_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec) argument
91 switch(propertyID) {
102 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
106 static void webkit_network_response_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* pspec) argument
111 switch(propertyID) {
119 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DEditingStyle.cpp111 static PassRefPtr<CSSValue> extractPropertyValue(const StylePropertySet* style, CSSPropertyID propertyID) argument
113 return style ? style->getPropertyCSSValue(propertyID) : PassRefPtr<CSSValue>();
116 static PassRefPtr<CSSValue> extractPropertyValue(ComputedStyleExtractor* computedStyle, CSSPropertyID propertyID) argument
118 return computedStyle->propertyValue(propertyID);
122 int identifierForStyleProperty(T* style, CSSPropertyID propertyID) argument
124 RefPtr<CSSValue> value = extractPropertyValue(style, propertyID);
140 static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, int primitiveValue, const QualifiedName& tagName) argument
142 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
226 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName) argument
228 return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagNam
230 create(CSSPropertyID propertyID, const QualifiedName& attrName) argument
344 EditingStyle(CSSPropertyID propertyID, const String& value) argument
454 setProperty(CSSPropertyID propertyID, const String& value, bool important) argument
701 CSSPropertyID propertyID = m_mutableStyle->propertyAt(i).id(); local
1365 setTextDecorationProperty(MutableStylePropertySet* style, const CSSValueList* newTextDecoration, CSSPropertyID propertyID) argument
[all...]
H A DEditingStyle.h90 static PassRefPtr<EditingStyle> create(CSSPropertyID propertyID, const String& value) argument
92 return adoptRef(new EditingStyle(propertyID, value));
H A DEditorCommand.cpp119 static bool executeApplyStyle(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) argument
122 style->setProperty(propertyID, propertyValue);
126 static bool executeApplyStyle(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, int propertyValue) argument
129 style->setProperty(propertyID, propertyValue);
136 static bool executeToggleStyleInList(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValue* value) argument
142 RefPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(propertyID);
156 newMutableStyle->setProperty(propertyID, newStyle);
160 static bool executeToggleStyle(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const char* offValue, const char* onValue) argument
168 styleIsPresent = frame->editor().selectionStartHasStyle(propertyID, onValue);
170 styleIsPresent = frame->editor().selectionHasStyle(propertyID, onValu
176 executeApplyParagraphStyle(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) argument
227 stateStyle(Frame* frame, CSSPropertyID propertyID, const char* desiredValue) argument
234 valueStyle(Frame* frame, CSSPropertyID propertyID) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGStyledElement.cpp299 CSSPropertyID propertyID = SVGStyledElement::cssPropertyIdForSVGAttributeName(name); local
300 if (propertyID > 0)
301 addPropertyToPresentationAttributeStyle(style, propertyID, value);
410 CSSPropertyID propertyID = SVGStyledElement::cssPropertyIdForSVGAttributeName(attr->name()); local
411 style->setProperty(propertyID, attr->value());
412 RefPtr<CSSValue> cssValue = style->getPropertyCSSValue(propertyID);
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DCSSPropertyAnimation.cpp316 static void addPropertyWrapper(CSSPropertyID propertyID, AnimationPropertyWrapperBase* wrapper) argument
318 int propIndex = propertyID - firstCSSProperty;
327 static AnimationPropertyWrapperBase* wrapperForProperty(CSSPropertyID propertyID) argument
329 int propIndex = propertyID - firstCSSProperty;
1042 CSSPropertyID propertyID = animatableShorthandProperties[i]; local
1043 StylePropertyShorthand shorthand = shorthandForProperty(propertyID);
1045 addPropertyWrapper(propertyID, new ShorthandPropertyWrapper(propertyID, shorthand));
/macosx-10.9.5/IOAudioFamily-197.4.2/
H A DIOAudioControl.h460 virtual void setCoreAudioPropertyID(UInt32 propertyID);
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLElement.cpp1050 void HTMLElement::addHTMLLengthToStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, const String& value) argument
1076 addPropertyToPresentationAttributeStyle(style, propertyID, v->substring(0, l));
1081 addPropertyToPresentationAttributeStyle(style, propertyID, value);
1141 void HTMLElement::addHTMLColorToStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, const String& attributeValue) argument
1158 style->setProperty(propertyID, cssValuePool().createColorValue(parsedColor.rgb()));
/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/
H A DMovieQTVRUtils.c54 static OSErr WriteTheMediaPropertyAtom ( Media theMedia, long propertyID,
1083 WriteTheMediaPropertyAtom ( Media theMedia, long propertyID,
1108 propertyID, 1, NULL);
1111 propertyID, 1, 0, 0, NULL, &atom);
1073 WriteTheMediaPropertyAtom( Media theMedia, long propertyID, long thePropertySize, void *theProperty ) argument

Completed in 251 milliseconds

12