Home
last modified time | relevance | path

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

123

/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
DDecimalFormatSymbolsTest.java23 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); in testHashCode() local
26 testEHCS(dfs, dfs2, dfsn); in testHashCode()
40 DecimalFormatSymbols dfs = new DecimalFormatSymbols(); in testDecimalFormatSymbols() local
41 assertTrue(-1 != dfs.getDecimalSeparator()); in testDecimalFormatSymbols()
48 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); in testDecimalFormatSymbolsLocale() local
49 assertTrue(-1 != dfs.getDecimalSeparator()); in testDecimalFormatSymbolsLocale()
56 DecimalFormatSymbols dfs = new DecimalFormatSymbols(ULocale.US); in testDecimalFormatSymbolsULocale() local
57 assertTrue(-1 != dfs.getDecimalSeparator()); in testDecimalFormatSymbolsULocale()
64 DecimalFormatSymbols dfs = new DecimalFormatSymbols(ULocale.US); in testGetZeroDigit() local
65 assertEquals('0', dfs.getZeroDigit()); in testGetZeroDigit()
[all …]
DDateFormatSymbolsTest.java23 DateFormatSymbols dfs = new DateFormatSymbols(Locale.US); in testHashCode() local
27 testEHCS(dfs, dfs2, dfsn); in testHashCode()
41 DateFormatSymbols dfs = new DateFormatSymbols(); in testDateFormatSymbols() local
42 assertNotNull(dfs.getWeekdays()); in testDateFormatSymbols()
49 DateFormatSymbols dfs = new DateFormatSymbols(Locale.US); in testDateFormatSymbolsLocale() local
50 assertNotNull(dfs.getWeekdays()); in testDateFormatSymbolsLocale()
57 DateFormatSymbols dfs = new DateFormatSymbols(ULocale.US); in testDateFormatSymbolsULocale() local
58 assertNotNull(dfs.getWeekdays()); in testDateFormatSymbolsULocale()
65 DateFormatSymbols dfs = new DateFormatSymbols(Locale.US); in testGetEras() local
66 assertNotNull(dfs.getEras()); in testGetEras()
[all …]
DSimpleDateFormatTest.java115 DateFormatSymbols dfs = new DateFormatSymbols(l); in testSimpleDateFormatStringDateFormatSymbols() local
117 SimpleDateFormat sdf = new SimpleDateFormat(mdy, dfs); in testSimpleDateFormatStringDateFormatSymbols()
189 DateFormatSymbols dfs = new DateFormatSymbols(Locale.US); in testGetDateFormatSymbols() local
190 SimpleDateFormat sdf = new SimpleDateFormat(mdy, dfs); in testGetDateFormatSymbols()
191 assertEquals(dfs, sdf.getDateFormatSymbols()); in testGetDateFormatSymbols()
198 DateFormatSymbols dfs = new DateFormatSymbols(Locale.JAPAN); in testSetDateFormatSymbols() local
200 sdf.setDateFormatSymbols(dfs); in testSetDateFormatSymbols()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DDecimalFormatSymbols.java47 public final java.text.DecimalFormatSymbols dfs; field in DecimalFormatSymbols
53 this.dfs = delegate; in DecimalFormatSymbols()
174 return dfs.getZeroDigit(); in getZeroDigit()
183 dfs.setZeroDigit(zeroDigit); in setZeroDigit()
210 return dfs.getGroupingSeparator(); in getGroupingSeparator()
219 dfs.setGroupingSeparator(groupingSeparator); in setGroupingSeparator()
228 return dfs.getDecimalSeparator(); in getDecimalSeparator()
237 dfs.setDecimalSeparator(decimalSeparator); in setDecimalSeparator()
246 return dfs.getPerMill(); in getPerMill()
255 dfs.setPerMill(perMill); in setPerMill()
[all …]
DDateFormatSymbols.java67 public java.text.DateFormatSymbols dfs; field in DateFormatSymbols
71 this.dfs = delegate; in DateFormatSymbols()
258 return dfs.getEras(); in getEras()
267 dfs.setEras(newEras); in setEras()
294 return dfs.getMonths(); in getMonths()
309 return dfs.getMonths(); in getMonths()
313 return dfs.getShortMonths(); in getMonths()
326 dfs.setMonths(newMonths); in setMonths()
341 dfs.setMonths(newMonths); in setMonths()
346 dfs.setShortMonths(newMonths); in setMonths()
[all …]
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_fs.c45 struct draw_fragment_shader *dfs; in draw_create_fragment_shader() local
47 dfs = CALLOC_STRUCT(draw_fragment_shader); in draw_create_fragment_shader()
48 if (dfs) { in draw_create_fragment_shader()
49 dfs->base = *shader; in draw_create_fragment_shader()
50 tgsi_scan_shader(shader->tokens, &dfs->info); in draw_create_fragment_shader()
53 return dfs; in draw_create_fragment_shader()
59 struct draw_fragment_shader *dfs) in draw_bind_fragment_shader() argument
63 draw->fs.fragment_shader = dfs; in draw_bind_fragment_shader()
69 struct draw_fragment_shader *dfs) in draw_delete_fragment_shader() argument
71 FREE(dfs); in draw_delete_fragment_shader()
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DDateFormatSymbolsTest.java31 DateFormatSymbols dfs = DateFormatSymbols.getInstance(loc); in TestGetInstance() local
33 boolean isIcuImpl = (dfs instanceof com.ibm.icu.impl.jdkadapter.DateFormatSymbolsICU); in TestGetInstance()
46 if (!dfs.equals(dfsIcu)) { in TestGetInstance()
93 DateFormatSymbols dfs = DateFormatSymbols.getInstance(new Locale("ja", "JP", "ICU")); in TestSetSymbols() local
100 dfs.setAmPmStrings(dfsEnUS.getAmPmStrings()); in TestSetSymbols()
101 dfs.setEras(dfsEnUS.getEras()); in TestSetSymbols()
102 dfs.setMonths(dfsEnUS.getMonths()); in TestSetSymbols()
103 dfs.setShortMonths(dfsEnUS.getShortMonths()); in TestSetSymbols()
104 dfs.setShortWeekdays(dfsEnUS.getShortWeekdays()); in TestSetSymbols()
105 dfs.setWeekdays(dfsEnUS.getWeekdays()); in TestSetSymbols()
[all …]
/external/llvm/test/Instrumentation/DataFlowSanitizer/
Dprefix-rename.ll6 ; CHECK: module asm ".symver dfs$f1,dfs$f@@version1"
9 ; CHECK: @"dfs$f2" = alias {{.*}} @"dfs$f1"
12 ; CHECK: @"dfs$g2" = alias {{.*}} @"dfs$g1"
15 ; CHECK: define void @"dfs$f1"
20 ; CHECK: define void @"dfs$g1"
Dcall.ll14 ; CHECK-LABEL: @"dfs$call"
17 ; CHECK: call{{.*}}@"dfs$f"
37 ; CHECK-LABEL: @"dfs$h"
38 ; CHECK: personality {{.*}} @"dfs$__gxx_personality_v0" {{.*}} {
41 ; CHECK: invoke void (...) @"dfs$g"(i32 42)
51 ; CHECK: call {{.*}} @"dfs$__cxa_begin_catch"
55 ; CHECK: call {{.*}} @"dfs$__cxa_end_catch"
Dstore.ll7 ; COMBINE_PTR_LABEL: @"dfs$store0"
11 ; NO_COMBINE_PTR_LABEL: @"dfs$store0"
20 ; NO_COMBINE_PTR_LABEL: @"dfs$store8"
30 ; COMBINE_PTR_LABEL: @"dfs$store8"
48 ; NO_COMBINE_PTR_LABEL: @"dfs$store16"
60 ; COMBINE_PTR_LABEL: @"dfs$store16"
80 ; NO_COMBINE_PTR_LABEL: @"dfs$store32"
96 ; COMBINE_PTR_LABEL: @"dfs$store32"
120 ; NO_COMBINE_PTR_LABEL: @"dfs$store64"
137 ; COMBINE_PTR_LABEL: @"dfs$store64"
Dload.ll7 ; COMBINE_PTR_LABEL: @"dfs$load0"
11 ; NO_COMBINE_PTR_LABEL: @"dfs$load0"
19 ; COMBINE_PTR_LABEL: @"dfs$load8"
32 ; NO_COMBINE_PTR_LABEL: @"dfs$load8"
47 ; COMBINE_PTR_LABEL: @"dfs$load16"
63 ; NO_COMBINE_PTR_LABEL: @"dfs$load16"
82 ; COMBINE_PTR_LABEL: @"dfs$load32"
101 ; NO_COMBINE_PTR_LABEL: @"dfs$load32"
124 ; COMBINE_PTR_LABEL: @"dfs$load64"
146 ; NO_COMBINE_PTR_LABEL: @"dfs$load64"
Darith.ll6 ; CHECK: @"dfs$add"
19 ; CHECK: @"dfs$sub"
31 ; CHECK: @"dfs$mul"
43 ; CHECK: @"dfs$sdiv"
55 ; CHECK: @"dfs$udiv"
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DFuncFormatNumb.java61 java.text.DecimalFormatSymbols dfs = null; in execute() local
80 dfs = ss.getDecimalFormatComposed(qname); in execute()
82 if (null == dfs) in execute()
95 formatter.setDecimalFormatSymbols(dfs); in execute()
105 dfs = ss.getDecimalFormatComposed(new QName("")); in execute()
107 if (dfs != null) in execute()
111 formatter.setDecimalFormatSymbols(dfs); in execute()
116 dfs = new java.text.DecimalFormatSymbols(java.util.Locale.US); in execute()
118 dfs.setInfinity(Constants.ATTRVAL_INFINITY); in execute()
119 dfs.setNaN(Constants.ATTRVAL_NAN); in execute()
[all …]
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DCalendarICU.java123 DateFormatSymbols dfs = DateFormatSymbols.getInstance(locale); in getDisplayName() local
124 String[] array = getFieldStrings(field, style, dfs); in getDisplayName()
139 DateFormatSymbols dfs = DateFormatSymbols.getInstance(locale); in getDisplayNames() local
141 return getFieldStringsMap(field, style, dfs); in getDisplayNames()
144 Map<String,Integer> result = getFieldStringsMap(field, SHORT, dfs); in getDisplayNames()
149 Map<String,Integer> longMap = getFieldStringsMap(field, LONG, dfs); in getDisplayNames()
298 private static String[] getFieldStrings(int field, int style, DateFormatSymbols dfs) { in getFieldStrings() argument
302 result = dfs.getAmPmStrings(); in getFieldStrings()
305 result = (style == LONG) ? dfs.getWeekdays() : dfs.getShortWeekdays(); in getFieldStrings()
309 result = dfs.getEras(); in getFieldStrings()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
DFormatHandler.java717 DateFormatSymbols dfs =new DateFormatSymbols(GregorianCalendar.class, uloc); in getCannedDateFormatSymbols() local
720 dfs.setMonths((String[]) cannedMonthNames.get(key)); in getCannedDateFormatSymbols()
721 dfs.setShortMonths((String[]) cannedShortMonthNames.get(key)); in getCannedDateFormatSymbols()
723 return dfs; in getCannedDateFormatSymbols()
728 DateFormatSymbols dfs = getCannedDateFormatSymbols(uloc); in getCannedSimpleDateFormat() local
732 SimpleDateFormat cannedSDF = new SimpleDateFormat(pattern, dfs, uloc); in getCannedSimpleDateFormat()
948 private static char[] getCharSymbols(DecimalFormatSymbols dfs) in getCharSymbols() argument
951 dfs.getDecimalSeparator(), in getCharSymbols()
952 dfs.getDigit(), in getCharSymbols()
953 dfs.getGroupingSeparator(), in getCharSymbols()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
DFormatHandler.java716 DateFormatSymbols dfs =new DateFormatSymbols(GregorianCalendar.class, uloc); in getCannedDateFormatSymbols() local
719 dfs.setMonths((String[]) cannedMonthNames.get(key)); in getCannedDateFormatSymbols()
720 dfs.setShortMonths((String[]) cannedShortMonthNames.get(key)); in getCannedDateFormatSymbols()
722 return dfs; in getCannedDateFormatSymbols()
727 DateFormatSymbols dfs = getCannedDateFormatSymbols(uloc); in getCannedSimpleDateFormat() local
731 SimpleDateFormat cannedSDF = new SimpleDateFormat(pattern, dfs, uloc); in getCannedSimpleDateFormat()
947 private static char[] getCharSymbols(DecimalFormatSymbols dfs) in getCharSymbols() argument
950 dfs.getDecimalSeparator(), in getCharSymbols()
951 dfs.getDigit(), in getCharSymbols()
952 dfs.getGroupingSeparator(), in getCharSymbols()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormatSymbols.java1506 DateFormatSymbols dfs = DFSCACHE.getInstance(key, desiredLocale); in initializeData() local
1507 initializeData(dfs); in initializeData()
1515 void initializeData(DateFormatSymbols dfs) { in initializeData() argument
1516 this.eras = dfs.eras; in initializeData()
1517 this.eraNames = dfs.eraNames; in initializeData()
1518 this.narrowEras = dfs.narrowEras; in initializeData()
1519 this.months = dfs.months; in initializeData()
1520 this.shortMonths = dfs.shortMonths; in initializeData()
1521 this.narrowMonths = dfs.narrowMonths; in initializeData()
1522 this.standaloneMonths = dfs.standaloneMonths; in initializeData()
[all …]
DChineseDateFormatSymbols.java117 void initializeData(DateFormatSymbols dfs) { in initializeData() argument
118 super.initializeData(dfs); in initializeData()
119 if (dfs instanceof ChineseDateFormatSymbols) { in initializeData()
121 this.isLeapMonth = ((ChineseDateFormatSymbols)dfs).isLeapMonth; in initializeData()
DScientificNumberFormatter.java290 private static String getPreExponent(DecimalFormatSymbols dfs) { in getPreExponent() argument
292 preExponent.append(dfs.getExponentMultiplicationSign()); in getPreExponent()
293 char[] digits = dfs.getDigits(); in getPreExponent()
300 DecimalFormatSymbols dfs = decimalFormat.getDecimalFormatSymbols(); in getInstance() local
302 (DecimalFormat) decimalFormat.clone(), getPreExponent(dfs), style); in getInstance()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java1547 DateFormatSymbols dfs = DFSCACHE.getInstance(key, desiredLocale); in initializeData() local
1548 initializeData(dfs); in initializeData()
1556 void initializeData(DateFormatSymbols dfs) { in initializeData() argument
1557 this.eras = dfs.eras; in initializeData()
1558 this.eraNames = dfs.eraNames; in initializeData()
1559 this.narrowEras = dfs.narrowEras; in initializeData()
1560 this.months = dfs.months; in initializeData()
1561 this.shortMonths = dfs.shortMonths; in initializeData()
1562 this.narrowMonths = dfs.narrowMonths; in initializeData()
1563 this.standaloneMonths = dfs.standaloneMonths; in initializeData()
[all …]
DChineseDateFormatSymbols.java115 void initializeData(DateFormatSymbols dfs) { in initializeData() argument
116 super.initializeData(dfs); in initializeData()
117 if (dfs instanceof ChineseDateFormatSymbols) { in initializeData()
119 this.isLeapMonth = ((ChineseDateFormatSymbols)dfs).isLeapMonth; in initializeData()
DScientificNumberFormatter.java301 private static String getPreExponent(DecimalFormatSymbols dfs) { in getPreExponent() argument
303 preExponent.append(dfs.getExponentMultiplicationSign()); in getPreExponent()
304 char[] digits = dfs.getDigits(); in getPreExponent()
311 DecimalFormatSymbols dfs = decimalFormat.getDecimalFormatSymbols(); in getInstance() local
313 (DecimalFormat) decimalFormat.clone(), getPreExponent(dfs), style); in getInstance()
/external/icu/icu4c/source/i18n/
Dshareddateformatsymbols.h25 : dfs(loc, type, status) { } in SharedDateFormatSymbols()
27 const DateFormatSymbols &get() const { return dfs; } in get()
29 DateFormatSymbols dfs;
Ddcfmtsym.cpp219 DecimalFormatSymbols& dfs; member
225 DecFmtSymDataSink(DecimalFormatSymbols& _dfs) : dfs(_dfs) { in DecFmtSymDataSink()
239 dfs.setSymbol( in put()
264 dfs.setSymbol( in resolveMissingMonetarySeparators()
269 dfs.setSymbol( in resolveMissingMonetarySeparators()
277 DecimalFormatSymbols& dfs; member
282 : dfs(_dfs), hasBeforeCurrency(FALSE), hasAfterCurrency(FALSE) {} in CurrencySpacingSink()
313 const UnicodeString& current = dfs.getPatternForCurrencySpacing( in put()
316 dfs.setPatternForCurrencySpacing( in put()
330 dfs.setPatternForCurrencySpacing((UCurrencySpacing)pattern, in resolveMissing()
/external/fio/examples/
Dlibhdfs.fio5 filename=dfs-perftest-base.dfs-perftest-base,9000

123