Searched refs:SampleType (Results 1 – 5 of 5) sorted by relevance
/external/deqp/modules/gles3/performance/ |
D | es3pBufferDataUploadTests.cpp | 203 typedef SampleT SampleType; typedef 208 SampleType duration; 214 typedef SampleT SampleType; typedef 668 …calculateSingleOperationStatistics (const std::vector<T>& samples, deUint64 T::SampleType::*target) in calculateSingleOperationStatistics() 687 template <typename StatisticsType, typename SampleType> 688 …onst LineParametersWithConfidence& fit, const std::vector<SampleType>& samples, int SampleType::*p… in calculateBasicStatistics() 762 template <typename StatisticsType, typename SampleType> 763 …isticsType& stats, const LineParametersWithConfidence& fit, const std::vector<SampleType>& samples) in calculateBasicTransferStatistics() 765 calculateBasicStatistics(stats, fit, samples, &SampleType::writtenSize); in calculateBasicTransferStatistics() 768 template <typename StatisticsType, typename SampleType> [all …]
|
/external/messageformat/java/com/ibm/icu/simple/ |
D | PluralRules.java | 348 public boolean isLimited(SampleType sampleType) { 871 public enum SampleType { enum in PluralRules 940 public final SampleType sampleType; 958 …private FixedDecimalSamples(SampleType sampleType, Set<FixedDecimalRange> samples, boolean bounded… in FixedDecimalSamples() 968 SampleType sampleType2; in parse() 974 sampleType2 = SampleType.INTEGER; in parse() 976 sampleType2 = SampleType.DECIMAL; in parse() 1011 private static void checkDecimal(SampleType sampleType2, FixedDecimal sample) { in checkDecimal() 1012 … if ((sampleType2 == SampleType.INTEGER) != (sample.getVisibleDecimalDigitCount() == 0)) { in checkDecimal() 1094 boolean isLimited(SampleType sampleType); in isLimited() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | PluralRules.java | 361 public boolean isLimited(SampleType sampleType) { 887 public enum SampleType { enum in PluralRules 956 public final SampleType sampleType; 974 …private FixedDecimalSamples(SampleType sampleType, Set<FixedDecimalRange> samples, boolean bounded… in FixedDecimalSamples() 984 SampleType sampleType2; in parse() 990 sampleType2 = SampleType.INTEGER; in parse() 992 sampleType2 = SampleType.DECIMAL; in parse() 1027 private static void checkDecimal(SampleType sampleType2, FixedDecimal sample) { in checkDecimal() 1028 … if ((sampleType2 == SampleType.INTEGER) != (sample.getVisibleDecimalDigitCount() == 0)) { in checkDecimal() 1110 boolean isLimited(SampleType sampleType); in isLimited() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | PluralRulesTest.java | 45 import com.ibm.icu.text.PluralRules.SampleType; 166 … checkNewSamples(description, test, "one", PluralRules.SampleType.INTEGER, "@integer 3, 19", true, 168 …checkNewSamples(description, test, "one", PluralRules.SampleType.DECIMAL, "@decimal 3.50~3.53, …",… 170 checkOldSamples(description, test, "one", SampleType.INTEGER, 3d, 19d); 171 checkOldSamples(description, test, "one", SampleType.DECIMAL, 3.5d, 3.51d, 3.52d, 3.53d); 173 checkNewSamples(description, test, "other", PluralRules.SampleType.INTEGER, "", true, null); 174 …checkNewSamples(description, test, "other", PluralRules.SampleType.DECIMAL, "@decimal 99.0~99.2, 9… 176 checkOldSamples(description, test, "other", SampleType.INTEGER); 177 checkOldSamples(description, test, "other", SampleType.DECIMAL, 99d, 99.1, 99.2d, 999d); 180 …public void checkOldSamples(String description, PluralRules rules, String keyword, SampleType samp… [all …]
|
D | PluralFormatUnitTest.java | 26 import com.ibm.icu.text.PluralRules.SampleType; 210 list = rules.getSamples(keyword, SampleType.DECIMAL); in TestSamples()
|