/external/webkit/Source/WebCore/css/ |
themeChromiumSkia.css | 36 font-weight: normal !important;
|
CSSPropertySourceData.cpp | 57 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range) 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;
|
CSSParser.h | 66 static bool parseValue(CSSMutableStyleDeclaration*, int propId, const String&, bool important, bool strict); 77 void addProperty(int propId, PassRefPtr<CSSValue>, bool important); 81 bool parseValue(int propId, bool important); 82 bool parseShorthand(int propId, const int* properties, int numProperties, bool important); 83 bool parse4Values(int propId, const int* properties, bool important); 84 bool parseContent(int propId, bool important); 85 bool parseQuotes(int propId, bool important); 103 bool parseFillShorthand(int propId, const int* properties, int numProperties, bool important); 122 bool parseTransitionShorthand(bool important); 123 bool parseAnimationShorthand(bool important); [all...] |
CSSProperty.h | 35 CSSProperty(int propID, PassRefPtr<CSSValue> value, bool important = false, int shorthandID = 0, bool implicit = false) 38 , m_important(important)
|
CSSPropertySourceData.h | 55 CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range); 64 bool important; member in struct:WebCore::CSSPropertySourceData
|
view-source.css | 33 white-space: pre-wrap !important; 41 padding: 0 !important; 48 padding: 0 4px !important; 51 border-right: 1px solid rgb(187, 187, 187) !important; 80 padding: 0 5px !important;
|
CSSStyleDeclaration.cpp | 61 return getPropertyPriority(propID) ? "important" : ""; 85 size_t important = value.find("!important", 0, false); local 89 if (important == notFound) 92 setProperty(propertyID, value.left(important - 1), true, ec); 102 bool important = priority.find("important", 0, false) != notFound; local 103 setProperty(propID, value, important, ec);
|
mediaControlsQuickTime.css | 50 border: none !important; 58 border: none !important; 127 border: none !important; 133 border: none !important; 142 border: none !important; 153 border: none !important; 163 border: none !important; 196 border: none !important; 232 border: none !important;
|
CSSMutableStyleDeclaration.h | 104 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&); 109 bool setProperty(int propertyID, int value, bool important = false, bool notifyChanged = true); 110 bool setProperty(int propertyId, double value, CSSPrimitiveValue::UnitTypes, bool important = false, bool notifyChanged = true); 111 bool setProperty(int propertyID, const String& value, bool important = false, bool notifyChanged = true); 116 void setLengthProperty(int propertyId, const String& value, bool important, bool multiLength = false); 117 void setStringProperty(int propertyId, const String& value, CSSPrimitiveValue::UnitTypes, bool important = false); // parsed string value 118 void setImageProperty(int propertyId, const String& url, bool important = false);
|
CSSParser.cpp | 311 static bool parseColorValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& string, bool important, bool strict) 335 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createIdentifierValue(valueID), important); 342 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createColorValue(color), important); 389 static bool parseSimpleLengthValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& string, bool important, bool strict) 426 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createValue(number, unit), important); 431 bool CSSParser::parseValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& string, bool important, bool strict) 433 if (parseSimpleLengthValue(declaration, propertyId, string, important, strict)) 435 if (parseColorValue(declaration, propertyId, string, important, strict)) 438 return parser.parseValue(declaration, propertyId, string, important); 441 bool CSSParser::parseValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& string, bool important) [all...] |
mediaControlsQt.css | 72 border: none !important; 80 border: none !important; 88 border: none !important; 96 border: none !important; 226 border: none !important; 259 box-sizing: content-box !important;
|
SVGCSSParser.cpp | 41 bool CSSParser::parseSVGValue(int propId, bool important) 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);
|
wml.css | 144 -webkit-text-security: disc !important; 148 background-color: #FAFFBD !important; 149 background-image:none !important; 150 color: #000000 !important;
|
CSSMutableStyleDeclaration.cpp | 88 bool important = property->isImportant(); local 90 if (!important && candidates.get(property->id())) 95 candidates.set(property->id(), important); 551 void CSSMutableStyleDeclaration::setProperty(int propertyID, const String& value, bool important, ExceptionCode& ec) 554 setProperty(propertyID, value, important, true); 563 bool CSSMutableStyleDeclaration::setProperty(int propertyID, const String& value, bool important, bool notifyChanged) 576 bool success = CSSParser::parseValue(this, propertyID, value, important, useStrictParsing()); 600 bool CSSMutableStyleDeclaration::setProperty(int propertyID, int value, bool important, bool notifyChanged) 602 CSSProperty property(propertyID, CSSPrimitiveValue::createIdentifier(value), important); 609 bool CSSMutableStyleDeclaration::setProperty(int propertyID, double value, CSSPrimitiveValue::UnitTypes unit, bool important, bool notifyChanged [all...] |
CSSComputedStyleDeclaration.h | 75 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&);
|
CSSStyleDeclaration.h | 65 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&) = 0;
|
/external/chromium/chrome/browser/resources/ntp4/ |
recently_closed.css | 28 background-color: transparent !important; 50 color: hsl(213, 90%, 24%) !important;
|
apps_page.css | 45 -webkit-transition: none !important;
|
/dalvik/dx/tests/069-dex-source-position/ |
run | 20 dx --debug --dex --no-optimize --positions=important --no-locals \
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8CSSStyleDeclarationCustom.cpp | 206 int importantIndex = propertyValue.find("!important", 0, false); 207 bool important = false; local 209 important = true; 212 imp->setProperty(propInfo->propID, propertyValue, important, ec);
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
LeaksViewer.css | 81 display: none !important;
|
/external/webkit/Source/WebCore/inspector/front-end/ |
inspectorSyntaxHighlight.css | 49 .webkit-css-important {
|
inspector.css | 70 display: none !important; 479 background-color: white !important; 491 background-position: 32px 0 !important; 495 background-color: rgba(255, 255, 255, 0.33) !important; 504 background-position: 0 0 !important; 608 font-size: 10px !important; 619 font-size: 11px !important; 624 font-size: 12px !important; 629 font-size: 11px !important; 793 margin: 0 0 0 12px !important; [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-docs.css | 416 color:#bbb !important; 417 cursor:default !important; 418 text-decoration:none !important; 430 text-decoration:underline !important; 431 cursor:pointer !important; 438 background-color:#eaeaea !important; 445 background-color: #435a6e !important; 451 background-color:#f6f6f6 !important; 1257 margin-left:0 !important; 1258 height:auto !important; [all...] |
/external/doclava/res/assets/templates/assets/ |
doclava-developer-docs.css | 416 color:#bbb !important; 417 cursor:default !important; 418 text-decoration:none !important; 430 text-decoration:underline !important; 431 cursor:pointer !important; 438 background-color:#eaeaea !important; 445 background-color: #435a6e !important; 451 background-color:#f6f6f6 !important; 1114 margin-left:0 !important; 1115 height:auto !important; [all...] |