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

12

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DDOMWindowCSS.cpp61 CSSPropertyID propertyID = cssPropertyID(property.stripWhiteSpace()); local
62 if (propertyID == CSSPropertyInvalid)
65 if (!RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID))
78 return CSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, HTMLStandardMode, 0);
H A DPropertySetCSSStyleDeclaration.cpp170 CSSPropertyID propertyID = cssPropertyID(propertyName); local
171 if (!propertyID)
173 return cloneAndCacheForCSSOM(m_propertySet->getPropertyCSSValue(propertyID).get());
178 CSSPropertyID propertyID = cssPropertyID(propertyName); local
179 if (!propertyID)
181 return m_propertySet->getPropertyValue(propertyID);
186 CSSPropertyID propertyID = cssPropertyID(propertyName); local
187 if (!propertyID)
189 return m_propertySet->propertyIsImportant(propertyID) ? "important" : "";
194 CSSPropertyID propertyID local
205 CSSPropertyID propertyID = cssPropertyID(propertyName); local
214 CSSPropertyID propertyID = cssPropertyID(propertyName); local
236 CSSPropertyID propertyID = cssPropertyID(propertyName); local
252 getPropertyCSSValueInternal(CSSPropertyID propertyID) argument
257 getPropertyValueInternal(CSSPropertyID propertyID) argument
262 setPropertyInternal(CSSPropertyID propertyID, const String& value, bool important, ExceptionState&) argument
355 cssPropertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const argument
[all...]
H A DStylePropertySet.cpp109 String StylePropertySet::getPropertyValue(CSSPropertyID propertyID) const
111 RefPtr<CSSValue> value = getPropertyCSSValue(propertyID);
115 return StylePropertySerializer(*this).getPropertyValue(propertyID);
118 PassRefPtr<CSSValue> StylePropertySet::getPropertyCSSValue(CSSPropertyID propertyID) const
120 int foundPropertyIndex = findPropertyIndex(propertyID);
146 bool MutableStylePropertySet::removeShorthandProperty(CSSPropertyID propertyID) argument
148 StylePropertyShorthand shorthand = shorthandForProperty(propertyID);
154 CSSPropertyID prefixingVariant = prefixingVariantForPropertyId(propertyID);
155 if (prefixingVariant == propertyID)
162 bool MutableStylePropertySet::removeProperty(CSSPropertyID propertyID, Strin argument
190 removePrefixedOrUnprefixedProperty(CSSPropertyID propertyID) argument
231 setProperty(CSSPropertyID propertyID, const String& value, bool important, StyleSheetContents* contextStyleSheet) argument
243 setProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> prpValue, bool important) argument
322 setProperty(CSSPropertyID propertyID, CSSValueID identifier, bool important) argument
328 setProperty(CSSPropertyID propertyID, CSSPropertyID identifier, bool important) argument
508 findCSSPropertyWithID(CSSPropertyID propertyID) argument
516 propertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const argument
[all...]
H A DStylePropertyShorthandCustom.cpp90 const StylePropertyShorthand& parsingShorthandForProperty(CSSPropertyID propertyID) argument
92 switch (propertyID) {
100 return shorthandForProperty(propertyID);
H A DCSSProperty.h35 StylePropertyMetadata(CSSPropertyID propertyID, bool isSetFromShorthand, int indexInShorthandsVector, bool important, bool implicit, bool inherited) argument
36 : m_propertyID(propertyID)
57 CSSProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> value, bool important = false, bool isSetFromShorthand = false, int indexInShorthandsVector = 0, bool implicit = false) argument
58 : m_metadata(propertyID, isSetFromShorthand, indexInShorthandsVector, important, implicit, isInheritedProperty(propertyID))
61 ASSERT((propertyID == CSSPropertyVariable) == (m_value && m_value->isVariableValue()));
H A DFontFace.cpp92 static PassRefPtr<CSSValue> parseCSSValue(const String& s, CSSPropertyID propertyID) argument
97 CSSParser::parseValue(parsedStyle.get(), propertyID, s, true, HTMLStandardMode, 0);
98 return parsedStyle->getPropertyCSSValue(propertyID);
245 void FontFace::setPropertyFromString(const String& s, CSSPropertyID propertyID, ExceptionState& exceptionState) argument
247 RefPtr<CSSValue> value = parseCSSValue(s, propertyID);
248 if (!value || !setPropertyValue(value, propertyID))
252 bool FontFace::setPropertyFromStyle(const StylePropertySet* properties, CSSPropertyID propertyID) argument
254 return setPropertyValue(properties->getPropertyCSSValue(propertyID), propertyID);
257 bool FontFace::setPropertyValue(PassRefPtr<CSSValue> value, CSSPropertyID propertyID) argument
[all...]
H A DCSSPrimitiveValue.cpp205 static const AtomicString& propertyName(CSSPropertyID propertyID) argument
207 ASSERT_ARG(propertyID, propertyID >= 0);
208 ASSERT_ARG(propertyID, (propertyID >= firstCSSProperty && propertyID < firstCSSProperty + numCSSProperties));
210 if (propertyID < 0)
213 return getPropertyNameAtomicString(propertyID);
238 CSSPrimitiveValue::CSSPrimitiveValue(CSSPropertyID propertyID) argument
242 m_value.propertyID
[all...]
H A DCSSComputedStyleDeclaration.cpp602 static PassRefPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle& style) argument
606 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
611 ASSERT(propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
618 static PassRefPtr<CSSValue> valueForPositionOffset(RenderStyle& style, CSSPropertyID propertyID, const RenderObject* renderer, RenderView* renderView) argument
621 switch (propertyID) {
639 LayoutUnit containingBlockSize = (propertyID == CSSPropertyLeft || propertyID
1462 valueForCounterDirectives(const RenderStyle& style, CSSPropertyID propertyID) argument
1477 logUnimplementedPropertyID(CSSPropertyID propertyID) argument
1567 isLayoutDependent(CSSPropertyID propertyID, PassRefPtr<RenderStyle> style, RenderObject* renderer) argument
1641 getPropertyCSSValue(CSSPropertyID propertyID, EUpdateLayout updateLayout) const argument
3020 cssPropertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const argument
3108 CSSPropertyID propertyID = cssPropertyID(propertyName); local
3117 CSSPropertyID propertyID = cssPropertyID(propertyName); local
3150 getPropertyCSSValueInternal(CSSPropertyID propertyID) argument
3155 getPropertyValueInternal(CSSPropertyID propertyID) argument
[all...]
H A DSVGCSSComputedStyleDeclaration.cpp91 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getSVGPropertyCSSValue(CSSPropertyID propertyID, EUpdateLayout updateLayout) const argument
109 switch (propertyID) {
227 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propertyID);
229 WTF_LOG_ERROR("unimplemented propertyID: %d", propertyID);
H A DStylePropertySerializer.cpp64 CSSPropertyID propertyID = property.id(); local
66 ASSERT(RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID) || isInternalProperty(propertyID));
71 switch (propertyID) {
223 propertyID = shorthandPropertyID;
229 if (value == "initial" && !CSSProperty::isInheritedProperty(propertyID))
234 result.append(getPropertyName(propertyID));
311 String StylePropertySerializer::getPropertyValue(CSSPropertyID propertyID) const
314 switch (propertyID) {
418 void StylePropertySerializer::appendFontLonghandValueIfExplicit(CSSPropertyID propertyID, StringBuilde argument
[all...]
H A DCSSProperty.cpp179 CSSPropertyID CSSProperty::resolveDirectionAwareProperty(CSSPropertyID propertyID, TextDirection direction, WritingMode writingMode) argument
181 switch (propertyID) {
255 return propertyID;
259 bool CSSProperty::isInheritedProperty(CSSPropertyID propertyID) argument
261 switch (propertyID) {
H A DCSSPrimitiveValue.h202 static PassRefPtr<CSSPrimitiveValue> createIdentifier(CSSPropertyID propertyID) { return adoptRef(new CSSPrimitiveValue(propertyID)); } argument
305 CSSPropertyID getPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID ? m_value.propertyID : CSSPropertyInvalid; }
372 CSSPropertyID propertyID; member in union:WebCore::CSSPrimitiveValue::__anon10938
H A DCSSParser-in.cpp1003 static bool parseTranslateTransformValue(MutableStylePropertySet* properties, CSSPropertyID propertyID, const String& string, bool important) argument
1005 if (propertyID != CSSPropertyWebkitTransform)
1065 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, const Document& document) argument
1071 if (parseSimpleLengthValue(declaration, propertyID, string, important, context.mode()))
1073 if (parseColorValue(declaration, propertyID, string, important, context.mode()))
1075 if (parseKeywordValue(declaration, propertyID, string, important, context))
1079 return parser.parseValue(declaration, propertyID, string, important, static_cast<StyleSheetContents*>(0));
1082 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode cssParserMode, StyleSheetContents* contextStyleSheet) argument
1085 if (parseSimpleLengthValue(declaration, propertyID, string, important, cssParserMode))
1087 if (parseColorValue(declaration, propertyID, strin
1105 parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, StyleSheetContents* contextStyleSheet) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
H A DStylePropertyShorthand.cpp.tmpl46 const StylePropertyShorthand& shorthandForProperty(CSSPropertyID propertyID)
49 switch (propertyID) {
66 void getMatchingShorthandsForLonghand(CSSPropertyID propertyID, Vector<StylePropertyShorthand, 4>* result)
69 switch (propertyID) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingStyle.cpp155 static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, CSSValueID primitiveValue, const QualifiedName& tagName) argument
157 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
242 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName) argument
244 return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
246 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName) argument
248 return adoptPtr(new HTMLAttributeEquivalent(propertyID, attrName));
368 EditingStyle::EditingStyle(CSSPropertyID propertyID, const String& value) argument
373 setProperty(propertyID, value);
485 void EditingStyle::setProperty(CSSPropertyID propertyID, const String& value, bool important) argument
490 m_mutableStyle->setProperty(propertyID, valu
746 CSSPropertyID propertyID = m_mutableStyle->propertyAt(i).id(); local
1419 setTextDecorationProperty(MutableStylePropertySet* style, const CSSValueList* newTextDecoration, CSSPropertyID propertyID) argument
1580 getIdentifierValue(StylePropertySet* style, CSSPropertyID propertyID) argument
1590 getIdentifierValue(CSSStyleDeclaration* style, CSSPropertyID propertyID) argument
[all...]
H A DEditingStyle.h95 static PassRefPtr<EditingStyle> create(CSSPropertyID propertyID, const String& value) argument
97 return adoptRef(new EditingStyle(propertyID, value));
H A DEditorCommand.cpp117 static bool executeApplyStyle(Frame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) argument
120 style->setProperty(propertyID, propertyValue);
124 static bool executeApplyStyle(Frame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValueID propertyValue) argument
127 style->setProperty(propertyID, propertyValue);
134 static bool executeToggleStyleInList(Frame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValue* value) argument
140 RefPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(propertyID);
154 newMutableStyle->setProperty(propertyID, newStyle);
158 static bool executeToggleStyle(Frame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const char* offValue, const char* onValue) argument
166 styleIsPresent = frame.editor().selectionStartHasStyle(propertyID, onValue);
168 styleIsPresent = frame.editor().selectionHasStyle(propertyID, onValu
174 executeApplyParagraphStyle(Frame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) argument
225 stateStyle(Frame& frame, CSSPropertyID propertyID, const char* desiredValue) argument
232 valueStyle(Frame& frame, CSSPropertyID propertyID) argument
[all...]
H A DEditor.cpp720 bool Editor::selectionStartHasStyle(CSSPropertyID propertyID, const String& value) const argument
722 return EditingStyle::create(propertyID, value)->triStateOfStyle(
723 EditingStyle::styleAtSelectionStart(m_frame.selection().selection(), propertyID == CSSPropertyBackgroundColor).get());
726 TriState Editor::selectionHasStyle(CSSPropertyID propertyID, const String& value) const argument
728 return EditingStyle::create(propertyID, value)->triStateOfStyle(m_frame.selection().selection());
731 String Editor::selectionStartCSSPropertyValue(CSSPropertyID propertyID) argument
734 propertyID == CSSPropertyBackgroundColor);
738 if (propertyID == CSSPropertyFontSize)
740 return selectionStyle->style()->getPropertyValue(propertyID);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp149 CSSPropertyID propertyID = cssPropertyID(propName); local
150 if (propertyID && RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID)) {
152 propInfo->propID = propertyID;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DCSSToStyleMap.cpp226 void CSSToStyleMap::mapFillXPosition(CSSPropertyID propertyID, FillLayer* layer, CSSValue* value) const argument
239 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPositionX || propertyID == CSSPropertyWebkitMaskPositionX);
251 void CSSToStyleMap::mapFillYPosition(CSSPropertyID propertyID, FillLayer* layer, CSSValue* value) const argument
264 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPositionY || propertyID == CSSPropertyWebkitMaskPositionY);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLElement.cpp854 void HTMLElement::addHTMLLengthToStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, const String& value) argument
880 addPropertyToPresentationAttributeStyle(style, propertyID, v->substring(0, l));
885 addPropertyToPresentationAttributeStyle(style, propertyID, value);
945 void HTMLElement::addHTMLColorToStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, const String& attributeValue) argument
962 style->setProperty(propertyID, cssValuePool().createColorValue(parsedColor.rgb()));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.cpp292 CSSPropertyID propertyID = SVGElement::cssPropertyIdForSVGAttributeName(attr->name()); local
293 style->setProperty(propertyID, attr->value());
294 RefPtr<CSSValue> cssValue = style->getPropertyCSSValue(propertyID);
786 CSSPropertyID propertyID = cssPropertyIdForSVGAttributeName(name); local
787 if (propertyID > 0)
788 addPropertyToPresentationAttributeStyle(style, propertyID, value);
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
H A DCSSPropertyAnimation.cpp290 static void addPropertyWrapper(CSSPropertyID propertyID, AnimationPropertyWrapperBase* wrapper) argument
292 int propIndex = propertyID - firstCSSProperty;
301 static AnimationPropertyWrapperBase* wrapperForProperty(CSSPropertyID propertyID) argument
303 int propIndex = propertyID - firstCSSProperty;
913 CSSPropertyID propertyID = animatableShorthandProperties[i]; local
914 StylePropertyShorthand shorthand = shorthandForProperty(propertyID);
916 addPropertyWrapper(propertyID, new ShorthandPropertyWrapper(propertyID, shorthand));
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.cpp3503 bool Element::setInlineStyleProperty(CSSPropertyID propertyID, CSSValueID identifier, bool important)
3506 ensureMutableInlineStyle()->setProperty(propertyID, cssValuePool().createIdentifierValue(identifier), important);
3511 bool Element::setInlineStyleProperty(CSSPropertyID propertyID, CSSPropertyID identifier, bool important)
3514 ensureMutableInlineStyle()->setProperty(propertyID, cssValuePool().createIdentifierValue(identifier), important);
3519 bool Element::setInlineStyleProperty(CSSPropertyID propertyID, double value, CSSPrimitiveValue::UnitTypes unit, bool important)
3522 ensureMutableInlineStyle()->setProperty(propertyID, cssValuePool().createValue(value, unit), important);
3527 bool Element::setInlineStyleProperty(CSSPropertyID propertyID, const String& value, bool important)
3530 bool changes = ensureMutableInlineStyle()->setProperty(propertyID, value, important, document().elementSheet()->contents());
3536 bool Element::removeInlineStyleProperty(CSSPropertyID propertyID)
3541 bool changes = ensureMutableInlineStyle()->removeProperty(propertyID);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.views_3.5.0.I20100527-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 527 milliseconds

12