Searched refs:metrics (Results 251 - 275 of 707) sorted by relevance

<<11121314151617181920>>

/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftpfr.c79 x_scale = face->size->metrics.x_scale;
80 y_scale = face->size->metrics.y_scale;
/external/chromium_org/chrome/browser/metrics/
H A Dchromeos_metrics_provider_unittest.cc5 #include "chrome/browser/metrics/chromeos_metrics_provider.h"
12 #include "chrome/browser/metrics/chromeos_metrics_provider.h"
23 #include "components/metrics/proto/system_profile.pb.h"
134 metrics::SystemProfileProto system_profile;
156 metrics::SystemProfileProto system_profile;
168 metrics::SystemProfileProto system_profile;
185 metrics::SystemProfileProto system_profile;
215 metrics::SystemProfileProto system_profile;
224 typedef metrics::SystemProfileProto::Hardware::Bluetooth::PairedDevice
H A Domnibox_metrics_provider.cc5 #include "chrome/browser/metrics/omnibox_metrics_provider.h"
15 #include "components/metrics/metrics_log.h"
16 #include "components/metrics/proto/omnibox_event.pb.h"
17 #include "components/metrics/proto/omnibox_input_type.pb.h"
23 using metrics::OmniboxEventProto;
92 metrics::ChromeUserMetricsExtension* uma_proto) {
116 omnibox_event->set_time(metrics::MetricsLog::GetCurrentTime());
H A Dplugin_metrics_provider.cc5 #include "chrome/browser/metrics/plugin_metrics_provider.h"
19 #include "components/metrics/proto/system_profile.pb.h"
51 metrics::SystemProfileProto::Plugin* plugin) {
123 metrics::SystemProfileProto* system_profile_proto) {
132 metrics::SystemProfileProto* system_profile_proto) {
139 metrics::SystemProfileProto::Stability* stability =
155 const metrics::SystemProfileProto::Plugin* system_profile_plugin = NULL;
170 metrics::SystemProfileProto::Stability::PluginStability* plugin_stability =
/external/chromium_org/third_party/skia/src/views/
H A DSkTextBox.cpp180 SkPaint::FontMetrics metrics; local
195 fontHeight = paint.getFontMetrics(&metrics);
222 y += fBox.fTop - metrics.fAscent;
229 if (y + metrics.fDescent + metrics.fLeading > 0)
235 if (y + metrics.fAscent >= fBox.fBottom)
/external/chromium_org/tools/perf/measurements/
H A Dpage_cycler.py21 from metrics import cpu
22 from metrics import iometric
23 from metrics import memory
24 from metrics import power
25 from metrics import speedindex
26 from metrics import v8_object_stats
88 """Initialize metrics once right before the browser has been launched."""
92 """Initialize metrics once right after the browser has been launched."""
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dpowermetrics_power_monitor.py101 # List of RunningAverage objects specifying metrics we want to aggregate.
102 metrics = [
143 metrics.extend([
153 # current system has. Iterate over cores and cpus - construct metrics for
166 metrics.append(ConstructMetric(
169 metrics.append(ConstructMetric(
192 for m in metrics:
227 for m in metrics:
/external/skia/src/views/
H A DSkTextBox.cpp180 SkPaint::FontMetrics metrics; local
195 fontHeight = paint.getFontMetrics(&metrics);
222 y += fBox.fTop - metrics.fAscent;
229 if (y + metrics.fDescent + metrics.fLeading > 0)
235 if (y + metrics.fAscent >= fBox.fBottom)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DelementsPanel.css95 .metrics {
102 .metrics .label {
110 .metrics .position {
119 .metrics .margin {
129 .metrics .border {
139 .metrics .padding {
149 .metrics .content {
162 .metrics .content span {
166 .metrics .editing {
172 .metrics
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp1030 // FreeType does no provide linear metrics for bitmap fonts.
1168 vector.x = fFace->glyph->metrics.vertBearingX - fFace->glyph->metrics.horiBearingX;
1169 vector.y = -fFace->glyph->metrics.vertBearingY - fFace->glyph->metrics.horiBearingY;
1259 vector.x = fFace->glyph->metrics.vertBearingX - fFace->glyph->metrics.horiBearingX;
1260 vector.y = -fFace->glyph->metrics.vertBearingY - fFace->glyph->metrics.horiBearingY;
1304 // If the font isn't scalable, scale the metrics fro
1380 generateFontMetrics(SkPaint::FontMetrics* metrics) argument
[all...]
/external/chromium_org/chrome/browser/
H A Dchrome_browser_main.cc19 #include "base/metrics/field_trial.h"
20 #include "base/metrics/histogram.h"
58 #include "chrome/browser/metrics/field_trial_synchronizer.h"
59 #include "chrome/browser/metrics/thread_watcher.h"
60 #include "chrome/browser/metrics/variations/variations_service.h"
105 #include "components/metrics/metrics_service.h"
106 #include "components/metrics/profiler/tracking_synchronizer.h"
136 #include "chrome/browser/metrics/thread_watcher_android.h"
578 // Must initialize metrics after labs have been converted into switches,
584 metrics local
641 metrics::MetricsService* metrics = g_browser_process->metrics_service(); local
[all...]
/external/chromium_org/ppapi/cpp/trusted/
H A Dbrowser_font_trusted.cc39 PP_BrowserFont_Trusted_Metrics* metrics) {
40 return reinterpret_cast<PP_FontMetrics_Dev*>(metrics);
168 PP_BrowserFont_Trusted_Metrics* metrics) const {
173 pp_resource(), &description->pp_font_description_, metrics))
179 BrowserFontMetricsToFontMetrics(metrics)))
38 BrowserFontMetricsToFontMetrics( PP_BrowserFont_Trusted_Metrics* metrics) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetricsBuilder.cpp133 SVGTextMetrics metrics = SVGTextMetrics::measureCharacterRange(m_text, textPosition, metricsLength, m_textDirection); local
134 ASSERT(metrics.length() == metricsLength);
144 if (currentWidth != metrics.width())
145 metrics.setWidth(currentWidth);
148 return metrics;
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dpngshim.c182 TT_SBit_Metrics metrics,
199 if ( x_offset < 0 || x_offset + metrics->width > map->width ||
200 y_offset < 0 || y_offset + metrics->height > map->rows ||
242 (FT_Int)imgWidth != metrics->width ||
243 (FT_Int)imgHeight != metrics->height )
178 Load_SBit_Png( FT_Bitmap* map, FT_Int x_offset, FT_Int y_offset, FT_Int pix_bits, TT_SBit_Metrics metrics, FT_Memory memory, FT_Byte* data, FT_UInt png_len ) argument
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttdriver.c266 /* use the scaled metrics, even when tt_size_reset fails */
274 FT_Size_Metrics* metrics = &size->metrics; local
277 error = sfnt->load_strike_metrics( ttface, strike_index, metrics );
320 ttsize->root.metrics = ttsize->metrics;
/external/chromium_org/tools/chrome_proxy/integration_tests/
H A Dchrome_proxy_measurements.py9 from integration_tests import chrome_proxy_metrics as metrics namespace
10 from metrics import loading
34 self._metrics = metrics.ChromeProxyMetric()
53 self._metrics = metrics.ChromeProxyMetric()
222 bad_proxies = [_TEST_SERVER + ":80", metrics.PROXY_SETTING_HTTP]
/external/freetype/src/autofit/
H A Daftypes.h202 /* This function parses an FT_Face to compute global metrics for
206 (*AF_WritingSystem_InitMetricsFunc)( AF_StyleMetrics metrics,
210 (*AF_WritingSystem_ScaleMetricsFunc)( AF_StyleMetrics metrics,
214 (*AF_WritingSystem_DoneMetricsFunc)( AF_StyleMetrics metrics );
219 AF_StyleMetrics metrics );
224 AF_StyleMetrics metrics );
243 * - a specific global analyzer that computes global metrics specific to
/external/freetype/src/truetype/
H A Dttdriver.c267 /* use the scaled metrics, even when tt_size_reset fails */
275 FT_Size_Metrics* metrics = &size->metrics; local
278 error = sfnt->load_strike_metrics( ttface, strike_index, metrics );
321 ttsize->root.metrics = ttsize->metrics;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
H A Dpngshim.c182 TT_SBit_Metrics metrics,
199 if ( x_offset < 0 || x_offset + metrics->width > map->width ||
200 y_offset < 0 || y_offset + metrics->height > map->rows ||
242 (FT_Int)imgWidth != metrics->width ||
243 (FT_Int)imgHeight != metrics->height )
178 Load_SBit_Png( FT_Bitmap* map, FT_Int x_offset, FT_Int y_offset, FT_Int pix_bits, TT_SBit_Metrics metrics, FT_Memory memory, FT_Byte* data, FT_UInt png_len ) argument
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttdriver.c266 /* use the scaled metrics, even when tt_size_reset fails */
274 FT_Size_Metrics* metrics = &size->metrics; local
277 error = sfnt->load_strike_metrics( ttface, strike_index, metrics );
320 ttsize->root.metrics = ttsize->metrics;
/external/llvm/utils/lit/lit/
H A DTest.py87 # The metrics reported by this test.
88 self.metrics = {}
95 values. It is an error to attempt to attach the metrics with the same
100 if name in self.metrics:
101 raise ValueError("result already includes metrics for %r" % (
105 self.metrics[name] = value
/external/chromium_org/pdf/
H A Dprogress_control.cc100 PP_FontMetrics_Dev metrics; local
101 font.Describe(&desc, &metrics);
102 int text_height = metrics.height;
192 PP_FontMetrics_Dev metrics; local
193 font.Describe(&desc, &metrics);
196 (text_rc_.y() + text_rc_.bottom() + metrics.x_height) / 2);
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dsuggest_apps_dialog.js511 metrics.recordEnum('SuggestApps.Load', result, 3);
527 metrics.recordEnum('SuggestApps.CloseDialog', reason, 4);
541 metrics.recordEnum('SuggestApps.Install', result, 3);
545 metrics.recordUserAction('SuggestApps.ShowDialog');
549 metrics.startInterval('SuggestApps.LoadTime');
553 metrics.recordInterval('SuggestApps.LoadTime');
/external/chromium_org/ui/gfx/
H A Dplatform_font_win.cc231 NONCLIENTMETRICS metrics; local
232 base::win::GetNonClientMetrics(&metrics);
235 adjust_font_callback(&metrics.lfMessageFont);
236 metrics.lfMessageFont.lfHeight =
237 AdjustFontSize(metrics.lfMessageFont.lfHeight, 0);
238 HFONT font = CreateFontIndirect(&metrics.lfMessageFont);
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_url_provider_unittest.cc25 #include "components/metrics/proto/omnibox_event.pb.h"
26 #include "components/metrics/proto/omnibox_input_type.pb.h"
203 metrics::OmniboxInputType::Type* identified_input_type);
211 metrics::OmniboxInputType::Type type;
292 metrics::OmniboxInputType::Type* identified_input_type) {
294 metrics::OmniboxEventProto::INVALID_SPEC,
576 metrics::OmniboxEventProto::INVALID_SPEC, false,
619 metrics::OmniboxEventProto::INVALID_SPEC, false,
686 metrics::OmniboxInputType::Type type;
688 { "gooey", 1410, metrics
[all...]

Completed in 2873 milliseconds

<<11121314151617181920>>