Searched defs:important (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DSVGCSSParser.cpp41 bool CSSParser::parseSVGValue(int propId, bool important) argument
272 return parseShadow(propId, important);
279 if (!parseValue(CSSPropertyMarkerStart, important))
286 addProperty(CSSPropertyMarkerMid, value, important);
287 addProperty(CSSPropertyMarkerEnd, value, important);
312 addProperty(propId, parsedValue.release(), important);
H A DCSSPropertySourceData.cpp57 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range) argument
60 , important(important)
69 , important(other.important)
78 , important(false)
87 DEFINE_STATIC_LOCAL(String, importantSuffix, (" !important"));
94 if (important)
102 return StringHash::hash(name) + 3 * StringHash::hash(value) + 7 * important + 13 * parsedOk + 31;
H A DCSSPropertySourceData.h55 CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range);
64 bool important; member in struct:WebCore::CSSPropertySourceData
H A DCSSStyleDeclaration.cpp62 return getPropertyPriority(propID) ? "important" : "";
86 size_t important = value.find("!important", 0, false); local
90 if (important == notFound)
93 setProperty(propertyID, value.left(important - 1), true, ec);
103 bool important = priority.find("important", 0, false) != notFound; local
104 setProperty(propID, value, important, ec);
H A DCSSMutableStyleDeclaration.cpp88 bool important = property->isImportant(); local
90 if (!important && candidates.get(property->id()))
95 candidates.set(property->id(), important);
537 void CSSMutableStyleDeclaration::setProperty(int propertyID, const String& value, bool important, ExceptionCode& ec) argument
540 setProperty(propertyID, value, important, true);
549 bool CSSMutableStyleDeclaration::setProperty(int propertyID, const String& value, bool important, bool notifyChanged) argument
562 bool success = CSSParser::parseValue(this, propertyID, value, important, useStrictParsing());
586 bool CSSMutableStyleDeclaration::setProperty(int propertyID, int value, bool important, bool notifyChanged) argument
588 CSSProperty property(propertyID, CSSPrimitiveValue::createIdentifier(value), important);
595 bool CSSMutableStyleDeclaration::setProperty(int propertyID, double value, CSSPrimitiveValue::UnitTypes unit, bool important, boo argument
604 setStringProperty(int propertyId, const String &value, CSSPrimitiveValue::UnitTypes type, bool important) argument
612 setImageProperty(int propertyId, const String& url, bool important) argument
655 setLengthProperty(int propertyId, const String& value, bool important, bool ) argument
[all...]
H A DCSSParser.cpp289 static bool parseColorValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& string, bool important, bool strict) argument
313 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createIdentifierValue(valueID), important);
320 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createColorValue(color), important);
367 static bool parseSimpleLengthValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& string, bool important, bool strict) argument
404 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createValue(number, unit), important);
409 bool CSSParser::parseValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& string, bool important, bool strict) argument
411 if (parseSimpleLengthValue(declaration, propertyId, string, important, strict))
413 if (parseColorValue(declaration, propertyId, string, important, strict))
416 return parser.parseValue(declaration, propertyId, string, important);
419 bool CSSParser::parseValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& string, bool important) argument
582 addProperty(int propId, PassRefPtr<CSSValue> value, bool important) argument
755 parseValue(int propId, bool important) argument
2097 parseFillShorthand(int propId, const int* properties, int numProperties, bool important) argument
2243 parseAnimationShorthand(bool important) argument
2304 parseTransitionShorthand(bool important) argument
2362 parseShorthand(int propId, const int *properties, int numProperties, bool important) argument
2400 parse4Values(int propId, const int *properties, bool important) argument
2462 parsePage(int propId, bool important) argument
2484 parseSize(int propId, bool important) argument
2558 parseQuotes(int propId, bool important) argument
2581 parseContent(int propId, bool important) argument
3374 parseDashboardRegions(int propId, bool important) argument
3553 parseShape(int propId, bool important) argument
3603 parseFont(bool important) argument
3771 parseFontStyle(bool important) argument
3818 parseFontVariant(bool important) argument
3865 parseFontWeight(bool important) argument
4634 parseShadow(int propId, bool important) argument
4701 parseReflect(int propId, bool important) argument
4815 commitBorderImage(CSSParser* p, bool important) argument
4890 parseBorderImage(int propId, bool important, RefPtr<CSSValue>& result) argument
4952 parseBorderRadius(int propId, bool important) argument
5012 parseCounter(int propId, int defaultValue, bool important) argument
5817 parseTextEmphasisStyle(bool important) argument
5874 parseLineBoxContain(bool important) argument
[all...]
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp206 int importantIndex = propertyValue.find("!important", 0, false);
207 bool important = false; local
209 important = true;
212 imp->setProperty(propInfo->propID, propertyValue, important, ec);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DBuildResultsElement.java137 boolean important; field in class:BuildResultsElement
310 this.important = this.milestone || Util.getNextMilestone(this.name) == null;
333 * Returns whether the build is important to be shown.
339 return this.important;
/external/webkit/Source/WebCore/editing/
H A DEditingStyle.cpp338 void EditingStyle::setProperty(int propertyID, const String& value, bool important) argument
344 m_mutableStyle->setProperty(propertyID, value, important, ec);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...

Completed in 287 milliseconds