HomeSort by relevance Sort by last modified time
    Searched refs:percent (Results 226 - 250 of 627) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/aapt/
Images.cpp 1436 int percent = (int)(factor*100); local
1572 int percent = (int)(factor*100); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
AudioFrequencyMicActivity.java 523 double percent = 0; local
525 percent = 100.0 * (double) mInBoundPointsPerBand[b] / mPointsPerBand[b];
532 percent,
    [all...]
AudioFrequencyUnprocessedActivity.java 855 double percent = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
trace.py 338 percent = 100 * n_hits // n_lines
339 sums[modulename] = n_lines, percent, modulename, filename
346 n_lines, percent, modulename, filename = sums[m]
  /external/autotest/scheduler/
drone_manager.py 456 percent = float(drone.active_processes) / drone.max_processes
458 percent = 100
460 ).set(percent, fields={'drone_hostname': drone.hostname})
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
Main.cpp 370 UInt64 percent = 0; local
372 percent = val * 100 / total;
374 PrintNum(percent, 5);
  /external/python/cpython2/Lib/
trace.py 338 percent = 100 * n_hits // n_lines
339 sums[modulename] = n_lines, percent, modulename, filename
346 n_lines, percent, modulename, filename = sums[m]
  /external/v8/tools/
ll_prof.py 176 percent = 100.0 * count / self.self_ticks
178 if percent >= 0.01:
186 print "%5d | %6.2f%% %x(%d): %s" % (count, percent, offset, offset, lines[i][1])
    [all...]
  /packages/apps/Settings/src/com/android/settings/
CryptKeeper.java 648 int percent = 0; local
651 percent = isDebugView() ? 50 : Integer.parseInt(state);
655 String progress = Integer.toString(percent);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
trace.py 338 percent = 100 * n_hits // n_lines
339 sums[modulename] = n_lines, percent, modulename, filename
346 n_lines, percent, modulename, filename = sums[m]
  /prebuilts/gdb/linux-x86/lib/python2.7/
trace.py 338 percent = 100 * n_hits // n_lines
339 sums[modulename] = n_lines, percent, modulename, filename
346 n_lines, percent, modulename, filename = sums[m]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
trace.py 338 percent = 100 * n_hits // n_lines
339 sums[modulename] = n_lines, percent, modulename, filename
346 n_lines, percent, modulename, filename = sums[m]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
trace.py 338 percent = 100 * n_hits // n_lines
339 sums[modulename] = n_lines, percent, modulename, filename
346 n_lines, percent, modulename, filename = sums[m]
  /external/mesa3d/scripts/
get_reviewer.pl 226 'git-min-percent=i' => \$email_git_min_percent,
789 --git-min-percent => minimum percentage of commits required (default: $email_git_min_percent)
847 --git-min-signatures, --git-max-maintainers, --git-min-percent, and
    [all...]
  /external/webp/src/enc/
vp8l_enc.c 1577 int percent = 0; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderListFragment.java     [all...]
  /external/ImageMagick/www/api/
enhance.php 132 <dd>the brightness percent (-100 .. 100). </dd>
136 <dd>the contrast percent (-100 .. 100). </dd>
633 <dd>Define the percent change in brightness, saturation, and hue. </dd>
674 <p>The NormalizeImage() method enhances the contrast of a color image by mapping the darkest 2 percent of all pixel to black and the brightest 1 percent to white.</p>
annotate.php 67 a percent sign
  /frameworks/support/percent/src/android/support/percent/
PercentLayoutHelper.java 17 package android.support.percent;
38 * {@link android.support.percent.PercentLayoutHelper.PercentLayoutParams}.
43 * method that you implemented for {@link android.support.percent.PercentLayoutHelper.PercentLayoutParams} interface.
203 Log.v(TAG, "percent width: " + value);
211 Log.v(TAG, "percent height: " + value);
219 Log.v(TAG, "percent margin: " + value);
231 Log.v(TAG, "percent left margin: " + value);
240 Log.v(TAG, "percent top margin: " + value);
249 Log.v(TAG, "percent right margin: " + value);
258 Log.v(TAG, "percent bottom margin: " + value)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
XKBlib.h 195 int percent; /* requested volume as a % of maximum */ member in struct:_XkbBellNotify
435 int /* percent */,
444 int /* percent */
453 int /* percent */,
460 int /* percent */,
466 int /* percent */
472 int /* percent */,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
XKBlib.h 193 int percent; /* requested volume as a % of maximum */ member in struct:_XkbBellNotify
433 int /* percent */,
442 int /* percent */
451 int /* percent */,
458 int /* percent */,
464 int /* percent */
470 int /* percent */,
  /system/core/adb/
commandline.cpp 922 int percent = static_cast<int>(xfer * 47LL \/ (sb.st_size ? sb.st_size : 1)); local
    [all...]
  /art/test/testrunner/
testrunner.py 569 percent = (test_count * 100) / total_test_count
571 percent,
    [all...]
  /build/soong/genrule/
genrule.go 226 // recall that Sprintf replaces percent sign expressions, whereas dollar signs expressions remain as written,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_file2k.py 516 # the percent of close calls that raised an error
517 percent = 100. - 100.*self.close_success_count/self.close_count
518 print self.close_count, ('%.4f ' % percent),

Completed in 981 milliseconds

1 2 3 4 5 6 7 8 91011>>