HomeSort by relevance Sort by last modified time
    Searched full:permille (Results 1 - 25 of 44) sorted by null

1 2

  /system/core/logd/
LogStatistics.cpp 250 int permille = (realPermille - virtualPermille) * 1000L local
252 if ((permille < -1) || (1 < permille)) {
255 const char *prefix = (permille > 0) ? "+" : "";
257 if (permille > 999) {
258 permille = (permille + 1000) / 100; // Now tenths fold
262 if ((-99 < permille) && (permille < 99)) {
265 permille / 10
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
Support_DecimalFormat.java 57 t_FormatWithField(10, format, number, text, NumberFormat.Field.PERMILLE, 0, 0);
74 t_FormatWithField(21, format, number, text, NumberFormat.Field.PERMILLE, 0, 0);
94 t_FormatWithField(32, format, number, text, NumberFormat.Field.PERMILLE, 0, 0);
114 // test permille pattern
206 v.add(new FieldContainer(6, 7, NumberFormat.Field.PERMILLE));
  /libcore/support/src/test/java/tests/support/
Support_DecimalFormat.java 70 NumberFormat.Field.PERMILLE, 0, 0);
98 NumberFormat.Field.PERMILLE, 0, 0);
128 NumberFormat.Field.PERMILLE, 0, 0);
163 // test permille pattern
246 v.add(new FieldContainer(6, 7, NumberFormat.Field.PERMILLE));
  /development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/
NativeAudio.java 242 int permille = (lastProgress - 50) * 20;
243 setStereoPositionUriAudioPlayer(permille);
304 public static native void setStereoPositionUriAudioPlayer(int permille);
  /external/webrtc/webrtc/video/
send_statistics_proxy.h 116 int Permille(int min_required_samples) const;
send_statistics_proxy.cc 123 int key_frames_permille = key_frame_counter_.Permille(kMinRequiredSamples);
424 int SendStatisticsProxy::BoolSampleCounter::Permille(
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DecimalFormatICU.java 441 } else if (icuAttribute == NumberFormat.Field.PERMILLE) {
442 jdkAttribute = java.text.NumberFormat.Field.PERMILLE;
  /frameworks/native/cmds/dumpstate/
utils.cpp 296 // print permille as a percent
297 static void snprdec(char *buffer, size_t len, size_t spc, unsigned permille) {
300 snprintf(str, sizeof(str), " %u.%u%%", permille / 10, permille % 10);
347 unsigned permille = (iotime * 1000 + (total / 2)) / total; local
348 if (permille > 1000) {
349 permille = 1000;
362 snprdec(buffer, sizeof(buffer), 79, permille);
    [all...]
  /external/icu/icu4c/source/test/testdata/
structLocale.txt     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDecimalFormatAPIC.java 319 // test permille pattern
406 v.add(new FieldContainer(6, 7, NumberFormat.Field.PERMILLE));
  /external/icu/icu4c/source/i18n/
decimfmtimpl.h 434 // Scales for precent or permille symbols
441 // Does not scale for precent or permille symbols
dcfmtsym.cpp 185 "perMille",
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatAPIC.java 315 // test permille pattern
402 v.add(new FieldContainer(6, 7, NumberFormat.Field.PERMILLE));
  /frameworks/av/include/media/
mediaplayer.h 164 // Playback rate expressed in permille (1000 is normal speed), saved as int32_t, with negative
  /frameworks/wilhelm/src/android/
android_GenericPlayer.h 190 int16_t mCacheFill; // cache fill level + played back level in permille
android_GenericMediaPlayer.cpp 171 // while SL/XA use permille, so does GenericPlayer
  /frameworks/base/media/java/android/media/audiofx/
EnvironmentalReverb.java 227 * @param decayHFRatio high frequency decay ratio using a permille scale. The valid range is
369 * @param diffusion diffusion specified using a permille scale. The diffusion valid range is
402 * @param density density specified using a permille scale. The valid range is [0, 1000].
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
NumberFormat.java     [all...]
DecimalFormat.java     [all...]
  /development/ndk/platforms/android-9/samples/native-audio/jni/
native-audio-jni.c 479 jclass clazz, jint permille)
484 result = (*volumeItf)->SetStereoPosition(volumeItf, permille);
  /libcore/ojluni/src/main/java/java/text/
DecimalFormat.java 498 } else if (fp.getFieldAttribute() == Field.PERMILLE) {
499 attribute = android.icu.text.NumberFormat.Field.PERMILLE;
549 if (icuAttribute.getName().equals(Field.PERMILLE.getName())) {
550 return Field.PERMILLE;
    [all...]
NumberFormat.java     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NumberFormat.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NumberFormat.java     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/data/
numberformattestspecification.txt 136 test permille

Completed in 5664 milliseconds

1 2