/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
D | DecimalFormatSymbolsTest.java | 23 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 …]
|
D | DateFormatSymbolsTest.java | 23 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 …]
|
D | SimpleDateFormatTest.java | 115 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/ |
D | DecimalFormatSymbols.java | 47 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 …]
|
D | DateFormatSymbols.java | 67 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/ |
D | draw_fs.c | 45 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/ |
D | DateFormatSymbolsTest.java | 34 DateFormatSymbols dfs = DateFormatSymbols.getInstance(loc); in TestGetInstance() local 36 boolean isIcuImpl = (dfs instanceof com.ibm.icu.impl.jdkadapter.DateFormatSymbolsICU); in TestGetInstance() 49 if (!dfs.equals(dfsIcu)) { in TestGetInstance() 96 DateFormatSymbols dfs = DateFormatSymbols.getInstance(new Locale("ja", "JP", "ICU")); in TestSetSymbols() local 103 dfs.setAmPmStrings(dfsEnUS.getAmPmStrings()); in TestSetSymbols() 104 dfs.setEras(dfsEnUS.getEras()); in TestSetSymbols() 105 dfs.setMonths(dfsEnUS.getMonths()); in TestSetSymbols() 106 dfs.setShortMonths(dfsEnUS.getShortMonths()); in TestSetSymbols() 107 dfs.setShortWeekdays(dfsEnUS.getShortWeekdays()); in TestSetSymbols() 108 dfs.setWeekdays(dfsEnUS.getWeekdays()); in TestSetSymbols() [all …]
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
D | CalendarICU.java | 123 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/ |
D | FormatHandler.java | 719 DateFormatSymbols dfs =new DateFormatSymbols(GregorianCalendar.class, uloc); in getCannedDateFormatSymbols() local 722 dfs.setMonths((String[]) cannedMonthNames.get(key)); in getCannedDateFormatSymbols() 723 dfs.setShortMonths((String[]) cannedShortMonthNames.get(key)); in getCannedDateFormatSymbols() 725 return dfs; in getCannedDateFormatSymbols() 730 DateFormatSymbols dfs = getCannedDateFormatSymbols(uloc); in getCannedSimpleDateFormat() local 734 SimpleDateFormat cannedSDF = new SimpleDateFormat(pattern, dfs, uloc); in getCannedSimpleDateFormat() 950 private static char[] getCharSymbols(DecimalFormatSymbols dfs) in getCharSymbols() argument 953 dfs.getDecimalSeparator(), in getCharSymbols() 954 dfs.getDigit(), in getCharSymbols() 955 dfs.getGroupingSeparator(), in getCharSymbols() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | FormatHandler.java | 716 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/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | FuncFormatNumb.java | 61 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/llvm/test/Instrumentation/DataFlowSanitizer/ |
D | prefix-rename.ll | 6 ; 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"
|
D | call.ll | 14 ; 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"
|
D | store.ll | 7 ; 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"
|
D | load.ll | 7 ; 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"
|
D | arith.ll | 6 ; CHECK: @"dfs$add" 19 ; CHECK: @"dfs$sub" 31 ; CHECK: @"dfs$mul" 43 ; CHECK: @"dfs$sdiv" 55 ; CHECK: @"dfs$udiv"
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | layout_assignment.h | 49 LayoutConstraint(bool mandatory, bool dfs) in LayoutConstraint() argument 50 : mandatory_(mandatory), dfs_(dfs) {} in LayoutConstraint() 59 bool dfs() const { return dfs_; } in dfs() function 73 bool mandatory, bool dfs); 94 bool mandatory, bool dfs); 115 bool dfs = false) 116 : LayoutConstraint(/*mandatory=*/true, dfs), in LayoutConstraint() argument 167 bool mandatory = true, bool dfs = true); 170 bool mandatory = true, bool dfs = true); 171 Status SetResultLayout(const Shape& shape_with_layout, bool dfs = true); [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateFormatSymbols.java | 1547 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 …]
|
D | ChineseDateFormatSymbols.java | 115 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()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DateFormatSymbols.java | 1506 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 …]
|
D | ChineseDateFormatSymbols.java | 117 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()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | IntlTestDecimalFormatSymbols.java | 274 DecimalFormatSymbols dfs = new DecimalFormatSymbols(); in testPropagateZeroDigit() local 275 dfs.setZeroDigit('\u1040'); in testPropagateZeroDigit() 277 df.setDecimalFormatSymbols(dfs); in testPropagateZeroDigit() 279 '\u1041', dfs.getDigits()[1]); in testPropagateZeroDigit() 282 dfs.setZeroDigit('a'); in testPropagateZeroDigit() 283 df.setDecimalFormatSymbols(dfs); in testPropagateZeroDigit() 285 'b', dfs.getDigits()[1]); in testPropagateZeroDigit() 355 DecimalFormatSymbols dfs = DecimalFormatSymbols.forNumberingSystem(loc, ns); in testNumberingSystem() local 356 DecimalFormat df = new DecimalFormat("#,##0.##", dfs); in testNumberingSystem() 361 char actual2 = dfs.getPatternSeparator(); in testNumberingSystem() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | IntlTestDecimalFormatSymbols.java | 271 DecimalFormatSymbols dfs = new DecimalFormatSymbols(); in testPropagateZeroDigit() local 272 dfs.setZeroDigit('\u1040'); in testPropagateZeroDigit() 274 df.setDecimalFormatSymbols(dfs); in testPropagateZeroDigit() 276 '\u1041', dfs.getDigits()[1]); in testPropagateZeroDigit() 279 dfs.setZeroDigit('a'); in testPropagateZeroDigit() 280 df.setDecimalFormatSymbols(dfs); in testPropagateZeroDigit() 282 'b', dfs.getDigits()[1]); in testPropagateZeroDigit() 352 DecimalFormatSymbols dfs = DecimalFormatSymbols.forNumberingSystem(loc, ns); in testNumberingSystem() local 353 DecimalFormat df = new DecimalFormat("#,##0.##", dfs); in testNumberingSystem() 358 char actual2 = dfs.getPatternSeparator(); in testNumberingSystem() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | number_fluent.cpp | 176 void SymbolsWrapper::setTo(const DecimalFormatSymbols &dfs) { in setTo() argument 179 fPtr.dfs = new DecimalFormatSymbols(dfs); in setTo() 196 if (other.fPtr.dfs != nullptr) { in doCopyFrom() 197 fPtr.dfs = new DecimalFormatSymbols(*other.fPtr.dfs); in doCopyFrom() 199 fPtr.dfs = nullptr; in doCopyFrom() 219 delete fPtr.dfs; in doCleanup() 237 return fPtr.dfs; in getDecimalFormatSymbols()
|
D | shareddateformatsymbols.h | 25 : dfs(loc, type, status) { } in SharedDateFormatSymbols() 27 const DateFormatSymbols &get() const { return dfs; } in get() 29 DateFormatSymbols dfs;
|