Home
last modified time | relevance | path

Searched full:important (Results 1 – 25 of 2917) sorted by relevance

12345678910>>...117

/external/webrtc/webrtc/test/testsupport/
Dperf_test.cc29 bool important) { in ResultsToString() argument
38 if (important) { in ResultsToString()
53 bool important) { in PrintResultsImpl() argument
55 prefix, suffix, units, important).c_str()); in PrintResultsImpl()
68 bool important) { in PrintResult() argument
72 units, important); in PrintResult()
81 bool important) { in AppendResult() argument
86 "", "", units, important); in AppendResult()
94 bool important) { in PrintResult() argument
96 important); in PrintResult()
[all …]
Dperf_test.h29 // 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/jline/src/src/site/resources/css/
Dsite.css5 width: auto !important;
109 background-color: #7FAABB !important;
110 color: #FFFFFF !important;
111 font-size: 19px !important;
120 background-color: #7FAABB !important;
121 color: #FFFFFF !important;
122 font-size: 17px !important;
129 background-color: #8BBBD1 !important;
130 color: #FFFFFF !important;
148 font-size: 11px !important;
[all …]
/external/fmtlib/doc/bootstrap/
Dresponsive-utilities.less47 display: none !important;
57 display: block !important;
62 display: inline !important;
67 display: inline-block !important;
78 display: block !important;
83 display: inline !important;
88 display: inline-block !important;
99 display: block !important;
104 display: inline !important;
109 display: inline-block !important;
[all …]
Dprint.less12 background: transparent !important;
13 color: #000 !important; // Black prints faster: h5bp.com/s
14 box-shadow: none !important;
15 text-shadow: none !important;
54 max-width: 100% !important;
74 background: #fff !important;
84 border-top-color: #000 !important;
92 border-collapse: collapse !important;
96 background-color: #fff !important;
102 border: 1px solid #ddd !important;
Dutilities.less16 float: right !important;
19 float: left !important;
28 display: none !important;
31 display: block !important;
46 display: none !important;
/external/chromium-trace/catapult/telemetry/telemetry/value/
Dvalue_unittest.py76 a = value.Value(page0, 'x', 'unit', important=False, description=None,
78 b = value.Value(page1, 'x', 'unit', important=False, description=None,
82 a = value.Value(page0, 'x', 'unit', important=False, description=None,
84 b = value.Value(page0, 'x', 'unit', important=False, description=None,
91 a = value.Value(page0, 'x', 'unit', important=False, description=None,
93 b = value.Value(page0, 'x', 'incompatUnit', important=False,
97 a = value.Value(page0, 'x', 'unit', important=False, description=None,
99 b = value.Value(page0, 'x', 'unit', important=True, description=None,
103 a = value.Value(page0, 'x', 'unit', important=False, description=None,
105 b = ValueForTest(page0, 'x', 'unit', important=True, description=None,
[all …]
Dscalar_unittest.py33 v = scalar.ScalarValue(page0, 'x', 'unit', 3, important=True,
37 expected = ('ScalarValue(http://www.bar.com/, x, unit, 3, important=True, '
45 v = scalar.ScalarValue(page0, 'x', 'unit', 3, important=True,
53 v = scalar.ScalarValue(page0, 'x', 'unit', 3, important=False,
62 description='important metric',
65 description='important metric',
73 self.assertEquals('important metric', vM.description)
74 self.assertEquals(True, vM.important)
82 description='important metric',
85 description='important metric',
[all …]
D__init__.py39 def __init__(self, page, name, units, important, description, argument
50 important: Whether the value is "important". Causes the value to appear
63 if not isinstance(important, bool):
64 raise ValueError('important field of Value must be bool.')
80 self.important = important
94 self.important == that.important)
138 return self.important
140 return self.important
203 'important': self.important
299 d['important'] = False
Dscalar.py14 def __init__(self, page, name, units, value, important=True, argument
24 super(ScalarValue, self).__init__(page, name, units, important, description,
37 return ('ScalarValue(%s, %s, %s, %s, important=%s, description=%s, '
43 self.important,
123 page, name, v0.units, merged_value, important=v0.important,
Dhistogram.py33 raw_value=None, raw_value_json=None, important=True, argument
36 super(HistogramValue, self).__init__(page, name, units, important,
59 'important=%s, description=%s, tir_label=%s, '
64 self.important,
128 important=v0.important, tir_label=value_module.MergedTirLabel(values),
Dlist_of_scalar_values.py74 important=True, description=None, argument
77 super(ListOfScalarValues, self).__init__(page, name, units, important,
111 'important=%s, description=%s, tir_label=%s, std=%s, '
117 self.important,
203 important=v0.important,
Dhistogram_unittest.py35 important=True, description='desc', tir_label='my_ir',
39 '1}]}, important=True, description=desc, tir_label=my_ir, '
49 important=False, improvement_direction=improvement_direction.UP)
62 histogram.important = True
81 important=False, improvement_direction=improvement_direction.DOWN)
Dsummarizable_unittest.py12 None, 'foo', 'bars', important=False, description='desc',
19 None, 'foo', 'bars', important=False, description='desc',
27 None, 'foo', 'bars', important=False, description='desc',
Dlist_of_scalar_values_unittest.py74 page, 'x', 'unit', [10, 9, 9, 7], important=True, description='desc',
79 '[10, 9, 9, 7], important=True, description=desc, '
102 self.assertEquals(True, vM.important)
125 self.assertEquals(True, vM.important)
149 'important=True, description=None, tir_label=None, std=None,'
172 important=False, improvement_direction=improvement_direction.DOWN)
199 important=False, none_value_reason='n',
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/
Dlegacy_html_output_formatter_unittest.py83 "important": True
88 "important": False
94 "important": False
100 "important": False
138 "important": True
143 "important": False
149 "important": False
155 "important": False
172 "important": True
177 "important": False,
[all …]
/external/webrtc/webrtc/libjingle/xmllite/
Dxmlbuilder_unittest.cc77 XmlParser::ParseXml(&builder, "<testing a='so &quot;important&quot;'/>"); in TEST()
78 EXPECT_EQ("<testing a=\"so &quot;important&quot;\"/>", in TEST()
84 XmlParser::ParseXml(&builder, "<testing a='&quot;important&quot;, yes'/>"); in TEST()
85 EXPECT_EQ("<testing a=\"&quot;important&quot;, yes\"/>", in TEST()
92 "<testing a='&lt;what is &quot;important&quot;&gt;'/>"); in TEST()
93 EXPECT_EQ("<testing a=\"&lt;what is &quot;important&quot;&gt;\"/>", in TEST()
112 XmlParser::ParseXml(&builder, "<testing>so &lt;important&gt;</testing>"); in TEST()
113 EXPECT_EQ("<testing>so &lt;important&gt;</testing>", in TEST()
119 XmlParser::ParseXml(&builder, "<testing>&lt;important&gt;, yes</testing>"); in TEST()
120 EXPECT_EQ("<testing>&lt;important&gt;, yes</testing>", in TEST()
[all …]
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
Dwebrtc_rendering_timeline.py59 important=True,
70 important=True,
81 important=True,
96 important=True,
107 important=True,
118 important=True,
129 important=True,
/external/fmtlib/doc/bootstrap/mixins/
Dresponsive-visibility.less6 display: block !important;
8 tr& { display: table-row !important; }
10 td& { display: table-cell !important; }
14 display: none !important;
/external/autotest/cli/
Dtopic_common_unittest.py351 what_failed='something important')
352 err = self.atest.failed['something important']
358 what_failed='something important')
360 what_failed='something really important')
361 err = self.atest.failed['something important']
364 err = self.atest.failed['something really important']
371 what_failed='something important')
373 what_failed='something important')
374 errs = self.atest.failed['something important']
383 what_failed='something important')
[all …]
/external/testng/doc/samplereport/css/
Dprint.css2 display: none !important;
5 margin: 0 !important;
6 border: none !important
/external/shflags/doc/
Drst2html.css20 /* Override padding for "table.docutils td" with "! important".
22 padding: 0 0.5em 0 0 ! important }
25 /* Override more specific margin styles with "! important". */
26 margin-top: 0 ! important }
29 margin-bottom: 0 ! important }
57 div.hint, div.important, div.note, div.tip, div.warning {
63 div.important p.admonition-title, div.note p.admonition-title,
/external/libnl/doc/stylesheets/
Dvolnitsky.css28 color: #3A3A4D !important;
29 text-decoration: none !important;
33 color: #6D4100 !important;
34 text-decoration: none !important;
366 font-style: normal ! important;
367 font-weight: bold ! important;
368 color: #662222 ! important;
369 letter-spacing:+0.08em ! important;
/external/chromium-trace/catapult/telemetry/docs/
Dapi-deprecation-procedure.md8 5. (Optional) Audit important users for usage of deprecated code prior to deletion.
39 ## (Optional) Audit important users for usage of deprecated code prior to deletion.
41 …ther important users) for usage of deprecated API’s prior to deletion. It may be done on a case by…
/external/dtc/
DREADME.license8 versa. It is important that these two pieces of software have
34 important than avoiding that. libfdt is quite small, and hardly
47 important goal.
49 **IMPORTANT** It's intended that all of libfdt as released remain

12345678910>>...117