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

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDeferredLegacyStyleInterpolationTest.cpp20 static bool test(CSSPropertyID propertyID, const String& string) argument
23 if (propertyID == CSSPropertyFloodColor)
25 RefPtrWillBeRawPtr<CSSValue> value = CSSParser::parseSingleValue(propertyID, string, CSSParserContext(parserMode, 0));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DDOMWindowCSS.cpp61 CSSPropertyID propertyID = cssPropertyID(property.stripWhiteSpace()); local
62 if (propertyID == CSSPropertyInvalid)
64 ASSERT(CSSPropertyMetadata::isEnabledProperty(propertyID));
76 return CSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, HTMLStandardMode, 0);
H A DSVGCSSComputedStyleDeclaration.cpp111 PassRefPtrWillBeRawPtr<CSSValue> CSSComputedStyleDeclaration::getSVGPropertyCSSValue(CSSPropertyID propertyID, EUpdateLayout updateLayout) const argument
127 switch (propertyID) {
242 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propertyID);
244 WTF_LOG_ERROR("unimplemented propertyID: %d", propertyID);
H A DStylePropertyShorthandCustom.cpp115 const StylePropertyShorthand& parsingShorthandForProperty(CSSPropertyID propertyID) argument
117 switch (propertyID) {
129 return shorthandForProperty(propertyID);
H A DCSSProperty.cpp179 CSSPropertyID CSSProperty::resolveDirectionAwareProperty(CSSPropertyID propertyID, TextDirection direction, WritingMode writingMode) argument
181 switch (propertyID) {
255 return propertyID;
259 bool CSSProperty::isAffectedByAllProperty(CSSPropertyID propertyID) argument
261 if (propertyID == CSSPropertyAll)
270 return propertyID != CSSPropertyUnicodeBidi && propertyID != CSSPropertyDirection;
H A DCSSProperty.h36 StylePropertyMetadata(CSSPropertyID propertyID, bool isSetFromShorthand, int indexInShorthandsVector, bool important, bool implicit, bool inherited) argument
37 : m_propertyID(propertyID)
59 CSSProperty(CSSPropertyID propertyID, PassRefPtrWillBeRawPtr<CSSValue> value, bool important = false, bool isSetFromShorthand = false, int indexInShorthandsVector = 0, bool implicit = false) argument
60 : m_metadata(propertyID, isSetFromShorthand, indexInShorthandsVector, important, implicit, CSSPropertyMetadata::isInheritedProperty(propertyID))
H A DPropertySetCSSStyleDeclaration.cpp177 CSSPropertyID propertyID = cssPropertyID(propertyName); local
178 if (!propertyID)
180 return cloneAndCacheForCSSOM(propertySet().getPropertyCSSValue(propertyID).get());
185 CSSPropertyID propertyID = cssPropertyID(propertyName); local
186 if (!propertyID)
188 return propertySet().getPropertyValue(propertyID);
193 CSSPropertyID propertyID = cssPropertyID(propertyName); local
194 if (!propertyID)
196 return propertySet().propertyIsImportant(propertyID) ? "important" : "";
201 CSSPropertyID propertyID local
212 CSSPropertyID propertyID = cssPropertyID(propertyName); local
220 CSSPropertyID propertyID = cssPropertyID(propertyName); local
234 CSSPropertyID propertyID = cssPropertyID(propertyName); local
250 getPropertyCSSValueInternal(CSSPropertyID propertyID) argument
255 getPropertyValueInternal(CSSPropertyID propertyID) argument
260 setPropertyInternal(CSSPropertyID propertyID, const String& value, bool important, ExceptionState&) argument
300 cssPropertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const argument
[all...]
H A DFontFace.cpp65 static PassRefPtrWillBeRawPtr<CSSValue> parseCSSValue(const Document* document, const String& s, CSSPropertyID propertyID) argument
68 return CSSParser::parseSingleValue(propertyID, s, context);
213 void FontFace::setPropertyFromString(const Document* document, const String& s, CSSPropertyID propertyID, ExceptionState* exceptionState) argument
215 RefPtrWillBeRawPtr<CSSValue> value = parseCSSValue(document, s, propertyID);
216 if (value && setPropertyValue(value, propertyID))
226 bool FontFace::setPropertyFromStyle(const StylePropertySet& properties, CSSPropertyID propertyID) argument
228 return setPropertyValue(properties.getPropertyCSSValue(propertyID), propertyID);
231 bool FontFace::setPropertyValue(PassRefPtrWillBeRawPtr<CSSValue> value, CSSPropertyID propertyID) argument
233 switch (propertyID) {
[all...]
H A DStylePropertySerializer.cpp46 String StylePropertySerializer::getPropertyText(CSSPropertyID propertyID, const String& value, bool isImportant, bool isNotFirstDecl) const argument
51 result.append(getPropertyName(propertyID));
71 CSSPropertyID propertyID = property.id(); local
73 ASSERT(CSSPropertyMetadata::isEnabledProperty(propertyID) || isInternalProperty(propertyID));
78 switch (propertyID) {
232 propertyID = shorthandPropertyID;
238 if (value == "initial" && !CSSPropertyMetadata::isInheritedProperty(propertyID))
241 result.append(getPropertyText(propertyID, value, property.isImportant(), numDecls++));
251 String StylePropertySerializer::getPropertyValue(CSSPropertyID propertyID) cons
359 appendFontLonghandValueIfExplicit(CSSPropertyID propertyID, StringBuilder& result, String& commonValue) const argument
805 CSSPropertyID propertyID = backgroundPropertyIds[i]; local
[all...]
H A DStylePropertySet.cpp103 int ImmutableStylePropertySet::findPropertyIndex(CSSPropertyID propertyID) const
105 // Convert here propertyID into an uint16_t to compare it with the metadata's m_propertyID to avoid
107 uint16_t id = static_cast<uint16_t>(propertyID);
111 ASSERT(CSSPropertyMetadata::isEnabledProperty(propertyID) || isInternalProperty(propertyID));
139 String StylePropertySet::getPropertyValue(CSSPropertyID propertyID) const
141 RefPtrWillBeRawPtr<CSSValue> value = getPropertyCSSValue(propertyID);
145 return StylePropertySerializer(*this).getPropertyValue(propertyID);
148 PassRefPtrWillBeRawPtr<CSSValue> StylePropertySet::getPropertyCSSValue(CSSPropertyID propertyID) const
150 int foundPropertyIndex = findPropertyIndex(propertyID);
174 removeShorthandProperty(CSSPropertyID propertyID) argument
190 removeProperty(CSSPropertyID propertyID, String* returnText) argument
218 removePrefixedOrUnprefixedProperty(CSSPropertyID propertyID) argument
259 setProperty(CSSPropertyID propertyID, const String& value, bool important, StyleSheetContents* contextStyleSheet) argument
271 setProperty(CSSPropertyID propertyID, PassRefPtrWillBeRawPtr<CSSValue> prpValue, bool important) argument
328 setProperty(CSSPropertyID propertyID, CSSValueID identifier, bool important) argument
469 findCSSPropertyWithID(CSSPropertyID propertyID) argument
477 propertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const argument
[all...]
H A DCSSPrimitiveValue.cpp241 static const AtomicString& propertyName(CSSPropertyID propertyID) argument
243 ASSERT_ARG(propertyID, propertyID >= 0);
244 ASSERT_ARG(propertyID, (propertyID >= firstCSSProperty && propertyID < firstCSSProperty + numCSSProperties));
246 if (propertyID < 0)
249 return getPropertyNameAtomicString(propertyID);
274 CSSPrimitiveValue::CSSPrimitiveValue(CSSPropertyID propertyID) argument
278 m_value.propertyID
[all...]
H A DCSSPrimitiveValue.h220 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createIdentifier(CSSPropertyID propertyID) argument
222 return adoptRefWillBeNoop(new CSSPrimitiveValue(propertyID));
324 CSSPropertyID getPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID ? m_value.propertyID : CSSPropertyInvalid; }
389 CSSPropertyID propertyID; member in union:blink::CSSPrimitiveValue::__anon11012
H A DCSSComputedStyleDeclaration.cpp587 static PassRefPtrWillBeRawPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer& layer, const RenderStyle& style) argument
591 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
596 ASSERT(propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
603 static PassRefPtrWillBeRawPtr<CSSValue> valueForPositionOffset(RenderStyle& style, CSSPropertyID propertyID, const RenderObject* renderer) argument
606 switch (propertyID) {
624 LayoutUnit containingBlockSize = (propertyID == CSSPropertyLeft || propertyID
1364 valueForCounterDirectives(const RenderStyle& style, CSSPropertyID propertyID) argument
1379 logUnimplementedPropertyID(CSSPropertyID propertyID) argument
1473 isLayoutDependent(CSSPropertyID propertyID, PassRefPtr<RenderStyle> style, RenderObject* renderer) argument
1563 getPropertyCSSValue(CSSPropertyID propertyID, EUpdateLayout updateLayout) const argument
2846 cssPropertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const argument
2934 CSSPropertyID propertyID = cssPropertyID(propertyName); local
2943 CSSPropertyID propertyID = cssPropertyID(propertyName); local
2977 getPropertyCSSValueInternal(CSSPropertyID propertyID) argument
2982 getPropertyValueInternal(CSSPropertyID propertyID) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParser.cpp39 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode parserMode, StyleSheetContents* styleSheet) argument
41 return BisonCSSParser::parseValue(declaration, propertyID, string, important, parserMode, styleSheet);
44 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, const CSSParserContext& context) argument
46 return BisonCSSParser::parseValue(declaration, propertyID, string, important, context);
49 PassRefPtrWillBeRawPtr<CSSValue> CSSParser::parseSingleValue(CSSPropertyID propertyID, const String& string, const CSSParserContext& context) argument
54 bool success = parseValue(stylePropertySet.get(), propertyID, string, false, context);
55 ASSERT_UNUSED(success, success == stylePropertySet->hasProperty(propertyID));
56 return stylePropertySet->getPropertyCSSValue(propertyID);
H A DBisonCSSParser-in.cpp856 static bool parseSimpleTransform(MutableStylePropertySet* properties, CSSPropertyID propertyID, const String& string, bool important) argument
858 if (propertyID != CSSPropertyTransform && propertyID != CSSPropertyWebkitTransform)
876 properties->addParsedProperty(CSSProperty(propertyID, transformList.release(), important));
880 bool BisonCSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, const CSSParserContext& context) argument
884 if (parseSimpleLengthValue(declaration, propertyID, string, important, context.mode()))
886 if (parseColorValue(declaration, propertyID, string, important, context.mode()))
888 if (parseKeywordValue(declaration, propertyID, string, important, context))
892 return parser.parseValue(declaration, propertyID, string, important, static_cast<StyleSheetContents*>(0));
895 bool BisonCSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, cons argument
918 parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, StyleSheetContents* contextStyleSheet) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingStyle.h91 static PassRefPtrWillBeRawPtr<EditingStyle> create(CSSPropertyID propertyID, const String& value) argument
93 return adoptRefWillBeNoop(new EditingStyle(propertyID, value));
H A DEditingStyle.cpp161 static PassOwnPtrWillBeRawPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, CSSValueID primitiveValue, const HTMLQualifiedName& tagName) argument
163 return adoptPtrWillBeNoop(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
253 static PassOwnPtrWillBeRawPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const HTMLQualifiedName& tagName, const QualifiedName& attrName) argument
255 return adoptPtrWillBeNoop(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
257 static PassOwnPtrWillBeRawPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName) argument
259 return adoptPtrWillBeNoop(new HTMLAttributeEquivalent(propertyID, attrName));
377 EditingStyle::EditingStyle(CSSPropertyID propertyID, const String& value) argument
382 setProperty(propertyID, value);
495 void EditingStyle::setProperty(CSSPropertyID propertyID, const String& value, bool important) argument
500 m_mutableStyle->setProperty(propertyID, valu
747 CSSPropertyID propertyID = m_mutableStyle->propertyAt(i).id(); local
1452 setTextDecorationProperty(MutableStylePropertySet* style, const CSSValueList* newTextDecoration, CSSPropertyID propertyID) argument
1610 getIdentifierValue(StylePropertySet* style, CSSPropertyID propertyID) argument
1620 getIdentifierValue(CSSStyleDeclaration* style, CSSPropertyID propertyID) argument
[all...]
H A DEditor.cpp628 bool Editor::selectionStartHasStyle(CSSPropertyID propertyID, const String& value) const argument
630 return EditingStyle::create(propertyID, value)->triStateOfStyle(
631 EditingStyle::styleAtSelectionStart(frame().selection().selection(), propertyID == CSSPropertyBackgroundColor).get());
634 TriState Editor::selectionHasStyle(CSSPropertyID propertyID, const String& value) const argument
636 return EditingStyle::create(propertyID, value)->triStateOfStyle(frame().selection().selection());
639 String Editor::selectionStartCSSPropertyValue(CSSPropertyID propertyID) argument
642 propertyID == CSSPropertyBackgroundColor);
646 if (propertyID == CSSPropertyFontSize)
648 return selectionStyle->style()->getPropertyValue(propertyID);
H A Dmarkup.cpp477 static bool propertyMissingOrEqualToNone(StylePropertySet* style, CSSPropertyID propertyID) argument
481 RefPtrWillBeRawPtr<CSSValue> value = style->getPropertyCSSValue(propertyID);
H A DEditorCommand.cpp121 static bool executeApplyStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) argument
124 style->setProperty(propertyID, propertyValue);
128 static bool executeApplyStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValueID propertyValue) argument
131 style->setProperty(propertyID, propertyValue);
138 static bool executeToggleStyleInList(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValue* value) argument
144 RefPtrWillBeRawPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(propertyID);
158 newMutableStyle->setProperty(propertyID, newStyle);
162 static bool executeToggleStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const char* offValue, const char* onValue) argument
170 styleIsPresent = frame.editor().selectionStartHasStyle(propertyID, onValue);
172 styleIsPresent = frame.editor().selectionHasStyle(propertyID, onValu
178 executeApplyParagraphStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) argument
243 stateStyle(LocalFrame& frame, CSSPropertyID propertyID, const char* desiredValue) argument
250 valueStyle(LocalFrame& frame, CSSPropertyID propertyID) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLElement.cpp789 void HTMLElement::addHTMLLengthToStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, const String& value) argument
815 addPropertyToPresentationAttributeStyle(style, propertyID, v->substring(0, length));
820 addPropertyToPresentationAttributeStyle(style, propertyID, value);
880 void HTMLElement::addHTMLColorToStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, const String& attributeValue) argument
897 style->setProperty(propertyID, cssValuePool().createColorValue(parsedColor.rgb()));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.cpp714 CSSPropertyID propertyID = cssPropertyIdForSVGAttributeName(name); local
715 if (propertyID > 0)
716 addPropertyToPresentationAttributeStyle(style, propertyID, value);
/external/clang/lib/AST/
H A DDeclObjC.cpp154 IdentifierInfo *propertyID) {
163 DeclContext::lookup_const_result R = DC->lookup(propertyID);
153 findPropertyDecl(const DeclContext *DC, IdentifierInfo *propertyID) argument
/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 ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 457 milliseconds