Home
last modified time | relevance | path

Searched refs:measure (Results 1 – 25 of 71) sorted by relevance

123

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DPeriodFormatterData.java323 String measure = dr.measures == null ? null : dr.measures[index]; in appendCount() local
329 if (measure != null) { in appendCount()
330 sb.append(measure); in appendCount()
343 if (measure != null) { in appendCount()
344 sb.append(measure); in appendCount()
369 String measure = dr.measures[index]; in appendCount() local
370 if (measure != null) { in appendCount()
371 sb.append(measure); in appendCount()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMeasureFormat.java505 Measure measure, in formatMeasurePerUnit() argument
510 measure.getUnit(), perUnit); in formatMeasurePerUnit()
512 Measure newMeasure = new Measure(measure.getNumber(), resolvedUnit); in formatMeasurePerUnit()
518 formatMeasure(measure, numberFormat, new StringBuilder(), fpos), in formatMeasurePerUnit()
866 private String formatMeasure(Measure measure, ImmutableNumberFormat nf) { in formatMeasure() argument
868 measure, nf, new StringBuilder(), in formatMeasure()
873 Measure measure, in formatMeasure() argument
877 if (measure.getUnit() instanceof Currency) { in formatMeasure()
880 new CurrencyAmount(measure.getNumber(), (Currency) measure.getUnit()), in formatMeasure()
885 Number n = measure.getNumber(); in formatMeasure()
[all …]
/external/icu/icu4c/source/i18n/unicode/
Dmeasfmt.h204 const Measure &measure,
350 const Measure &measure,
/external/icu/icu4c/source/test/intltest/
Dmeasfmttest.cpp718 Measure measure(values[j], MeasureUnit::createMinute(status), status); in Test10219FractionalPlurals() local
722 verifyFormat("Test10219", mf, &measure, 1, expected[j][i]); in Test10219FractionalPlurals()
823 Measure measure(numbers[numIndex], new MeasureUnit(units[unitIndex]), status); in TestGreek() local
831 verifyFormat("TestGreek", fmt, &measure, 1, expected[counter]); in TestGreek()
994 Measure measure(value, (MeasureUnit *) unit.clone(), status); in helperTestSimplePer() local
1001 measure, in helperTestSimplePer()
1120 Measure measure(43.5, MeasureUnit::createFoot(status), status); in TestFieldPosition() local
1129 &measure, in TestFieldPosition()
1134 measure = Measure(43, MeasureUnit::createFoot(status), status); in TestFieldPosition()
1142 &measure, in TestFieldPosition()
[all …]
/external/sonivox/jet_tools/JetCreator/
DJetCreatorhlp.dat14 starting m/b/t = Sets the starting measure, beat, and tick for the event.
28 ending m/b/t = Sets the ending measure, beat, and tick for the segment.
55 starting m/b/t = Sets the starting measure, beat, and tick for the segment.
67 ending m/b/t = Sets the ending measure, beat, and tick for the segment.
/external/icu/icu4c/source/i18n/
Dmeasfmt.cpp593 const Measure &measure, in formatMeasurePerUnit() argument
602 MeasureUnit::resolveUnitPerUnit(measure.getUnit(), perUnit); in formatMeasurePerUnit()
604 Measure newMeasure(measure.getNumber(), resolvedUnit, status); in formatMeasurePerUnit()
612 measure, **numberFormat, result, fpos, status), in formatMeasurePerUnit()
761 const Measure &measure, in formatMeasure() argument
769 const Formattable& amtNumber = measure.getNumber(); in formatMeasure()
770 const MeasureUnit& amtUnit = measure.getUnit(); in formatMeasure()
/external/deqp/doc/testspecs/GLES3/
Dperformance.buffer.data_upload.txt107 function_call.* tests measure the time taken by the corresponding command or the series of
116 render_after_upload.* tests measure rendering time of a buffer in different scenarios. The
117 tests measure time from rendering command issuance (glDraw* call) to finished rendering
118 (return from glReadPixels call). The purpose of the tests is to measure the data transfer
135 results. "draw_arrays" and "draw_elements" tests measure the processing rate in the case
Dperformance.txt81 Shader execution tests measure the performance of single pair of vertex and
92 Test cases that measure fragment-side performance must make sure fragments
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
DLineRegion.java37 public static Number measure(Number val1, Number val2) { in measure() method in LineRegion
/external/linux-tools-perf/src/tools/perf/Documentation/
Dperf-kmem.txt6 perf-kmem - Tool to trace/measure kernel memory(slab) properties
Dperf-sched.txt6 perf-sched - Tool to trace/measure scheduler properties (latencies)
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/
DDemoAppWidgetProvider.java41 plot.measure(150,150); in onUpdate()
/external/deqp/doc/testspecs/GLES2/
Dperformance.txt81 Shader execution tests measure the performance of single pair of vertex and
92 Test cases that measure fragment-side performance must make sure fragments
Dperformance.texture.upload.txt42 Texture upload performance cases measure the performance of texture upload
Dperformance.texture.format.txt36 Test cases measure performance of 2D and cubemap texture lookups without
/external/lldb/source/Host/macosx/launcherXPCService/
DLauncherRootXPCService.mm42 …// As another security measure, we make sure that the LaunchUsingXPCRightName rights actually exis…
/external/okhttp/okio/benchmarks/
DREADME.md4 This module contains microbenchmarks that can be used to measure various aspects of performance for…
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeUnitTest.java394 Measure measure = new Measure(23, MeasureUnit.CELSIUS); in TestStandInForMeasureFormat() local
395 assertEquals("23 °C", "23 °C", tuf.format(measure)); in TestStandInForMeasureFormat()
/external/ceres-solver/data/nist/
DThurber.dat13 variable is a measure of electron mobility, and the
/external/svox/pico/tests/data/
Dxsampa_pico_man_en-GB.txt59 # TEST Z measure "mE.Z@
196 # TEST @` (US) @ (GB) measure "mE.Z@`
235 # TEST Z measure "mE.Z@`
/external/icu/icu4c/source/test/hdrtst/
Dcxxfiles.txt59 measure.h
/external/bison/lib/
Dtimevar.def2 measure run-time performance of the compiler.
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DBarPlotExampleActivity.java330 LineRegion.measure(x, thisX).doubleValue(); in onPlotClicked()
332 LineRegion.measure(y, thisY).doubleValue(); in onPlotClicked()
/external/iputils/
Dclockdiff.c126 measure(struct sockaddr_in * addr) in measure() function
652 if ((measure_status = (ip_opt_len ? measure_opt : measure)(&server)) < 0) { in main()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DViewTest.java354 view1.measure( MeasureSpec.makeMeasureSpec(150, MeasureSpec.AT_MOST), in test_measuredDimension()
373 view2.measure( MeasureSpec.makeMeasureSpec(1000, MeasureSpec.AT_MOST), in test_measuredDimensionCustomView()

123