HomeSort by relevance Sort by last modified time
    Searched defs:percentage (Results 1 - 25 of 48) sorted by null

1 2

  /external/clang/test/PCH/
objc_property.h 5 float percentage; variable
11 @property float percentage; variable
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_host_metrics.cc 57 int percentage = (100 * misspelled_word_count_) / spellchecked_word_count_; local
58 UMA_HISTOGRAM_PERCENTAGE("SpellCheck.MisspellRatio", percentage);
101 int percentage = (100 * replaced_word_count_) / misspelled_word_count_; local
102 UMA_HISTOGRAM_PERCENTAGE("SpellCheck.ReplaceRatio", percentage);
106 int percentage = (100 * replaced_word_count_) / suggestion_show_count_; local
107 UMA_HISTOGRAM_PERCENTAGE("SpellCheck.SuggestionHitRatio", percentage);
  /external/chromium_org/base/process/
process_metrics_openbsd.cc 129 double percentage = static_cast<double>((cpu * 100.0) / FSCALE); local
131 return percentage;
process_metrics_linux.cc 201 // We have the number of jiffies in the time period. Convert to percentage.
206 int percentage = 100 * (cpu_time - last_cpu_time).InSecondsF() / local
212 return percentage;
  /external/chromium_org/v8/src/
runtime-profiler.cc 63 int* percentage) {
72 *percentage = *ic_total_count > 0
86 int typeinfo, total, percentage; local
87 GetICCounts(function->shared()->code(), &typeinfo, &total, &percentage);
88 PrintF(", ICs with typeinfo: %d/%d (%d%%)", typeinfo, total, percentage);
238 int typeinfo, total, percentage; local
239 GetICCounts(shared_code, &typeinfo, &total, &percentage);
240 if (percentage >= FLAG_type_info_threshold) {
252 typeinfo, total, percentage);
optimizing-compiler-thread.cc 206 double percentage = time_spent_compiling_.PercentOf(time_spent_total_); local
207 PrintF(" ** Compiler thread did %.2f%% useful work\n", percentage);
  /external/expat/tests/
minicheck.c 151 double percentage = ((double) passed) / runner->nchecks; local
152 int display = (int) (percentage * 100);
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_time_tracker.cc 28 // much". This is given in percentage of total request time that was spent
177 double percentage = local
181 static_cast<int>(100*percentage));
184 log.request_duration.InMilliseconds() << " = " << percentage;
188 if (percentage > kThresholdExcessiveDelay) {
199 } else if (percentage > kThresholdModerateDelay) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCrossfadeValue.cpp 110 float percentage = m_percentageValue->getFloatValue(); local
111 float inversePercentage = 1 - percentage;
128 return IntSize(fromImageSize.width() * inversePercentage + toImageSize.width() * percentage,
129 fromImageSize.height() * inversePercentage + toImageSize.height() * percentage);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
PercentageBarChart.java 44 public final float percentage; field in class:PercentageBarChart.Entry
47 protected Entry(int order, float percentage, Paint paint) {
49 this.percentage = percentage;
89 if (e.percentage == 0.0f) {
92 entryWidth = Math.max(mMinTickWidth, width * e.percentage);
113 if (e.percentage == 0.0f) {
116 entryWidth = Math.max(mMinTickWidth, width * e.percentage);
144 * Adds a new slice to the percentage bar chart. Callers are responsible for
147 * @param percentage the total width tha
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
PercentageBarChart.java 38 final float percentage; field in class:PercentageBarChart.Entry
41 public Entry(int order, float percentage, int color) {
43 this.percentage = percentage;
62 dest.writeFloat(percentage);
119 if (e.percentage == 0.0f) {
123 final float entryWidth = Math.max(mMinTickWidth, mWidth * e.percentage);
  /external/chromium_org/chrome/app/
client_util.cc 142 // Generate the group name corresponding to this percentage value.
151 // Return the percentage value to be used.
169 size_t percentage = InitPreReadPercentage(); local
170 ImagePreReader::PartialPreReadImage(dir->c_str(), percentage, kStepSize);
  /external/chromium_org/chrome/browser/prerender/
prerender_histograms.cc 321 int percentage = static_cast<int>(fraction * 100); local
322 if (percentage < 0 || percentage > 100)
325 origin, UMA_HISTOGRAM_PERCENTAGE(name, percentage));
  /external/chromium_org/components/policy/core/browser/
configuration_policy_handler.cc 298 int percentage; local
299 if (value && EnsureInRange(value, &percentage, NULL)) {
301 static_cast<double>(percentage) / 100.));
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicString.h 135 bool percentage(int& p) const { return m_string.percentage(p); } function in class:WTF::AtomicString
WTFString.cpp 422 bool String::percentage(int& result) const function in class:WTF::String
    [all...]
  /external/fio/t/
genzipf.c 49 static double percentage; variable
85 printf("\t-p\tGenerate size of data set that are hit by this percentage\n");
105 percentage = atof(optarg);
267 if (percentage) {
269 percentage * nranges / 100;
285 printf("%.2f%% of hits satisfied in %.3f%cB of cache\n", percentage, cs, p);
286 percentage = 0.0;
  /external/jdiff/src/jdiff/
APIComparator.java 137 Double percentage = new Double(differs); local
138 int approxPercentage = percentage.intValue();
140 System.out.println(" Approximately " + percentage + "% difference between the APIs");
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/
EncoderUtil.java 623 int percentage = qEncoded * 100 / bytes.length; local
624 return percentage > 30 ? Encoding.B : Encoding.Q;
  /external/chromium_org/base/metrics/
histogram.cc 485 double percentage = past / scaled_sum; local
486 StringAppendF(output, " {%3.1f%%}", percentage);
  /external/chromium_org/content/browser/download/
download_stats.cc 580 // Record what percentage of the time we have the network flow controlled.
583 int percentage = 0; local
586 percentage =
591 percentage);
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiObject.java 923 float percentage = percent \/ 100f; local
961 float percentage = percent \/ 100f; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsDetail.java 264 String percentage = Utils.formatPercentage(service.mDuration, mTotalTime); local
265 addDetailsItem(mServicesParent, label, percentage);
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 231 float percentage = (float) i / (float) size; local
233 radius * (float) Math.sin(radians), (percentage * depth) - halfDepth);
  /external/chromium_org/chrome/browser/history/
thumbnail_database.cc 519 // percentage results are very low, something is awry.
524 int percentage = static_cast<int>(original_size * 100 / final_size); local
526 std::max(100, percentage));
    [all...]

Completed in 1033 milliseconds

1 2