HomeSort by relevance Sort by last modified time
    Searched refs:propertyID (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
DOMWindowCSS.cpp 61 CSSPropertyID propertyID = cssPropertyID(property.stripWhiteSpace());
62 if (propertyID == CSSPropertyInvalid)
65 if (!RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID))
78 return CSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, CSSStrictMode, 0);
PropertySetCSSStyleDeclaration.cpp 167 CSSPropertyID propertyID = cssPropertyID(propertyName);
168 if (!propertyID)
170 return cloneAndCacheForCSSOM(m_propertySet->getPropertyCSSValue(propertyID).get());
175 CSSPropertyID propertyID = cssPropertyID(propertyName);
176 if (!propertyID)
178 return m_propertySet->getPropertyValue(propertyID);
183 CSSPropertyID propertyID = cssPropertyID(propertyName);
184 if (!propertyID)
186 return m_propertySet->propertyIsImportant(propertyID) ? "important" : "";
191 CSSPropertyID propertyID = cssPropertyID(propertyName)
    [all...]
StylePropertySet.cpp 109 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)
148 StylePropertyShorthand shorthand = shorthandForProperty(propertyID);
154 CSSPropertyID prefixingVariant = prefixingVariantForPropertyId(propertyID);
155 if (prefixingVariant == propertyID)
162 bool MutableStylePropertySet::removeProperty(CSSPropertyID propertyID, String* returnText
    [all...]
CSSProperty.h 34 StylePropertyMetadata(CSSPropertyID propertyID, bool isSetFromShorthand, int indexInShorthandsVector, bool important, bool implicit, bool inherited)
35 : m_propertyID(propertyID)
56 CSSProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> value, bool important = false, bool isSetFromShorthand = false, int indexInShorthandsVector = 0, bool implicit = false)
57 : m_metadata(propertyID, isSetFromShorthand, indexInShorthandsVector, important, implicit, isInheritedProperty(propertyID))
60 ASSERT((propertyID == CSSPropertyVariable) == (m_value && m_value->isVariableValue()));
92 CSSPropertyID propertyId = CSSPropertyInvalid;
95 propertyId = CSSPropertyWebkitTransitionDelay;
98 propertyId = CSSPropertyWebkitTransitionDuration;
101 propertyId = CSSPropertyWebkitTransitionProperty
    [all...]
CSSPrimitiveValue.cpp 207 static const AtomicString& propertyName(CSSPropertyID propertyID)
209 ASSERT_ARG(propertyID, propertyID >= 0);
210 ASSERT_ARG(propertyID, (propertyID >= firstCSSProperty && propertyID < firstCSSProperty + numCSSProperties));
212 if (propertyID < 0)
215 return getPropertyNameAtomicString(propertyID);
240 CSSPrimitiveValue::CSSPrimitiveValue(CSSPropertyID propertyID)
244 m_value.propertyID = propertyID
    [all...]
CSSComputedStyleDeclaration.cpp 590 static PassRefPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle* style)
594 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
599 ASSERT(propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
606 static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, CSSPropertyID propertyID, const RenderObject* renderer, RenderView* renderView)
612 switch (propertyID) {
630 LayoutUnit containingBlockSize = (propertyID == CSSPropertyLeft || propertyID == CSSPropertyRight)
    [all...]
SVGCSSComputedStyleDeclaration.cpp 73 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getSVGPropertyCSSValue(CSSPropertyID propertyID, EUpdateLayout updateLayout) const
91 switch (propertyID) {
207 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propertyID);
209 LOG_ERROR("unimplemented propertyID: %d", propertyID);
CSSPrimitiveValue.h 202 static PassRefPtr<CSSPrimitiveValue> createIdentifier(CSSPropertyID propertyID) { return adoptRef(new CSSPrimitiveValue(propertyID)); }
305 CSSPropertyID getPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID ? m_value.propertyID : CSSPropertyInvalid; }
366 CSSPropertyID propertyID;
CSSProperty.cpp 178 CSSPropertyID CSSProperty::resolveDirectionAwareProperty(CSSPropertyID propertyID, TextDirection direction, WritingMode writingMode)
180 switch (propertyID) {
254 return propertyID;
258 bool CSSProperty::isInheritedProperty(CSSPropertyID propertyID)
260 switch (propertyID) {
StylePropertySerializer.cpp 64 CSSPropertyID propertyID = property.id();
66 ASSERT(RuntimeCSSEnabled::isCSSPropertyEnabled(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, StringBuilder& result, String& commonValue) const
420 int foundPropertyIndex = m_propertySet.findPropertyIndex(propertyID);
    [all...]
CSSToStyleMap.cpp 59 PassRefPtr<StyleImage> CSSToStyleMap::styleImage(CSSPropertyID propertyId, CSSValue* value)
61 return m_elementStyleResources.styleImage(m_state.document()->textLinkColors(), propertyId, value);
228 void CSSToStyleMap::mapFillXPosition(CSSPropertyID propertyID, FillLayer* layer, CSSValue* value) const
243 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPositionX || propertyID == CSSPropertyWebkitMaskPositionX);
264 void CSSToStyleMap::mapFillYPosition(CSSPropertyID propertyID, FillLayer* layer, CSSValue* value) const
279 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPositionY || propertyID == CSSPropertyWebkitMaskPositionY)
    [all...]
CSSParser-in.cpp 408 static inline bool isColorPropertyID(CSSPropertyID propertyId)
410 switch (propertyId) {
437 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
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)
471 switch (propertyId) {
533 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode)
537 if (!isSimpleLengthPropertyID(propertyId, acceptsNegativeNumbers)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/scripts/templates/
StylePropertyShorthand.cpp.tmpl 46 const StylePropertyShorthand& shorthandForProperty(CSSPropertyID propertyID)
49 switch (propertyID) {
67 const Vector<StylePropertyShorthand> matchingShorthandsForLonghand(CSSPropertyID propertyID)
80 return map.get(propertyID);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 144 static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, CSSValueID primitiveValue, const QualifiedName& tagName)
146 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
230 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName)
232 return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
234 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName)
236 return adoptPtr(new HTMLAttributeEquivalent(propertyID, attrName));
356 EditingStyle::EditingStyle(CSSPropertyID propertyID, const String& value)
361 setProperty(propertyID, value);
473 void EditingStyle::setProperty(CSSPropertyID propertyID, const String& value, bool important)
478 m_mutableStyle->setProperty(propertyID, value, important)
    [all...]
