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

<<11121314151617181920>>

/external/chromium_org/components/metrics/
H A Dpersisted_logs_unittest.cc5 #include "components/metrics/persisted_logs.h"
14 #include "components/metrics/compression_utils.h"
17 namespace metrics { namespace
286 } // namespace metrics
H A Dtest_metrics_service_client.cc5 #include "components/metrics/test_metrics_service_client.h"
8 #include "components/metrics/metrics_log_uploader.h"
10 namespace metrics { namespace
68 } // namespace metrics
H A Dtest_metrics_service_client.h10 #include "components/metrics/metrics_service_client.h"
12 namespace metrics { namespace
50 } // namespace metrics
/external/chromium_org/components/metrics/profiler/
H A Dprofiler_metrics_provider.cc5 #include "components/metrics/profiler/profiler_metrics_provider.h"
12 #include "components/metrics/metrics_log.h"
18 namespace metrics { namespace
146 } // namespace metrics
H A Dprofiler_metrics_provider.h9 #include "components/metrics/metrics_provider.h"
10 #include "components/metrics/proto/chrome_user_metrics_extension.pb.h"
16 namespace metrics { namespace
47 } // namespace metrics
H A Dprofiler_metrics_provider_unittest.cc5 #include "components/metrics/profiler/profiler_metrics_provider.h"
8 #include "components/metrics/metrics_hashes.h"
15 namespace metrics { namespace
183 } // namespace metrics
H A Dtracking_synchronizer.cc5 #include "components/metrics/profiler/tracking_synchronizer.h"
8 #include "base/metrics/histogram.h"
11 #include "components/metrics/profiler/tracking_synchronizer_observer.h"
33 static metrics::TrackingSynchronizer* g_tracking_synchronizer =
38 namespace metrics { namespace
297 } // namespace metrics
H A Dtracking_synchronizer.h33 namespace metrics { namespace
115 } // namespace metrics
H A Dtracking_synchronizer_observer.h12 namespace metrics { namespace
37 } // namespace metrics
/external/chromium_org/components/metrics/serialization/
H A Dmetric_sample.cc5 #include "components/metrics/serialization/metric_sample.h"
15 namespace metrics { namespace
197 } // namespace metrics
H A Dmetric_sample.h14 namespace metrics { namespace
17 // and deserialize measurements to send them to a metrics sending service.
37 // Getters for type and name. All types of metrics have these so we do not
117 } // namespace metrics
H A Dserialization_utils.cc5 #include "components/metrics/serialization/serialization_utils.h"
20 #include "components/metrics/serialization/metric_sample.h"
25 namespace metrics { namespace
40 // The file containing the metrics do not leave the device so the writer and
44 DPLOG(ERROR) << "reading metrics message header";
59 if (message_size > metrics::SerializationUtils::kMessageMaxLength) {
72 char buffer[metrics::SerializationUtils::kMessageMaxLength];
74 DPLOG(ERROR) << "reading metrics message body";
118 ScopedVector<MetricSample>* metrics) {
125 DPLOG(ERROR) << filename << ": bad metrics fil
116 ReadAndTruncateMetricsFromFile( const std::string& filename, ScopedVector<MetricSample>* metrics) argument
[all...]
H A Dserialization_utils.h13 namespace metrics { namespace
17 // Metrics helpers to serialize and deserialize metrics collected by
28 ScopedVector<MetricSample>* metrics);
46 } // namespace metrics
H A Dserialization_utils_unittest.cc5 #include "components/metrics/serialization/serialization_utils.h"
11 #include "components/metrics/serialization/metric_sample.h"
14 namespace metrics { namespace
170 } // namespace metrics
/external/chromium_org/components/omnibox/
H A Dautocomplete_input.cc9 #include "components/metrics/proto/omnibox_event.pb.h"
36 current_page_classification_(metrics::OmniboxEventProto::INVALID_SPEC),
37 type_(metrics::OmniboxInputType::INVALID),
49 metrics::OmniboxEventProto::PageClassification current_page_classification,
76 if (type_ == metrics::OmniboxInputType::INVALID)
79 if (((type_ == metrics::OmniboxInputType::UNKNOWN) ||
80 (type_ == metrics::OmniboxInputType::URL)) &&
106 metrics::OmniboxInputType::Type type,
108 if ((type != metrics::OmniboxInputType::FORCED_QUERY) || text->empty() ||
118 metrics
[all...]
H A Dautocomplete_input.h13 #include "components/metrics/proto/omnibox_event.pb.h"
14 #include "components/metrics/proto/omnibox_input_type.pb.h"
70 metrics::OmniboxEventProto::PageClassification
82 metrics::OmniboxInputType::Type type,
86 static std::string TypeToString(metrics::OmniboxInputType::Type type);
95 static metrics::OmniboxInputType::Type Parse(
151 metrics::OmniboxEventProto::PageClassification current_page_classification()
157 metrics::OmniboxInputType::Type type() const { return type_; }
198 metrics::OmniboxEventProto::PageClassification current_page_classification_;
199 metrics
[all...]
H A Dautocomplete_input_unittest.cc11 #include "components/metrics/proto/omnibox_event.pb.h"
12 #include "components/metrics/proto/omnibox_input_type.pb.h"
18 using metrics::OmniboxEventProto;
23 const metrics::OmniboxInputType::Type type;
25 { base::string16(), metrics::OmniboxInputType::INVALID },
26 { ASCIIToUTF16("?"), metrics::OmniboxInputType::FORCED_QUERY },
27 { ASCIIToUTF16("?foo"), metrics::OmniboxInputType::FORCED_QUERY },
28 { ASCIIToUTF16("?foo bar"), metrics::OmniboxInputType::FORCED_QUERY },
30 metrics::OmniboxInputType::FORCED_QUERY },
31 { ASCIIToUTF16("foo"), metrics
[all...]
H A Dautocomplete_provider.cc56 metrics::OmniboxEventProto_ProviderType AutocompleteProvider::
60 return metrics::OmniboxEventProto::BOOKMARK;
62 return metrics::OmniboxEventProto::BUILTIN;
64 return metrics::OmniboxEventProto::HISTORY_QUICK;
66 return metrics::OmniboxEventProto::HISTORY_URL;
68 return metrics::OmniboxEventProto::KEYWORD;
70 return metrics::OmniboxEventProto::SEARCH;
72 return metrics::OmniboxEventProto::SHORTCUTS;
74 return metrics::OmniboxEventProto::ZERO_SUGGEST;
77 return metrics
[all...]
H A Dautocomplete_provider.h11 #include "components/metrics/proto/omnibox_event.pb.h"
16 typedef std::vector<metrics::OmniboxEventProto_ProviderInfo> ProvidersInfo;
118 // provider-specific metrics.
168 // TODO(derat): Make metrics use AutocompleteProvider::Type directly, or at
169 // least move this method to the metrics directory.
170 metrics::OmniboxEventProto_ProviderType AsOmniboxEventProviderType() const;
H A Dautocomplete_provider_client.h10 #include "components/metrics/proto/omnibox_event.pb.h"
53 metrics::OmniboxEventProto::PageClassification page_classification,
H A Dautocomplete_result.cc11 #include "base/metrics/histogram.h"
13 #include "components/metrics/proto/omnibox_event.pb.h"
14 #include "components/metrics/proto/omnibox_input_type.pb.h"
22 using metrics::OmniboxEventProto;
263 DCHECK_NE(metrics::OmniboxInputType::URL, input.type()) << debug_info;
265 DCHECK_NE(metrics::OmniboxInputType::FORCED_QUERY, input.type())
269 if ((input.type() == metrics::OmniboxInputType::URL) &&
374 return ((input.type() == metrics::OmniboxInputType::UNKNOWN) &&
H A Dautocomplete_result.h13 #include "components/metrics/proto/omnibox_event.pb.h"
154 metrics::OmniboxEventProto::PageClassification page_classification,
185 metrics::OmniboxEventProto::PageClassification page_classification,
H A Dautocomplete_result_unittest.cc10 #include "base/metrics/field_trial.h"
14 #include "components/metrics/proto/omnibox_event.pb.h"
27 using metrics::OmniboxEventProto;
88 new metrics::SHA1EntropyProvider("foo")));
H A Dautocomplete_scheme_classifier.h10 #include "components/metrics/proto/omnibox_input_type.pb.h"
24 // and not blocked. Returns metrics::OmniboxInputType::INVALID if it's unknown
26 virtual metrics::OmniboxInputType::Type GetInputTypeForScheme(
H A Dbase_search_provider.cc10 #include "components/metrics/proto/omnibox_event.pb.h"
11 #include "components/metrics/proto/omnibox_input_type.pb.h"
23 using metrics::OmniboxEventProto;
147 provider_info->push_back(metrics::OmniboxEventProto_ProviderInfo());
148 metrics::OmniboxEventProto_ProviderInfo& new_entry = provider_info->back();
235 if (input.type() == metrics::OmniboxInputType::FORCED_QUERY)

Completed in 2723 milliseconds

<<11121314151617181920>>