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

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPropertySourceData.cpp58 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range) argument
61 , important(important)
71 , important(other.important)
81 , important(false)
100 if (important)
101 result.appendLiteral(" !important");
110 return StringHash::hash(name) + 3 * StringHash::hash(value) + 7 * important + 13 * parsedOk + 31;
H A DCSSProperty.h36 StylePropertyMetadata(CSSPropertyID propertyID, bool isSetFromShorthand, int indexInShorthandsVector, bool important, bool implicit, bool inherited) argument
40 , m_important(important)
59 CSSProperty(CSSPropertyID propertyID, PassRefPtrWillBeRawPtr<CSSValue> value, bool important = false, bool isSetFromShorthand = false, int indexInShorthandsVector = 0, bool implicit = false)
60 : m_metadata(propertyID, isSetFromShorthand, indexInShorthandsVector, important, implicit, CSSPropertyMetadata::isInheritedProperty(propertyID))
H A DCSSPropertySourceData.h58 CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range);
69 bool important; member in struct:blink::CSSPropertySourceData
H A DPropertySetCSSStyleDeclaration.cpp196 return propertySet().propertyIsImportant(propertyID) ? "important" : "";
224 bool important = equalIgnoringCase(priority, "important");
225 if (!important && !priority.isEmpty())
228 setPropertyInternal(propertyID, value, important, exceptionState);
260 void AbstractPropertySetCSSStyleDeclaration::setPropertyInternal(CSSPropertyID propertyID, const String& value, bool important, ExceptionState&) argument
265 bool changed = propertySet().setProperty(propertyID, value, important, contextStyleSheet());
279 // FIXME: It is likely that the identity is not important for web compatibility and this code should be removed.
H A DStylePropertySet.cpp259 bool MutableStylePropertySet::setProperty(CSSPropertyID propertyID, const String& value, bool important, StyleSheetContents* contextStyleSheet) argument
268 return CSSParser::parseValue(this, propertyID, value, important, cssParserMode(), contextStyleSheet);
271 void MutableStylePropertySet::setProperty(CSSPropertyID propertyID, PassRefPtrWillBeRawPtr<CSSValue> prpValue, bool important) argument
275 setProperty(CSSProperty(propertyID, prpValue, important));
283 m_propertyVector.append(CSSProperty(shorthand.properties()[i], value, important));
328 bool MutableStylePropertySet::setProperty(CSSPropertyID propertyID, CSSValueID identifier, bool important) argument
330 setProperty(CSSProperty(propertyID, cssValuePool().createIdentifierValue(identifier), important));
357 // Only add properties that have no !important counterpart present
608 result.appendLiteral(" !important");
/external/chromium_org/testing/perf/
H A Dperf_test.cc22 bool important) {
27 important ? "*" : "", measurement.c_str(), modifier.c_str(),
39 bool important) {
42 prefix, suffix, units, important).c_str());
55 bool important) {
63 important);
71 bool important) {
79 important);
88 bool important) {
97 important);
15 ResultsToString(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& prefix, const std::string& suffix, const std::string& units, bool important) argument
32 PrintResultsImpl(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& prefix, const std::string& suffix, const std::string& units, bool important) argument
50 PrintResult(const std::string& measurement, const std::string& modifier, const std::string& trace, size_t value, const std::string& units, bool important) argument
66 PrintResult(const std::string& measurement, const std::string& modifier, const std::string& trace, double value, const std::string& units, bool important) argument
82 AppendResult(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, size_t value, const std::string& units, bool important) argument
100 PrintResult(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& value, const std::string& units, bool important) argument
116 AppendResult(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& value, const std::string& units, bool important) argument
133 PrintResultMeanAndError(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& mean_and_error, const std::string& units, bool important) argument
143 AppendResultMeanAndError(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& mean_and_error, const std::string& units, bool important) argument
154 PrintResultList(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& units, bool important) argument
164 AppendResultList(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& units, bool important) argument
175 PrintSystemCommitCharge(const std::string& test_name, size_t charge, bool important) argument
181 PrintSystemCommitCharge(FILE* target, const std::string& test_name, size_t charge, bool important) argument
189 SystemCommitChargeToString(const std::string& test_name, size_t charge, bool important) 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);
H A DBisonCSSParser-in.cpp228 static bool parseColorValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) argument
249 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important));
256 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important));
323 static bool parseSimpleLengthValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, CSSParserMode cssParserMode) argument
354 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important));
674 static bool parseKeywordValue(MutableStylePropertySet* declaration, CSSPropertyID propertyId, const String& string, bool important, const CSSParserContext& parserContext) argument
706 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important));
856 static bool parseSimpleTransform(MutableStylePropertySet* properties, CSSPropertyID propertyID, const String& string, bool important) argument
876 properties->addParsedProperty(CSSProperty(propertyID, transformList.release(), important));
880 bool BisonCSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, cons argument
895 parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode cssParserMode, StyleSheetContents* contextStyleSheet) argument
918 parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, StyleSheetContents* contextStyleSheet) argument
1083 filterProperties(bool important, const WillBeHeapVector<CSSProperty, 256>& input, WillBeHeapVector<CSSProperty, 256>& output, size_t& unusedEntries, BitArray<numCSSProperties>& seenProperties) argument
1133 parseValue(CSSPropertyID propId, bool important) argument
[all...]
H A DCSSPropertyParser.cpp125 bool CSSPropertyParser::parseValue(CSSPropertyID property, bool important, argument
130 return parser.parseValue(property, important);
133 void CSSPropertyParser::addPropertyWithPrefixingVariant(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important, bool implicit) argument
136 addProperty(propId, value, important, implicit);
145 addProperty(prefixingVariant, val.release(), important, implicit);
148 addProperty(prefixingVariant, val.release(), important, implicit);
152 void CSSPropertyParser::addProperty(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important, bool implicit) argument
173 m_parsedProperties.append(CSSProperty(propId, value, important, setFromShorthand, shorthandIndex, m_implicitShorthand || implicit));
414 void CSSPropertyParser::addExpandedPropertyForValue(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> prpValue, bool important) argument
419 addPropertyWithPrefixingVariant(propId, prpValue, important);
430 parseValue(CSSPropertyID propId, bool important) argument
1561 parseFillShorthand(CSSPropertyID propId, const CSSPropertyID* properties, int numProperties, bool important) argument
1729 parseAnimationShorthand(CSSPropertyID propId, bool important) argument
1790 parseTransitionShorthand(CSSPropertyID propId, bool important) argument
1871 parseColumnsShorthand(bool important) argument
1926 parseShorthand(CSSPropertyID propId, const StylePropertyShorthand& shorthand, bool important) argument
1973 parse4Values(CSSPropertyID propId, const CSSPropertyID *properties, bool important) argument
2032 parsePage(CSSPropertyID propId, bool important) argument
2054 parseSize(CSSPropertyID propId, bool important) argument
2146 parseContent(CSSPropertyID propId, bool important) argument
2973 parseWebkitTransformOriginShorthand(bool important) argument
3270 parseGridItemPositionShorthand(CSSPropertyID shorthandId, bool important) argument
3300 parseGridTemplateRowsAndAreas(PassRefPtrWillBeRawPtr<CSSValue> templateColumns, bool important) argument
3360 parseGridTemplateShorthand(bool important) argument
3414 parseGridShorthand(bool important) argument
3474 parseGridAreaShorthand(bool important) argument
3885 parseClipShape(CSSPropertyID propId, bool important) argument
4070 parseLegacyPosition(CSSPropertyID propId, bool important) argument
4095 parseItemPositionOverflowPosition(CSSPropertyID propId, bool important) argument
4399 parseFont(bool important) argument
4586 parseLineHeight(bool important) argument
4601 parseFontSize(bool important) argument
4616 parseFontVariant(bool important) argument
4665 parseFontWeight(bool important) argument
5547 parseFlex(CSSParserValueList* args, bool important) argument
5690 commitMaskBoxImage(CSSPropertyParser* parser, bool important) argument
5699 commitBorderImage(CSSPropertyParser* parser, bool important) argument
5708 commitBorderImageProperty(CSSPropertyID propId, CSSPropertyParser* parser, PassRefPtrWillBeRawPtr<CSSValue> value, bool important) argument
5798 parseBorderImageShorthand(CSSPropertyID propId, bool important) argument
6087 parseBorderRadius(CSSPropertyID propId, bool important) argument
7344 addTextDecorationProperty(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important) argument
7356 parseTextDecoration(CSSPropertyID propId, bool important) argument
7394 parseTextUnderlinePosition(bool important) argument
7412 parseTextEmphasisStyle(bool important) argument
7508 parseLineBoxContain(bool important) argument
7578 parseFontFeatureSettings(bool important) argument
7600 parseFontVariantLigatures(bool important) argument
7670 parseViewportProperty(CSSPropertyID propId, bool important) argument
7730 parseViewportShorthand(CSSPropertyID propId, CSSPropertyID first, CSSPropertyID second, bool important) argument
7841 parseSVGValue(CSSPropertyID propId, bool important) argument
[all...]
/external/chromium_org/third_party/webrtc/test/testsupport/
H A Dperf_test.cc29 bool important) {
38 if (important) {
53 bool important) {
55 prefix, suffix, units, important).c_str());
68 bool important) {
72 units, important);
81 bool important) {
86 "", "", units, important);
94 bool important) {
96 important);
22 ResultsToString(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& prefix, const std::string& suffix, const std::string& units, bool important) argument
46 PrintResultsImpl(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& prefix, const std::string& suffix, const std::string& units, bool important) argument
63 PrintResult(const std::string& measurement, const std::string& modifier, const std::string& trace, size_t value, const std::string& units, bool important) argument
75 AppendResult(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, size_t value, const std::string& units, bool important) argument
89 PrintResult(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& value, const std::string& units, bool important) argument
99 AppendResult(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& value, const std::string& units, bool important) argument
110 PrintResultMeanAndError(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& mean_and_error, const std::string& units, bool important) argument
120 AppendResultMeanAndError(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& mean_and_error, const std::string& units, bool important) argument
131 PrintResultList(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& units, bool important) argument
141 AppendResultList(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& units, bool important) argument
152 PrintSystemCommitCharge(const std::string& test_name, size_t charge, bool important) argument
158 PrintSystemCommitCharge(FILE* target, const std::string& test_name, size_t charge, bool important) argument
166 SystemCommitChargeToString(const std::string& test_name, size_t charge, bool important) argument
[all...]
/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/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingStyle.cpp495 void EditingStyle::setProperty(CSSPropertyID propertyID, const String& value, bool important) argument
500 m_mutableStyle->setProperty(propertyID, value, important);
/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 ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 8392 milliseconds