EditingStyle.h 95 static PassRefPtr<EditingStyle> create(CSSPropertyID propertyID, const String& value)
97 return adoptRef(new EditingStyle(propertyID, value));
EditorCommand.cpp 118 static bool executeApplyStyle(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue)
121 style->setProperty(propertyID, propertyValue);
125 static bool executeApplyStyle(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValueID propertyValue)
128 style->setProperty(propertyID, propertyValue);
135 static bool executeToggleStyleInList(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValue* value)
141 RefPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(propertyID);
155 newMutableStyle->setProperty(propertyID, newStyle);
159 static bool executeToggleStyle(Frame* frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const char* offValue, const char* onValue)
167 styleIsPresent = frame->editor()->selectionStartHasStyle(propertyID, onValue);
169 styleIsPresent = frame->editor()->selectionHasStyle(propertyID, onValue) == TrueTriState
    [all...]
Editor.cpp 700 bool Editor::selectionStartHasStyle(CSSPropertyID propertyID, const String& value) const
702 return EditingStyle::create(propertyID, value)->triStateOfStyle(
703 EditingStyle::styleAtSelectionStart(m_frame->selection()->selection(), propertyID == CSSPropertyBackgroundColor).get());
706 TriState Editor::selectionHasStyle(CSSPropertyID propertyID, const String& value) const
708 return EditingStyle::create(propertyID, value)->triStateOfStyle(m_frame->selection()->selection());
711 String Editor::selectionStartCSSPropertyValue(CSSPropertyID propertyID)
714 propertyID == CSSPropertyBackgroundColor);
718 if (propertyID == CSSPropertyFontSize)
720 return selectionStyle->style()->getPropertyValue(propertyID);
    [all...]
markup.cpp 457 static bool propertyMissingOrEqualToNone(StylePropertySet* style, CSSPropertyID propertyID)
461 RefPtr<CSSValue> value = style->getPropertyCSSValue(propertyID);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 135 CSSPropertyID propertyID = cssPropertyID(propName);
136 if (propertyID && RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID)) {
138 propInfo->propID = propertyID;
153 CSSPropertyID propertyId = static_cast<CSSPropertyID>(id);
154 if (RuntimeCSSEnabled::isCSSPropertyEnabled(propertyId))
155 propertyNames.append(getJSPropertyName(propertyId));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 66 CSSPropertyID propertyId = cssPropertyID(attrName.localName());
67 if (!propertyId && attrName == transform_originAttr)
68 propertyId = CSSPropertyWebkitTransformOrigin; // cssPropertyID("-webkit-transform-origin")
69 ASSERT(propertyId > 0);
70 propertyNameToIdMap->set(attrName.localName().impl(), propertyId);
289 CSSPropertyID propertyID = SVGElement::cssPropertyIdForSVGAttributeName(attr->name());
290 style->setProperty(propertyID, attr->value());
291 RefPtr<CSSValue> cssValue = style->getPropertyCSSValue(propertyID);
718 CSSPropertyID propertyID = cssPropertyIdForSVGAttributeName(name);
719 if (propertyID > 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
CSSPropertyAnimation.cpp 333 static void addPropertyWrapper(CSSPropertyID propertyID, AnimationPropertyWrapperBase* wrapper)
335 int propIndex = propertyID - firstCSSProperty;
344 static AnimationPropertyWrapperBase* wrapperForProperty(CSSPropertyID propertyID)
346 int propIndex = propertyID - firstCSSProperty;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 
  /external/clang/lib/AST/
DeclObjC.cpp 164 IdentifierInfo *propertyID) {
173 DeclContext::lookup_const_result R = DC->lookup(propertyID);
193 /// in 'PropertyId' and returns it. It returns 0, if not found.
195 ObjCContainerDecl::FindPropertyDeclaration(IdentifierInfo *PropertyId) const {
204 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId))
214 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
226 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration(PropertyId))
234 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
239 return superClass->FindPropertyDeclaration(PropertyId);
248 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
    [all...]

Completed in 907 milliseconds

1 2