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

1 2 34 5 6 7 8 91011>>

  /external/clang/lib/Basic/
OperatorPrecedence.cpp 68 case tok::percent:
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
annotate.c 26 double percent = 0.0; local
39 percent = 100.0 * symhist->addr[dl->offset] / symhist->sum;
41 markup = perf_gtk__get_percent_color(percent);
44 ret += scnprintf(buf + ret, size - ret, "%6.2f%%", percent);
  /frameworks/base/core/java/com/android/internal/os/
BatterySipper.java 46 public double percent; field in class:BatterySipper
  /packages/apps/Camera2/src/com/android/camera/session/
CaptureSession.java 38 * @param progressPercent The current progress in percent.
60 * Set the progress in percent for the current session. If set to or left at
63 public void setProgress(int percent);
66 * Returns the progress of this session in percent.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
locale.py 185 def format(percent, value, grouping=False, monetary=False, *additional):
187 (percent).
191 # this is only for one-percent-specifier strings and this should be checked
192 match = _percent_re.match(percent)
193 if not match or len(match.group())!= len(percent):
195 "format specifier, %s not valid") % repr(percent))
196 return _format(percent, value, grouping, monetary, *additional)
198 def _format(percent, value, grouping=False, monetary=False, *additional):
200 formatted = percent % ((value,) + additional)
202 formatted = percent % valu
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
locale.py 185 def format(percent, value, grouping=False, monetary=False, *additional):
187 (percent).
191 # this is only for one-percent-specifier strings and this should be checked
192 match = _percent_re.match(percent)
193 if not match or len(match.group())!= len(percent):
195 "format specifier, %s not valid") % repr(percent))
196 return _format(percent, value, grouping, monetary, *additional)
198 def _format(percent, value, grouping=False, monetary=False, *additional):
200 formatted = percent % ((value,) + additional)
202 formatted = percent % valu
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Output.pm 24 my $perc = 100; #for percent
49 my $percent = shift;
59 if($percent) {
66 if((($error*$mult < 10)&&!$percent) || (($error<10)&&$percent)) {
72 if($percent) {
  /external/icu/icu4c/source/test/perf/perldriver/
Output.pm 24 my $perc = 100; #for percent
49 my $percent = shift;
59 if($percent) {
66 if((($error*$mult < 10)&&!$percent) || (($error<10)&&$percent)) {
72 if($percent) {
  /external/chromium_org/third_party/sqlite/src/tool/
spaceanal.tcl 181 proc percent {num denom {of {}}} { procedure
251 set total_pages_percent [percent $total_pages $file_pgcnt]
253 set payload_percent [percent $payload $storage {of storage consumed}]
270 set ovfl_cnt_percent [percent $ovfl_cnt $nleaf {of all entries}]
284 set fragmentation [percent $gap_cnt [expr {$total_pages-1}] {fragmentation}]
297 [percent $int_unused [expr {$int_pages*$pageSize}] {of index space}]
301 [percent $leaf_unused [expr {$leaf_pages*$pageSize}] {of primary space}]
303 [percent $ovfl_unused [expr {$ovfl_pages*$pageSize}] {of overflow space}]
305 [percent $total_unused $storage {of all space}]
364 set av_percent [percent $av_pgcnt $file_pgcnt
    [all...]
  /ndk/sources/host-tools/make-3.81/
commands.c 49 char *at, *percent, *star, *less;
65 percent = (char *) alloca (len);
66 bcopy (p + 1, percent, len - 1);
67 percent[len - 1] = '\0';
73 percent = "";
135 DEFINE_VARIABLE ("%", 1, percent);
48 char *at, *percent, *star, *less; local
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Video.java 138 public void onBufferingUpdate(MediaPlayer arg0, int percent) {
139 Log.d(TAG, "onBufferingUpdate percent:" + percent);
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 97 // The size of a single step in the text zoom range, in percent
102 // The size of a single step in the double tap zoom range, in percent
199 * Update from TextSize enum to zoom percent
520 static int getRawTextZoom(int percent) {
521 return (percent - 100) / TEXT_ZOOM_STEP + TEXT_ZOOM_START_VAL;
529 static int getRawDoubleTapZoom(int percent) {
530 return (percent - 100) / DOUBLE_TAP_ZOOM_STEP + DOUBLE_TAP_ZOOM_START_VAL;
593 public void setTextZoom(int percent) {
594 mPrefs.edit().putInt(PREF_TEXT_ZOOM, getRawTextZoom(percent)).apply();
603 public void setDoubleTapZoom(int percent) {
    [all...]
  /external/chromium_org/chrome/browser/download/
download_shelf.h 93 // clipping the foreground to 'percent' full. If percent is -1, then we don't
117 int percent,
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/lua/
naclterm.js 143 var percent = 10;
147 percent = Math.round(e.loaded * 100 / e.total);
150 message += ' [' + kbloaded + ' KiB/' + kbtotal + ' KiB ' + percent + '%]';
153 document.getElementById('progress-bar').style.width = percent + "%";
  /external/chromium_org/third_party/libwebp/enc/
webpenc.c 297 int percent, int* const percent_store) {
298 if (percent_store != NULL && percent != *percent_store) {
299 *percent_store = percent;
300 if (pic->progress_hook && !pic->progress_hook(percent, pic)) {
  /external/e2fsprogs/lib/e2p/
e2p.h 74 unsigned int e2p_percent(int percent, unsigned int base);
  /external/webp/src/enc/
webpenc.c 297 int percent, int* const percent_store) {
298 if (percent_store != NULL && percent != *percent_store) {
299 *percent_store = percent;
300 if (pic->progress_hook && !pic->progress_hook(percent, pic)) {
  /cts/tests/tests/widget/src/android/widget/cts/
VideoViewTest.java 290 int percent = mVideoView.getBufferPercentage(); local
291 assertTrue(percent >= 0 && percent <= 100);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoViewLegacy.java 164 protected void onBufferingUpdate(int percent) {
165 super.onBufferingUpdate(percent);
166 mCurrentBufferPercentage = percent;
  /external/chromium_org/native_client_sdk/src/libraries/xray/
report.c 52 " Address Ticks Percent Function [annotation...]\n");
69 float percent = 100.0f * (float)ticks / total; local
70 if (percent >= percent_cutoff && ticks >= ticks_cutoff) {
80 (unsigned int)addr, ticks, percent,
  /external/chromium_org/tools/perf/measurements/
loading_measurement_analyzer.py 147 for percent, url in sorted(
149 percent *= 100
150 print >> stdout, '\t', '%.1f%%' % percent, url, '(#%s)' % (
  /external/clang/lib/Lex/
TokenConcatenation.cpp 84 TokenInfo[tok::percent ] |= aci_custom_firstchar;
110 TokenInfo[tok::percent ] |= aci_avoid_equal; // %=
263 case tok::percent: // %>, %:
  /external/e2fsprogs/resize/
online.c 60 double percent; local
182 percent = (ext2fs_r_blocks_count(sb) * 100.0) /
242 input.reserved_blocks = (blk_t) (percent * input.blocks_count
  /external/libmtp/examples/
pathutils.c 118 int percent = (sent*100)/total; local
120 printf("Progress: %I64u of %I64u (%d%%)\r", sent, total, percent);
122 printf("Progress: %llu of %llu (%d%%)\r", sent, total, percent);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
annotate.c 23 double percent[1]; member in struct:browser_disasm_line
107 if (bdl->percent[i] > percent_max)
108 percent_max = bdl->percent[i];
113 ui_browser__set_percent_color(browser, bdl->percent[i],
115 slsmg_printf("%6.2f ", bdl->percent[i]);
271 if (a->percent[i] == b->percent[i])
273 return a->percent[i] < b->percent[i];
364 bpos->percent[i] = disasm__calc_percent(notes
    [all...]

Completed in 2833 milliseconds

1 2 34 5 6 7 8 91011>>