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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/core/css/
themeChromiumSkia.css 36 font-weight: normal !important;
navigationTransitions.css 12 pointer-events: none !important;
CSSPropertySourceData.cpp 58 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range)
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;
CSSProperty.h 35 StylePropertyMetadata(CSSPropertyID propertyID, bool isSetFromShorthand, int indexInShorthandsVector, bool important, bool implicit, bool inherited)
39 , m_important(important)
58 CSSProperty(CSSPropertyID propertyID, PassRefPtrWillBeRawPtr<CSSValue> value, bool important = false, bool isSetFromShorthand = false, int indexInShorthandsVector = 0, bool implicit = false)
59 : m_metadata(propertyID, isSetFromShorthand, indexInShorthandsVector, important, implicit, isInheritedProperty(propertyID))
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
SecurityMessageDisplay.java 20 public void setMessage(CharSequence msg, boolean important);
22 public void setMessage(int resId, boolean important);
24 public void setMessage(int resId, boolean important, Object... formatArgs);
  /external/chromium_org/testing/perf/
perf_test.cc 22 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);
    [all...]
perf_test.h 18 // of the units of measure, e.g. "bytes". If |important| is true, the output
30 bool important);
36 bool important);
44 bool important);
53 bool important);
61 bool important);
71 bool important);
79 bool important);
90 bool important);
98 bool important);
    [all...]
  /external/chromium_org/third_party/webrtc/test/testsupport/
perf_test.cc 29 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);
    [all...]
perf_test.h 29 // of the units of measure, e.g. "bytes". If |important| is true, the output
41 bool important);
49 bool important);
58 bool important);
66 bool important);
76 bool important);
84 bool important);
95 bool important);
103 bool important);
108 bool important);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.h 77 bool parseValue(CSSPropertyID, bool important);
86 bool parseViewportProperty(CSSPropertyID propId, bool important);
87 bool parseViewportShorthand(CSSPropertyID propId, CSSPropertyID first, CSSPropertyID second, bool important);
91 void addPropertyWithPrefixingVariant(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important, bool implicit = false);
92 void addProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important, bool implicit = false);
99 bool parseShorthand(CSSPropertyID, const StylePropertyShorthand&, bool important);
100 bool parse4Values(CSSPropertyID, const CSSPropertyID* properties, bool important);
101 bool parseContent(CSSPropertyID, bool important);
102 bool parseQuotes(CSSPropertyID, bool important);
125 bool parseFillShorthand(CSSPropertyID, const CSSPropertyID* properties, int numProperties, bool important);
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/value/
value_unittest_.py 26 a = value.Value(page0, 'x', 'unit', important=False)
27 b = value.Value(page1, 'x', 'unit', important=False)
33 a = value.Value(page0, 'x', 'unit', important=False)
34 b = value.Value(page0, 'x', 'incompatUnit', important=False)
37 a = value.Value(page0, 'x', 'unit', important=False)
38 b = value.Value(page0, 'x', 'unit', important=True)
41 a = value.Value(page0, 'x', 'unit', important=False)
42 b = value.ScalarValue(page0, 'x', 'unit', 3, important=True)
value_backcompat.py 24 page, value_name, units, value, important=True)
27 value, important=True)
31 page, value_name, units, value, important=False)
34 value, important=False)
38 page, value_name, units, raw_value_json=value, important=True)
42 page, value_name, units, raw_value_json=value, important=False)
__init__.py 40 def __init__(self, page, name, units, important):
49 self.important = important
54 self.important == that.important)
103 return self.important
105 return self.important
scalar.py 11 def __init__(self, page, name, units, value, important=True):
18 super(ScalarValue, self).__init__(page, name, units, important)
27 return 'ScalarValue(%s, %s, %s, %s, important=%s)' % (
31 self.important)
56 important=v0.important)
70 important=v0.important)
string.py 9 def __init__(self, page, name, units, value, important=True):
16 super(StringValue, self).__init__(page, name, units, important)
25 return 'ScalarValue(%s, %s, %s, %s, important=%s)' % (
29 self.important)
54 important=v0.important)
68 important=v0.important)
list_of_scalar_values.py 14 important=True, same_page_merge_policy=value_module.CONCATENATE):
15 super(ListOfScalarValues, self).__init__(page, name, units, important)
33 'important=%s, same_page_merge_policy=%s)') % (
37 self.important,
67 important=v0.important,
77 important=v0.important,
95 important=v0.important,
    [all...]
list_of_string_values.py 9 important=True, same_page_merge_policy=value_module.CONCATENATE):
10 super(ListOfStringValues, self).__init__(page, name, units, important)
28 'important=%s, same_page_merge_policy=%s)') % (
32 self.important,
62 important=v0.important,
72 important=v0.important,
90 important=v0.important,
    [all...]
histogram.py 23 raw_value=None, raw_value_json=None, important=True):
24 super(HistogramValue, self).__init__(page, name, units, important)
45 return 'HistogramValue(%s, %s, %s, raw_json_string="%s", important=%s)' % (
49 self.important)
88 important=v0.important)
  /external/chromium_org/chrome/browser/resources/gaia_auth/
keyboard_ui.css 14 !important;
21 !important;
  /external/chromium_org/third_party/WebKit/Source/web/resources/
calendarPicker.css 168 background-color: transparent !important;
169 background-image: none !important;
170 box-shadow: none !important;
183 border: 1px solid transparent !important;
184 height: 24px !important;
209 min-width: 0 !important;
210 padding-left: 0 !important;
211 padding-right: 0 !important;
212 -webkit-margin-start: 4px !important;
247 padding: 0 !important;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
chrome_shared.css 9 display: none !important;
13 -webkit-transition-delay: 0 !important;
14 -webkit-transition-duration: 0 !important;
  /external/chromium_org/chrome/third_party/chromevox/chromevox/background/
chrome_shared2.css 11 display: none !important;
15 -webkit-transition-delay: 0 !important;
16 -webkit-transition-duration: 0 !important;
  /external/chromium_org/ui/webui/resources/css/
chrome_shared.css 15 display: none !important;
19 -webkit-transition-delay: 0 !important;
20 -webkit-transition-duration: 0 !important;
  /external/chromium_org/chrome/browser/resources/chromeos/
proxy_settings.css 28 height: 100% !important;
42 box-shadow: 0 0 23px rgb(77, 144, 254) !important;
  /external/chromium_org/chrome/browser/resources/help/
channel_change_page.css 24 display: none !important;
33 display: block !important;

Completed in 818 milliseconds

1 2 3 4 5 6 7 8 9