/external/chromium_org/components/metrics/ |
metrics_provider.h | 36 // Called once at startup to see whether this provider has stability events 40 // Provides additional stability metrics. Stability metrics can be provided 41 // directly into |stability_proto| fields or by logging stability histograms 46 // Called to indicate that saved stability prefs should be cleared, e.g. 50 // Provides general metrics that are neither system profile nor stability
|
metrics_pref_names.cc | 64 "user_experience_metrics.stability.breakpad_registration_ok"; 68 "user_experience_metrics.stability.breakpad_registration_fail"; 72 "user_experience_metrics.stability.crash_count"; 76 "user_experience_metrics.stability.debugger_present"; 80 "user_experience_metrics.stability.debugger_not_present"; 84 "user_experience_metrics.stability.execution_phase"; 88 "user_experience_metrics.stability.exited_cleanly"; 92 "user_experience_metrics.stability.incomplete_session_end_count"; 97 "user_experience_metrics.stability.last_timestamp_sec"; 101 "user_experience_metrics.stability.launch_count" [all...] |
metrics_log_unittest.cc | 342 const SystemProfileProto_Stability& stability = local 343 log.system_profile().stability(); 345 EXPECT_TRUE(stability.has_launch_count()); 346 EXPECT_TRUE(stability.has_crash_count()); 348 EXPECT_TRUE(stability.has_incomplete_shutdown_count()); 349 EXPECT_TRUE(stability.has_breakpad_registration_success_count()); 350 EXPECT_TRUE(stability.has_breakpad_registration_failure_count()); 351 EXPECT_TRUE(stability.has_debugger_present_count()); 352 EXPECT_TRUE(stability.has_debugger_not_present_count()); 365 const SystemProfileProto_Stability& stability local [all...] |
metrics_log.cc | 226 // Get stability attributes out of Local State, zeroing out stored values. 232 // Record recent delta for critical stability metrics. We can't wait for a 242 // Omit some stats unless this is the initial stability log. 264 SystemProfileProto::Stability* stability = local 266 stability->set_incomplete_shutdown_count(incomplete_shutdown_count); 267 stability->set_breakpad_registration_success_count( 269 stability->set_breakpad_registration_failure_count( 271 stability->set_debugger_present_count(debugger_present_count); 272 stability->set_debugger_not_present_count(debugger_not_present_count) 304 SystemProfileProto::Stability* stability = local 318 SystemProfileProto::Stability* stability = local [all...] |
metrics_log.h | 46 INITIAL_STABILITY_LOG, // The initial log containing stability stats. 107 // Writes application stability metrics, including stability metrics provided 111 // NOTE: Has the side-effect of clearing the stability prefs.. 162 // Returns true if the stability metrics have already been filled in by a 166 // Within the stability group, write required attributes. 169 // Within the stability group, write attributes that need to be updated asap
|
metrics_service_unittest.cc | 171 // No initial stability log should be generated. 175 // The test provider should not have been called upon to provide stability 191 // Record stability build time and version from previous session, so that 192 // stability metrics (including exited cleanly flag) won't be cleared. 204 // Add a metrics provider that requests a stability log. 211 // The initial stability log should be generated and persisted in unsent logs. 216 // The test provider should have been called upon to provide stability 241 EXPECT_EQ(0, uma_log.system_profile().stability().crash_count()); 258 // Record stability build time and version from previous session, so that 259 // stability metrics (including exited cleanly flag) won't be cleared [all...] |
metrics_service.h | 236 SENDING_INITIAL_STABILITY_LOG, // Initial stability log being sent. 319 // Returns true if any of the registered metrics providers have stability 323 // Prepares the initial stability log, which is only logged when the previous 324 // run of Chrome crashed. This log contains any stability metrics left over 325 // from that previous run, and only these stability metrics. It uses the 330 // profiler data, as well as incremental stability-related metrics. 350 // buffered plugin stability statistics. 371 // Record complete list of stability histograms into the current log, 412 // Whether the initial stability log has been recorded during startup. 417 // initial stability log may be sent before this [all...] |
/external/eigen/doc/ |
B01_Experimental.dox | 9 With the 2.0 release, Eigen's API is, to a large extent, stable. However, we wish to retain the freedom to make API incompatible changes. To that effect, we call many parts of Eigen "experimental" which means that they are not subject to API stability guarantee. 13 We are aware that API stability is a major concern for our users. That's why it's a priority for us to reach it, but at the same time we're being serious about not calling Eigen API-stable too early. 22 The following modules are considered entirely experimental, and we make no firm API stability guarantee about them for the time being: 31 In the Core module, the only classes subject to ABI stability guarantee (meaning that you can use it for data members in your public ABI) is: 37 The only classes subject to (even partial) API stability guarantee (meaning that you can safely construct and use objects) are: 38 \li MatrixBase : partial API stability (see below) 39 \li Matrix : full API stability (except for experimental stuff inherited from MatrixBase) 40 \li Map : full API stability (except for experimental stuff inherited from MatrixBase) 44 A few MatrixBase methods are considered experimental, hence not part of any API stability guarantee:
|
/external/chromium_org/native_client_sdk/src/build_tools/json/ |
naclsdk_manifest0.json | 18 "stability": "stable",
|
naclsdk_manifest2.json | 18 "stability": "stable", 33 "stability": "dev", 76 "stability": "post_stable", 119 "stability": "post_stable", 162 "stability": "post_stable", 172 "stability": "post_stable", 182 "stability": "post_stable", 192 "stability": "post_stable", 202 "stability": "post_stable", 212 "stability": "post_stable" [all...] |
naclsdk_manifest.json | 6 "stability": "stable", 40 "stability": "beta", 58 "stability": "post_stable", 92 "stability": "post_stable", 126 "stability": "stable", 160 "stability": "beta",
|
/external/chromium_org/chrome/browser/metrics/ |
plugin_metrics_provider_unittest.cc | 94 // Now set some plugin stability stats for p2 and verify they're recorded. 108 const metrics::SystemProfileProto_Stability& stability = local 109 system_profile.stability(); 110 ASSERT_EQ(1, stability.plugin_stability_size()); 111 EXPECT_EQ("p2", stability.plugin_stability(0).plugin().name()); 112 EXPECT_EQ("p2.plugin", stability.plugin_stability(0).plugin().filename()); 113 EXPECT_EQ("2.0", stability.plugin_stability(0).plugin().version()); 114 EXPECT_FALSE(stability.plugin_stability(0).plugin().is_pepper()); 115 EXPECT_EQ(1, stability.plugin_stability(0).launch_count()); 116 EXPECT_EQ(2, stability.plugin_stability(0).crash_count()) 179 const metrics::SystemProfileProto_Stability& stability = local [all...] |
chrome_stability_metrics_provider.h | 23 // ChromeStabilityMetricsProvider gathers and logs Chrome-specific stability- 65 // Registrar for receiving stability-related notifications.
|
android_metrics_provider.h | 19 // AndroidMetricsProvider provides Android-specific stability metrics.
|
/external/chromium_org/v8/ |
ChangeLog | 3 Performance and stability improvements on all platforms. 12 Performance and stability improvements on all platforms. 17 Performance and stability improvements on all platforms. 22 Performance and stability improvements on all platforms. 29 Performance and stability improvements on all platforms. 41 Performance and stability improvements on all platforms. 51 Performance and stability improvements on all platforms. 65 Performance and stability improvements on all platforms. 76 Performance and stability improvements on all platforms. 85 Performance and stability improvements on all platforms [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/ |
nacl-mono-buildbot.py | 57 bundles = filter(lambda b: (b['stability'] in stabilities 66 newdict['stability'] = b['stability'] 93 elif info['stability'] != bundle[0]['stability']: 94 # If all that happened was the SDK bundle was promoted in stability, 97 bundle[0]['stability'] = info['stability'] 123 bundle['stability'] = info['stability'] [all...] |
/external/chromium_org/third_party/icu/source/data/unidata/ |
NormalizationCorrections.txt | 10 # The normalization stability policy of the Unicode Consortium 20 # stability, the correction is entered in this data file, 21 # so that any implementation depending on absolute stability
|
/external/icu/icu4c/source/data/unidata/ |
NormalizationCorrections.txt | 10 # The normalization stability policy of the Unicode Consortium 20 # stability, the correction is entered in this data file, 21 # so that any implementation depending on absolute stability
|
/external/chromium_org/chrome/browser/profiles/ |
file_path_verifier_win.h | 31 // on disk and reports the result via UMA stat Stability.FileAtPath.Preferences.
|
/external/chromium_org/third_party/skia/src/utils/ |
SkMatrix22.h | 26 * but has better numerical stability by using (partial) hypot,
|
/external/qemu/distrib/sdl-1.2.15/src/timer/macos/ |
FastTimes.h | 11 the public domain. The author makes no warranty as to fitness or stability */
|
/external/skia/src/utils/ |
SkMatrix22.h | 26 * but has better numerical stability by using (partial) hypot,
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/ |
simple_lpc_analysis.c | 38 int16_t stability; local 71 stability=WebRtcSpl_LevinsonDurbin(R, A, rc, LPC_FILTERORDER); 77 if (stability!=1) {
|
lsf_check.h | 25 * check for stability of lsf coefficients
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/ |
list.py | 47 bundle.stability,
|