HomeSort by relevance Sort by last modified time
    Searched full:metric (Results 76 - 100 of 496) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/webui/options/
core_options_handler.h 59 const std::string& metric);
62 void ClearPref(const std::string& pref_name, const std::string& metric);
64 // Records a user metric action for the given value.
66 const std::string& metric);
138 // item 2 - name of the metric identifier (optional).
151 // item 1 - name of the metric identifier (optional).
156 // is an array that contains a single item, the name of the metric identifier.
core_options_handler.cc 296 const std::string& metric) {
325 ProcessUserMetric(value, metric);
329 const std::string& metric) {
333 if (!metric.empty())
334 content::RecordComputedAction(metric);
338 const std::string& metric) {
339 if (metric.empty())
342 std::string metric_string = metric;
615 std::string metric; local
616 if (args->GetSize() > 2 && !args->GetString(2, &metric))
638 std::string metric = base::UTF16ToUTF8(ExtractStringValue(args)); local
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
browser_options.html 19 metric="Options_NetworkUseSharedProxies"
63 metric="Options_Homepage_HomeButton">
86 metric="Options_ShowBookmarksBar">
97 pref="browser.custom_chrome_frame" metric="Options_CustomFrame"
302 metric="Options_LinkDoctorCheckbox" type="checkbox">
314 metric="Options_UseSuggestCheckbox" type="checkbox">
326 metric="Options_DnsPrefetchCheckbox" type="checkbox">
338 metric="Options_SafeBrowsingExtendedReportingCheckbox"
351 metric="Options_SafeBrowsingCheckbox" type="checkbox">
363 metric="Options_SpellingServiceCheckbox
    [all...]
autofill_options.html 10 metric="Options_AutofillAuxiliaryProfiles">
hotword_confirm_overlay.html 29 metric="Options_Hotword_AudioLogging_Checkbox"
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_packet_unittest.cc 806 VoipMetric metric; local
807 metric.To(kRemoteSsrc);
808 metric.LossRate(1);
809 metric.DiscardRate(2);
810 metric.BurstDensity(3);
811 metric.GapDensity(4);
812 metric.BurstDuration(0x1111);
813 metric.GapDuration(0x2222);
814 metric.RoundTripDelay(0x3333);
815 metric.EndSystemDelay(0x4444)
866 VoipMetric metric; local
887 VoipMetric metric; local
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
metrics_private.json 13 "description": "Describes the type of metric that is to be collected.",
15 "metricName": {"type": "string", "description": "A unique name within the extension for the metric."},
19 "description": "The type of metric, such as 'histogram-log' or 'histogram-linear'."
163 "description": "Adds a value to the given metric.",
165 {"name": "metric", "$ref": "MetricType"},
  /external/chromium_org/tools/chrome_proxy/integration_tests/
network_metrics_unittest.py 157 metric = network_metrics.NetworkMetric()
158 metric._events = events
159 metric.compute_data_saving = True
161 self.assertTrue(len(events), len(list(metric.IterResponses(None))))
163 metric.AddResults(None, results)
  /external/libnl/src/lib/
route.c 119 nl_cli_fatal(EINVAL, "Unknown metric token \"%s\"", arg);
122 nl_cli_fatal(EINVAL, "Invalid metric \"%s\"", tokens[ret]);
125 nl_cli_fatal(EINVAL, "Metric \"%s\", no value given", tokens[ret]);
129 nl_cli_fatal(EINVAL, "Metric \"%s\", value not numeric", tokens[ret]);
132 nl_cli_fatal(ret, "Unable to set metric: %s",
  /external/llvm/utils/lit/lit/
Test.py 34 # Test metric values.
41 Convert this metric to a string suitable for displaying as part of the
50 Convert this metric to content suitable for serializing in the JSON test
94 Attach a test metric to the test result, with the given name and list of
104 raise TypeError("unexpected metric value: %r" % (value,))
  /external/chromium_org/chrome/browser/diagnostics/
diagnostics_metrics.cc 80 // a unique static pointer block for each individual metric. This is done as a
112 NOTREACHED() << "Unhandled UMA Metric type" << id;
122 NOTREACHED() << "Unhandled UMA Metric type" << id;
  /external/chromium_org/tools/perf/metrics/
cpu.py 5 from metrics import Metric
9 class CpuMetric(Metric):
29 # Optional argument trace_name is not in base class Metric.
startup_metric.py 8 from metrics import Metric
15 class StartupMetric(Metric):
16 "A metric for browser startup time."
  /external/chromium_org/chrome/browser/extensions/api/metrics_private/
metrics_private_api.cc 118 // Get the histogram parameters from the metric type object.
120 params->metric.type);
124 return RecordValue(params->metric.metric_name, histogram_type,
125 params->metric.min, params->metric.max,
126 params->metric.buckets, params->value);
  /external/chromium_org/third_party/WebKit/PerformanceTests/resources/
results-template.html 187 function TestResult(metric, values, associatedRun) {
195 this.test = function () { return metric; }
196 this.values = function () { return values.map(function (value) { return metric.scalingFactor() * value; }); }
198 this.mean = function () { return metric.scalingFactor() * this.unscaledMean(); }
199 this.min = function () { return metric.scalingFactor() * Statistics.min(values); }
200 this.max = function () { return metric.scalingFactor() * Statistics.max(values); }
202 return metric.scalingFactor() * Statistics.confidenceIntervalDelta(0.95, values.length,
225 function PerfTestMetric(name, metric) {
229 var unit = {'FrameRate': 'fps', 'Runs': 'runs/s', 'Time': 'ms', 'Malloc': 'bytes', 'JSHeap': 'bytes'}[metric];
252 this.name = function () { return name + ':' + metric; }
    [all...]
  /external/chromium_org/ui/gfx/win/
dpi.h 58 // GetSystemMetrics for the given |metric|, then converts the result to DIP.
59 GFX_EXPORT int GetSystemMetricsInDIP(int metric);
  /external/libnl/lib/route/
route_utils.c 157 char *rtnl_route_metric2str(int metric, char *buf, size_t size)
159 return __type2str(metric, buf, size, route_metrices,
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
DeviceInfoResultTest.java 97 * Test populating a combined metric like device serial
101 // first add another metric to make hashmap non empty, so combined logic is triggered
119 * Test populating a verified-to-be-identical metric like DeviceInfoConstants.BUILD_FINGERPRINT
139 * Helper method to add given metric to the {@link DeviceInfoResult}
  /external/chromium_org/chrome/browser/android/banners/
app_banner_manager.cc 146 void RecordDismissEvent(JNIEnv* env, jclass clazz, jint metric) {
147 banners::TrackDismissEvent(metric);
150 void RecordInstallEvent(JNIEnv* env, jclass clazz, jint metric) {
151 banners::TrackInstallEvent(metric);
  /external/chromium_org/components/metrics/serialization/
serialization_utils.h 22 // The return value will either be a scoped_ptr to a Metric sample (if the
  /external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
README 21 regular expression to extract the quality metric.
  /external/chromium_org/tools/metrics/actions/
extract_actions_test.py 44 ' <owner>Please list the metric\'s owners. '
75 ' <description>Please enter the description of the metric.</description>\n'
99 ' <owner>Please list the metric\'s owners.'
101 ' <description>Please enter the description of the metric.</description>\n'
  /external/chromium_org/tools/metrics/histograms/
histogram_ownership.py 12 DUMMY_OWNER = "Please list the metric's owners. Add more owner tags as needed."
  /external/chromium_org/tools/perf/measurements/
smoothness_controller.py 61 # Stop tracing for smoothness metric.
69 # Add results of smoothness metric. This computes the smoothness metric for
106 # wrap the results that are sent to smoothness metric, the label will
  /external/fonttools/Lib/fontTools/ttLib/tables/
BitmapGlyphMetrics.py 47 # Make sure this is a metric that is needed by GlyphMetrics.

Completed in 256 milliseconds

1 2 34 5 6 7 8 91011>>