Searched refs:propertyId (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSProperty.h92 CSSPropertyID propertyId = CSSPropertyInvalid; local
95 propertyId = CSSPropertyWebkitTransitionDelay;
98 propertyId = CSSPropertyWebkitTransitionDuration;
101 propertyId = CSSPropertyWebkitTransitionProperty;
104 propertyId = CSSPropertyWebkitTransitionTimingFunction;
107 propertyId = CSSPropertyWebkitTransition;
110 propertyId = CSSPropertyTransitionDelay;
113 propertyId = CSSPropertyTransitionDuration;
116 propertyId = CSSPropertyTransitionProperty;
119 propertyId
[all...]
H A DCSSToStyleMap.cpp59 PassRefPtr<StyleImage> CSSToStyleMap::styleImage(CSSPropertyID propertyId, CSSValue* value) argument
61 return m_elementStyleResources.styleImage(m_state.document()->textLinkColors(), propertyId, value);
H A DCSSParser-in.cpp408 static inline bool isColorPropertyID(CSSPropertyID propertyId) argument
410 switch (propertyId) {
437 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) argument
441 if (!isColorPropertyID(propertyId))
458 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important));
465 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important));
469 static inline bool isSimpleLengthPropertyID(CSSPropertyID propertyId, bool& acceptsNegativeNumbers) argument
471 switch (propertyId) {
533 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) argument
537 if (!isSimpleLengthPropertyID(propertyId, acceptsNegativeNumber
565 isValidKeywordPropertyAndValue(CSSPropertyID propertyId, int valueID, const CSSParserContext& parserContext) argument
927 isKeywordPropertyID(CSSPropertyID propertyId) argument
1034 parseKeywordValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, const CSSParserContext& parserContext) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DRuntimeCSSEnabled.cpp110 size_t indexForProperty(CSSPropertyID propertyId) argument
112 RELEASE_ASSERT(propertyId >= 0 && propertyId <= lastCSSProperty);
113 ASSERT(propertyId != CSSPropertyInvalid);
114 return static_cast<size_t>(propertyId);
117 bool RuntimeCSSEnabled::isCSSPropertyEnabled(CSSPropertyID propertyId) argument
119 return propertySwitches()[indexForProperty(propertyId)];
122 void RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyID propertyId, bool enable) argument
124 propertySwitches()[indexForProperty(propertyId)] = enable;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolverState.h97 PassRefPtr<StyleImage> styleImage(CSSPropertyID propertyId, CSSValue* value) argument
99 return m_elementStyleResources.styleImage(document()->textLinkColors(), propertyId, value);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInstrumentation.cpp222 bool cssErrorFilter(const CSSParserString& content, int propertyId, int errorType) argument
224 return InspectorCSSAgent::cssErrorFilter(content, propertyId, errorType);
H A DInspectorInstrumentation.h167 bool cssErrorFilter(const CSSParserString& content, int propertyId, int errorType);
H A DInspectorCSSAgent.h95 static bool cssErrorFilter(const CSSParserString& content, int propertyId, int errorType);
H A DInspectorCSSAgent.cpp635 bool InspectorCSSAgent::cssErrorFilter(const CSSParserString& content, int propertyId, int errorType) argument
646 if (propertyId == CSSPropertyFilter)
653 if (propertyId == CSSPropertyFilter)
661 if (propertyId == CSSPropertyCursor && content.equalIgnoringCase("hand"))
684 if (propertyId == CSSPropertyUnicodeBidi && content.startsWithIgnoringCase("isolate"))
H A DInspectorStyleSheet.cpp750 CSSPropertyID propertyId = cssPropertyID(name);
752 String canonicalPropertyName = propertyId ? getPropertyNameString(propertyId) : name;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp153 CSSPropertyID propertyId = static_cast<CSSPropertyID>(id); local
154 if (RuntimeCSSEnabled::isCSSPropertyEnabled(propertyId))
155 propertyNames.append(getJSPropertyName(propertyId));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.cpp66 CSSPropertyID propertyId = cssPropertyID(attrName.localName()); local
67 if (!propertyId && attrName == transform_originAttr)
68 propertyId = CSSPropertyWebkitTransformOrigin; // cssPropertyID("-webkit-transform-origin")
69 ASSERT(propertyId > 0);
70 propertyNameToIdMap->set(attrName.localName().impl(), propertyId);
/external/clang/lib/Parse/
H A DParseObjc.cpp1702 IdentifierInfo *propertyId = Tok.getIdentifierInfo(); local
1710 Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId); local
1723 propertyId, propertyIvar, propertyIvarLoc); local
1756 IdentifierInfo *propertyId = Tok.getIdentifierInfo(); local
1759 propertyId, 0, SourceLocation()); local
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.cpp102 bool RenderBoxModelObject::startTransition(double timeOffset, CSSPropertyID propertyId, const RenderStyle* fromStyle, const RenderStyle* toStyle) argument
106 return layer()->backing()->startTransition(timeOffset, propertyId, fromStyle, toStyle);
109 void RenderBoxModelObject::transitionPaused(double timeOffset, CSSPropertyID propertyId) argument
113 layer()->backing()->transitionPaused(timeOffset, propertyId);
116 void RenderBoxModelObject::transitionFinished(CSSPropertyID propertyId) argument
120 layer()->backing()->transitionFinished(propertyId);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/include/clang/AST/
H A DDeclObjC.h1694 ObjCPropertyImplDecl *FindPropertyImplDecl(IdentifierInfo *propertyId) const;

Completed in 656 milliseconds