Home
last modified time | relevance | path

Searched refs:propertyId (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSProperty.h96 CSSPropertyID propertyId = CSSPropertyInvalid; in prefixingVariantForPropertyId() local
99 propertyId = CSSPropertyWebkitAnimation; in prefixingVariantForPropertyId()
102 propertyId = CSSPropertyWebkitAnimationDelay; in prefixingVariantForPropertyId()
105 propertyId = CSSPropertyWebkitAnimationDirection; in prefixingVariantForPropertyId()
108 propertyId = CSSPropertyWebkitAnimationDuration; in prefixingVariantForPropertyId()
111 propertyId = CSSPropertyWebkitAnimationFillMode; in prefixingVariantForPropertyId()
114 propertyId = CSSPropertyWebkitAnimationIterationCount; in prefixingVariantForPropertyId()
117 propertyId = CSSPropertyWebkitAnimationName; in prefixingVariantForPropertyId()
120 propertyId = CSSPropertyWebkitAnimationPlayState; in prefixingVariantForPropertyId()
123 propertyId = CSSPropertyWebkitAnimationTimingFunction; in prefixingVariantForPropertyId()
[all …]
DRuntimeCSSEnabled.cpp142 size_t indexForProperty(CSSPropertyID propertyId) in indexForProperty() argument
144 RELEASE_ASSERT(propertyId >= 0 && propertyId <= lastCSSProperty); in indexForProperty()
145 ASSERT(propertyId != CSSPropertyInvalid); in indexForProperty()
146 return static_cast<size_t>(propertyId); in indexForProperty()
149 bool RuntimeCSSEnabled::isCSSPropertyEnabled(CSSPropertyID propertyId) in isCSSPropertyEnabled() argument
153 if (isInternalProperty(propertyId)) in isCSSPropertyEnabled()
156 return propertySwitches()[indexForProperty(propertyId)]; in isCSSPropertyEnabled()
159 void RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyID propertyId, bool enable) in setCSSPropertyEnabled() argument
161 propertySwitches()[indexForProperty(propertyId)] = enable; in setCSSPropertyEnabled()
DCSSParser-in.cpp291 static inline bool isColorPropertyID(CSSPropertyID propertyId) in isColorPropertyID() argument
293 switch (propertyId) { in isColorPropertyID()
320 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const S… in parseColorValue() argument
324 if (!isColorPropertyID(propertyId)) in parseColorValue()
341 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important)); in parseColorValue()
348 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important)); in parseColorValue()
352 static inline bool isSimpleLengthPropertyID(CSSPropertyID propertyId, bool& acceptsNegativeNumbers) in isSimpleLengthPropertyID() argument
354 switch (propertyId) { in isSimpleLengthPropertyID()
416 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, … in parseSimpleLengthValue() argument
422 …if (isCSSViewportParsingEnabledForMode(cssParserMode) || !isSimpleLengthPropertyID(propertyId, acc… in parseSimpleLengthValue()
[all …]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
DV8CSSStyleDeclarationCustom.cpp169 CSSPropertyID propertyId = static_cast<CSSPropertyID>(id); in namedPropertyEnumeratorCustom() local
170 if (RuntimeCSSEnabled::isCSSPropertyEnabled(propertyId)) in namedPropertyEnumeratorCustom()
171 propertyNames.append(getJSPropertyName(propertyId)); in namedPropertyEnumeratorCustom()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleResolverState.h108 PassRefPtr<StyleImage> styleImage(CSSPropertyID propertyId, CSSValue* value) in styleImage() argument
110 …elementStyleResources.styleImage(document().textLinkColors(), style()->color(), propertyId, value); in styleImage()
DCSSToStyleMap.cpp55 PassRefPtr<StyleImage> CSSToStyleMap::styleImage(CSSPropertyID propertyId, CSSValue* value) in styleImage() argument
57 …urces.styleImage(m_state.document().textLinkColors(), m_state.style()->color(), propertyId, value); in styleImage()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGElement.cpp66 CSSPropertyID propertyId = cssPropertyID(attrName.localName()); in mapAttributeToCSSProperty() local
67 if (!propertyId && attrName == transform_originAttr) in mapAttributeToCSSProperty()
68 propertyId = CSSPropertyWebkitTransformOrigin; // cssPropertyID("-webkit-transform-origin") in mapAttributeToCSSProperty()
69 ASSERT(propertyId > 0); in mapAttributeToCSSProperty()
70 propertyNameToIdMap->set(attrName.localName().impl(), propertyId); in mapAttributeToCSSProperty()
/external/clang/lib/Parse/
DParseObjc.cpp1702 IdentifierInfo *propertyId = Tok.getIdentifierInfo(); in ParseObjCPropertySynthesize() local
1710 Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId); in ParseObjCPropertySynthesize()
1723 propertyId, propertyIvar, propertyIvarLoc); in ParseObjCPropertySynthesize()
1756 IdentifierInfo *propertyId = Tok.getIdentifierInfo(); in ParseObjCPropertyDynamic() local
1759 propertyId, 0, SourceLocation()); in ParseObjCPropertyDynamic()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBoxModelObject.cpp103 bool RenderBoxModelObject::startTransition(double timeOffset, CSSPropertyID propertyId, const Rende… in startTransition() argument
107 …return layer()->compositedLayerMapping()->startTransition(timeOffset, propertyId, fromStyle, toSty… in startTransition()
110 void RenderBoxModelObject::transitionPaused(double timeOffset, CSSPropertyID propertyId) in transitionPaused() argument
114 layer()->compositedLayerMapping()->transitionPaused(timeOffset, propertyId); in transitionPaused()
117 void RenderBoxModelObject::transitionFinished(CSSPropertyID propertyId) in transitionFinished() argument
121 layer()->compositedLayerMapping()->transitionFinished(propertyId); in transitionFinished()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.cpp740 CSSPropertyID propertyId = cssPropertyID(name); in styleWithProperties() local
742 … String canonicalPropertyName = propertyId ? getPropertyNameString(propertyId) : name; in styleWithProperties()
/external/clang/include/clang/AST/
DDeclObjC.h1694 ObjCPropertyImplDecl *FindPropertyImplDecl(IdentifierInfo *propertyId) const;