/third_party/flutter/flutter/packages/flutter_localizations/lib/src/l10n/ |
D | cupertino_hu.arb | 4 "datePickerMinuteSemanticsLabelOne": "1 perc", 5 "datePickerMinuteSemanticsLabelOther": "$minute perc", 14 "timerPickerMinuteLabelOne": "perc", 15 "timerPickerMinuteLabelOther": "perc",
|
D | generated_cupertino_localizations.dart | 5448 String get datePickerMinuteSemanticsLabelOne => r'1 perc'; 5451 String get datePickerMinuteSemanticsLabelOther => r'$minute perc'; 5493 String get timerPickerMinuteLabelOne => r'perc'; 5496 String get timerPickerMinuteLabelOther => r'perc';
|
/third_party/gstreamer/gstplugins_base/tests/check/elements/ |
D | decodebin.c | 624 gint perc; in GST_START_TEST() local 661 gst_message_parse_buffering (msg, &perc); in GST_START_TEST() 662 fail_unless (perc == 50); in GST_START_TEST() 672 gst_message_parse_buffering (msg, &perc); in GST_START_TEST() 673 fail_unless (perc == 20); in GST_START_TEST() 682 gst_message_parse_buffering (msg, &perc); in GST_START_TEST() 683 fail_unless (perc == 20); in GST_START_TEST() 692 gst_message_parse_buffering (msg, &perc); in GST_START_TEST() 693 fail_unless (perc == 20); in GST_START_TEST() 702 gst_message_parse_buffering (msg, &perc); in GST_START_TEST() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/ |
D | rtpjitterbuffer.c | 453 gint perc; in update_buffer_level() local 456 perc = (level * 100 / jbuf->high_level); in update_buffer_level() 457 perc = MIN (perc, 100); in update_buffer_level() 459 perc = 100; in update_buffer_level() 463 *percent = perc; in update_buffer_level() 465 GST_DEBUG ("buffering %d", perc); in update_buffer_level() 599 gint perc_time, perc_window, perc; in calculate_skew() local 605 perc = MAX (perc_time, perc_window); in calculate_skew() 609 perc = perc * perc; in calculate_skew() 614 (perc * jbuf->window_min + ((10000 - perc) * jbuf->skew)) / 10000; in calculate_skew()
|
/third_party/gstreamer/gstplugins_good/gst/debugutils/ |
D | progressreport.c | 204 gdouble perc; in gst_progress_report_post_progress() local 206 perc = gst_util_guint64_to_gdouble (current) * 100.0 / in gst_progress_report_post_progress() 208 perc = CLAMP (perc, 0.0, 100.0); in gst_progress_report_post_progress() 213 s = gst_structure_new ("progress", "percent", G_TYPE_INT, (gint) perc, in gst_progress_report_post_progress() 214 "percent-double", G_TYPE_DOUBLE, perc, "current", G_TYPE_INT64, current, in gst_progress_report_post_progress()
|
/third_party/python/Lib/ |
D | locale.py | 219 for perc in percents: 220 if perc.group()[-1]=='%': 223 new_val.append(_format(perc.group(), val, grouping, monetary)) 229 for perc in percents: 230 if perc.group()[-1]=='%': 233 starcount = perc.group('modifiers').count('*') 234 new_val.append(_format(perc.group(),
|
/third_party/glib/glib/ |
D | gtester-report.in | 313 perc = binary.success_cases * 100.0 / real_cases 317 }.get (int (perc), 'bgcolor="yellow"') 318 self.oprint ('<td align="right" %s>%.2f%%</td>\n' % (pcolor, perc)) 333 perc = (self.total_tcounter - self.total_fcounter) * 100.0 / self.total_tcounter 335 perc = 0.0 339 }.get (int (perc), 'bgcolor="yellow"') 340 self.oprint ('<td align="right" %s>%.2f%%</td>\n' % (pcolor, perc))
|
/third_party/gstreamer/gstreamer/plugins/elements/ |
D | gstdownloadbuffer.c | 488 gint perc; in get_buffering_percent() local 505 perc = 100; in get_buffering_percent() 507 perc = dlbuf->cur_level.bytes * 100 / dlbuf->max_level.bytes; in get_buffering_percent() 509 perc = 0; in get_buffering_percent() 513 perc = 100; in get_buffering_percent() 515 perc = MAX (perc, dlbuf->cur_level.time * 100 / dlbuf->max_level.time); in get_buffering_percent() 517 perc = MAX (0, perc); in get_buffering_percent() 523 perc = perc * 100 / dlbuf->high_percent; in get_buffering_percent() 525 if (perc > 100) in get_buffering_percent() 526 perc = 100; in get_buffering_percent() [all …]
|
D | gstmultiqueue.c | 416 #define SET_PERCENT(mq, perc) G_STMT_START { \ argument 417 if (perc != mq->buffering_percent) { \ 418 mq->buffering_percent = perc; \ 420 GST_DEBUG_OBJECT (mq, "buffering %d percent", perc); \
|
D | gstqueue2.c | 250 #define SET_PERCENT(q, perc) G_STMT_START { \ argument 251 if (perc != q->buffering_percent) { \ 252 q->buffering_percent = perc; \ 254 GST_DEBUG_OBJECT (q, "buffering %d percent", perc); \ 255 get_buffering_stats (q, perc, &q->mode, &q->avg_in, &q->avg_out, \
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | ClearTest.cpp | 535 float perc = static_cast<float>(ndx) / static_cast<float>(kNumSteps); in TEST_P() local 536 glScissor(0, 0, static_cast<int>(kRenderbufferSize * perc), in TEST_P() 537 static_cast<int>(kRenderbufferSize * perc)); in TEST_P() 538 glClearDepthf(perc); in TEST_P() 562 float perc = static_cast<float>(ndx) / static_cast<float>(kNumSteps); in TEST_P() local 563 glScissor(0, 0, static_cast<int>(kRenderbufferSize * perc), in TEST_P() 564 static_cast<int>(kRenderbufferSize * perc)); in TEST_P() 565 glClearStencil(static_cast<int>(perc * 255.0f)); in TEST_P()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/ |
D | hu.txt | 1741 dn{"perc"} 1747 one{"{0} perc múlva"} 1748 other{"{0} perc múlva"} 1757 dn{"perc"} 1760 one{"{0} perc múlva"} 1761 other{"{0} perc múlva"} 1770 dn{"perc"} 1773 one{"{0} perc múlva"} 1774 other{"{0} perc múlva"}
|
/third_party/icu/icu4c/source/data/locales/ |
D | hu.txt | 1744 dn{"perc"} 1750 one{"{0} perc múlva"} 1751 other{"{0} perc múlva"} 1763 one{"{0} perc múlva"} 1764 other{"{0} perc múlva"} 1773 dn{"perc"} 1776 one{"{0} perc múlva"} 1777 other{"{0} perc múlva"}
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | hu.txt | 1744 dn{"perc"} 1750 one{"{0} perc múlva"} 1751 other{"{0} perc múlva"} 1763 one{"{0} perc múlva"} 1764 other{"{0} perc múlva"} 1773 dn{"perc"} 1776 one{"{0} perc múlva"} 1777 other{"{0} perc múlva"}
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | ClearTest.cpp | 605 float perc = static_cast<float>(ndx) / static_cast<float>(kNumSteps); in TEST_P() local 606 glScissor(0, 0, static_cast<int>(kRenderbufferSize * perc), in TEST_P() 607 static_cast<int>(kRenderbufferSize * perc)); in TEST_P() 608 glClearDepthf(perc); in TEST_P() 632 float perc = static_cast<float>(ndx) / static_cast<float>(kNumSteps); in TEST_P() local 633 glScissor(0, 0, static_cast<int>(kRenderbufferSize * perc), in TEST_P() 634 static_cast<int>(kRenderbufferSize * perc)); in TEST_P() 635 glClearStencil(static_cast<int>(perc * 255.0f)); in TEST_P()
|
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/ |
D | mpegtspacketizer.c | 1463 gint perc_time, perc_window, perc; in calculate_skew() local 1469 perc = MAX (perc_time, perc_window); in calculate_skew() 1473 perc = perc * perc; in calculate_skew() 1478 (perc * pcr->window_min + ((10000 - perc) * pcr->skew)) / 10000; in calculate_skew()
|
/third_party/icu/icu4c/source/test/perf/perldriver/ |
D | Output.pm | 28 my $perc = 100; #for percent
|
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/ |
D | hu.txt | 252 dnam{"perc"} 253 one{"{0} perc"} 254 other{"{0} perc"} 255 per{"{0}/perc"}
|
/third_party/icu/icu4c/source/data/unit/ |
D | hu.txt | 267 dnam{"perc"} 268 one{"{0} perc"} 269 other{"{0} perc"} 270 per{"{0}/perc"}
|
/third_party/skia/third_party/externals/icu/source/data/unit/ |
D | hu.txt | 319 dnam{"perc"} 320 one{"{0} perc"} 321 other{"{0} perc"} 322 per{"{0}/perc"}
|
/third_party/gstreamer/gstplugins_base/gst/playback/ |
D | gsturisourcebin.c | 2330 gint perc, msg_perc; in handle_buffering_message() local 2407 gst_message_parse_buffering (bufstats, &perc); in handle_buffering_message() 2408 if (perc < smaller_perc) { in handle_buffering_message() 2409 smaller_perc = perc; in handle_buffering_message()
|
D | gstdecodebin2.c | 5663 gint perc, msg_perc; in gst_decode_bin_handle_message() local 5722 gst_message_parse_buffering (bufstats, &perc); in gst_decode_bin_handle_message() 5723 if (perc < smaller_perc) { in gst_decode_bin_handle_message() 5724 smaller_perc = perc; in gst_decode_bin_handle_message()
|
/third_party/gstreamer/gstplugins_bad/docs/plugins/ |
D | gst-plugins-bad-plugins.args | 26132 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-decay</NAME> 26142 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-fm-decay</NAME> 26152 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-fm-depth</NAME> 26162 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-fm-harmonic</NAME> 26172 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-fm-waveform</NAME> 26182 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-harmonic</NAME> 26192 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-level</NAME> 26202 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-stereo</NAME> 26212 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-trigger</NAME> 26222 <NAME>http---calf-sourceforge-net-plugins-Organ::perc-vel2amp</NAME> [all …]
|
/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | qtdemux.c | 6748 gint perc = (gint) ((gdouble) num * 100.0 / (gdouble) denom); in gst_qtdemux_post_progress() local 6752 gst_structure_new ("progress", "percent", G_TYPE_INT, perc, NULL))); in gst_qtdemux_post_progress()
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-fts/ |
D | les-mis-utf8.txt | 9796 Montreuil-sur-mer, mais le peu qui en a percé a laissé dans cette ville
|