HomeSort by relevance Sort by last modified time
    Searched refs:percent (Results 126 - 150 of 338) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
aggregate_results.js 216 var percent = [];
219 // Round to the nearest tenth of a percent.
220 percent.push(Math.round(percentage * 10) / 10 + '%');
226 htmlForTableRow('Percent passed', percent) +
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrint.java 123 double percent = -results[0] * 100.0; local
124 if (results != null && Math.abs(percent) < 200) {
  /packages/apps/Camera2/src/com/android/camera/
CaptureModuleUI.java 252 * @param percent amount of process done in percent 0-100.
254 public void setPictureTakingProgress(int percent) {
255 mProgressOverlay.setProgress(percent);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractPublicApiTest.java 145 final int percent = (int) (100 local
148 Log.d(LOG_TAG, percent + "% complete");
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
browser.c 18 double percent, bool current)
22 if (percent >= MIN_RED)
24 if (percent >= MIN_GREEN)
38 double percent, bool current)
40 int color = ui_browser__percent_color(browser, percent, current);
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 1094 double percent = (m_interval.end.value() - m_interval.begin.value()) \/ simpleDuration.value(); local
1183 float percent = calculateAnimationPercentAndRepeat(elapsed, repeat); local
    [all...]
  /ndk/sources/host-tools/make-3.81/
function.c 284 pattern_matches (char *pattern, char *percent, char *str)
288 if (percent == 0)
294 percent = find_percent (pattern);
295 if (percent == 0)
299 sfxlen = strlen (percent + 1);
302 if (strlength < (percent - pattern) + sfxlen
303 || !strneq (pattern, str, percent - pattern))
306 return !strcmp (percent + 1, str + (strlength - sfxlen));
921 char *percent;
963 pat->percent = find_percent (p)
914 char *percent; member in struct:a_pattern
    [all...]
variable.h 126 extern int pattern_matches PARAMS ((char *pattern, char *percent, char *str));
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_edit_model.cc 123 int percent = 0; local
130 percent = static_cast<float>(matching_characters) / avg_length * 100;
137 UMA_HISTOGRAM_PERCENTAGE(histogram_name, percent);
140 UMA_HISTOGRAM_PERCENTAGE(histogram_name, percent);
145 UMA_HISTOGRAM_PERCENTAGE(histogram_name, percent);
148 UMA_HISTOGRAM_PERCENTAGE(histogram_name, percent);
166 counter->Add(percent);
    [all...]
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /external/chromium_org/components/data_reduction_proxy/browser/
data_reduction_proxy_metrics.cc 80 int percent = 0; local
83 percent = (100 * (original_length - received_length)) / original_length;
85 UMA_HISTOGRAM_PERCENTAGE("Net.DailyContentSavingPercent", percent);
  /external/chromium_org/third_party/icu/source/test/perf/collationperf/
CollPerf.pl 113 #percent
115 my $percent = 0;
119 $percent = substr((((
123 @resultPER[$n] = @resultPER[$n].$percent."%,";
136 #store Percent result
  /external/icu/icu4c/source/test/perf/collationperf/
CollPerf.pl 113 #percent
115 my $percent = 0;
119 $percent = substr((((
123 @resultPER[$n] = @resultPER[$n].$percent."%,";
136 #store Percent result
  /packages/apps/Camera2/src/com/android/camera/session/
CaptureSessionManagerImpl.java 56 /** The current progress of this session in percent. */
98 public synchronized void setProgress(int percent) {
99 mProgressPercent = percent;
102 listener.onProgressChanged(percent);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotifier.java 222 final int percent = (int) ((current * 100) / total); local
223 percentText = res.getString(R.string.download_percent, percent);
231 builder.setProgress(100, percent, false);
  /external/chromium_org/ui/views/controls/table/
table_utils_unittest.cc 75 // Verifies a single column with a percent=1 is resized correctly.
82 columns[2].percent = 1.0f;
  /external/chromium_org/ui/views/examples/
table_example.cc 66 columns[0].percent = 1;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
annotate.h 82 double percent; member in struct:source_line_percent
  /external/qemu/ui/
curses_keys.h 253 { "percent", 0x025 },
  /external/tinyalsa/include/tinyalsa/
asoundlib.h 286 int mixer_ctl_set_percent(struct mixer_ctl *ctl, unsigned int id, int percent);
  /frameworks/base/tools/layoutlib/bridge/src/libcore/icu/
ICU_Delegate.java 226 result.percent = '%';
  /libcore/luni/src/main/java/libcore/icu/
LocaleData.java 99 public char percent; field in class:LocaleData
NativeDecimalFormat.java 110 NumberFormat.Field.PERCENT, // 8 UNUM_PERCENT_FIELD
176 data.percent, data.perMill, data.zeroDigit);
280 localeData.percent, localeData.perMill, localeData.zeroDigit);
629 char monetaryDecimalSeparator, String nan, char patternSeparator, char percent,
635 char monetaryDecimalSeparator, String nan, char patternSeparator, char percent,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.cpp 66 case Percent:
68 || (cRowLogicalHeight.isPercent() && cRowLogicalHeight.percent() < logicalHeight.percent()))
72 if (cRowLogicalHeight.type() < Percent
305 int percent = min(totalPercent, 100); local
308 // Our algorithm matches Firefox. Extra spanning height would be distributed Only in first percent height rows
309 // those total percent is 100. Other percent rows would be uneffected even extra spanning height is remain.
312 if (percent > 0 && extraRowSpanningHeight > 0) {
314 int toAdd = (tableHeight * m_grid[row].logicalHeight.percent() / 100) - rowsHeight[row - rowIndex]
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaController.java 231 int percent = mController.getBufferPercentage(); local
232 mProgress.setSecondaryProgress(percent * 10);

Completed in 2384 milliseconds

1 2 3 4 56 7 8 91011>>