/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_fs.c | 45 struct draw_fragment_shader *dfs; local 47 dfs = CALLOC_STRUCT(draw_fragment_shader); 48 if (dfs) { 49 dfs->base = *shader; 50 tgsi_scan_shader(shader->tokens, &dfs->info); 53 return dfs; 59 struct draw_fragment_shader *dfs) 63 draw->fs.fragment_shader = dfs; 69 struct draw_fragment_shader *dfs) 71 FREE(dfs); [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
DecimalFormatSymbolsTest.java | 39 DecimalFormatSymbols dfs; field in class:DecimalFormatSymbolsTest 55 DecimalFormatSymbols dfs = new DecimalFormatSymbols(new Locale("en", local 57 assertEquals("Returned incorrect symbols", '%', dfs.getPercent()); 107 assertTrue("Equal objects returned false", dfs.equals(dfs.clone())); 108 dfs.setDigit('B'); 109 assertTrue("Un-Equal objects returned true", !dfs 182 dfs.setDecimalSeparator('*'); 183 assertEquals("Returned incorrect DecimalSeparator symbol", '*', dfs 191 dfs.setDigit('*') 286 DecimalFormatSymbols dfs = ((DecimalFormat) NumberFormat local 369 DecimalFormatSymbols dfs = ((DecimalFormat) NumberFormat local 483 DecimalFormatSymbols dfs; local [all...] |
DateFormatSymbolsTest.java | 29 private DateFormatSymbols dfs; field in class:DateFormatSymbolsTest 107 assertTrue("Equal object returned true", dfs.equals(dfs.clone())); 108 dfs.setLocalPatternChars("KKKKKKKKK"); 109 assertTrue("Un-Equal objects returned false", !dfs 119 String[] retVal = dfs.getAmPmStrings(); 133 String[] retVal = dfs.getEras(); 147 String[] retVal = dfs.getMonths(); 162 String[] retVal = dfs.getShortMonths(); 176 String[] retVal = dfs.getShortWeekdays() [all...] |
DecimalFormatTest.java | 46 DecimalFormatSymbols dfs = new DecimalFormatSymbols(); local 47 dfs.setNaN(""); 49 df.setDecimalFormatSymbols(dfs); 834 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.CANADA); local 1057 final DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 1282 final DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 1360 final DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 1471 final DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 1516 final DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 1633 final DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 1678 final DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 1707 DecimalFormatSymbols dfs = df.getDecimalFormatSymbols(); local 1857 DecimalFormatSymbols dfs = new DecimalFormatSymbols(); local 2140 final DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
DecimalFormatSymbolsTest.java | 40 DecimalFormatSymbols dfs = DecimalFormatSymbols.getInstance(locale); local 41 assertEquals(DecimalFormatSymbols.getInstance(Locale.ROOT), dfs); local 64 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 65 dfs.setCurrency(Currency.getInstance("USD")); 66 assertEquals("$", dfs.getCurrencySymbol()); 67 dfs.setCurrencySymbol("poop"); 68 assertEquals("poop", dfs.getCurrencySymbol()); 69 dfs.setCurrency(Currency.getInstance("USD")); 70 assertEquals("$", dfs.getCurrencySymbol()); 76 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US) local 92 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.forLanguageTag("ar-AR")); local 112 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.forLanguageTag("ar-AR")); local [all...] |
OldDecimalFormatSymbolsTest.java | 27 DecimalFormatSymbols dfs; field in class:OldDecimalFormatSymbolsTest 30 dfs = new DecimalFormatSymbols(); 79 dfs.setMonetaryDecimalSeparator(','); 81 ',', dfs.getMonetaryDecimalSeparator()); 115 dfs.setCurrencySymbol("$"); 116 assertEquals("Returned incorrect CurrencySymbol symbol", "$", dfs.getCurrencySymbol()); 120 dfs.setMonetaryDecimalSeparator('#'); 122 '#', dfs.getMonetaryDecimalSeparator()); 142 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.FRANCE); local 143 assertEquals("EUR", dfs.getCurrency().getCurrencyCode()) [all...] |
DateFormatSymbolsTest.java | 33 DateFormatSymbols dfs = DateFormatSymbols.getInstance(locale); local 34 assertEquals(DateFormatSymbols.getInstance(Locale.ROOT), dfs); local 79 private String formatDate(Locale l, String fmt, DateFormatSymbols dfs) { 81 sdf.setDateFormatSymbols(dfs);
|
/external/icu/icu4c/source/i18n/ |
shareddateformatsymbols.h | 23 : dfs(loc, type, status) { } 25 const DateFormatSymbols &get() const { return dfs; } 27 DateFormatSymbols dfs; member in class:SharedDateFormatSymbols
|
scientificnumberformatter.cpp | 299 const DecimalFormatSymbols &dfs, UnicodeString &preExponent) { 300 preExponent.append(dfs.getConstSymbol( 302 preExponent.append(dfs.getConstSymbol(DecimalFormatSymbols::kOneDigitSymbol)); 303 preExponent.append(dfs.getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol));
|
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
DateFormatSymbolsTest.java | 30 DateFormatSymbols dfs = DateFormatSymbols.getInstance(loc); local 32 boolean isIcuImpl = (dfs instanceof com.ibm.icu.impl.jdkadapter.DateFormatSymbolsICU); 45 if (!dfs.equals(dfsIcu)) { 90 DateFormatSymbols dfs = DateFormatSymbols.getInstance(new Locale("ja", "JP", "ICU")); local 97 dfs.setAmPmStrings(dfsEnUS.getAmPmStrings()); 98 dfs.setEras(dfsEnUS.getEras()); 99 dfs.setMonths(dfsEnUS.getMonths()); 100 dfs.setShortMonths(dfsEnUS.getShortMonths()); 101 dfs.setShortWeekdays(dfsEnUS.getShortWeekdays()); 102 dfs.setWeekdays(dfsEnUS.getWeekdays()) [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
FuncFormatNumb.java | 61 java.text.DecimalFormatSymbols dfs = null; local 80 dfs = ss.getDecimalFormatComposed(qname); 82 if (null == dfs) 92 //formatter = new java.text.DecimalFormat(patternStr, dfs); 95 formatter.setDecimalFormatSymbols(dfs); 105 dfs = ss.getDecimalFormatComposed(new QName("")); 107 if (dfs != null) 111 formatter.setDecimalFormatSymbols(dfs); 116 dfs = new java.text.DecimalFormatSymbols(java.util.Locale.US); 118 dfs.setInfinity(Constants.ATTRVAL_INFINITY) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
ChineseDateFormatSymbols.java | 111 void initializeData(DateFormatSymbols dfs) { 112 super.initializeData(dfs); 113 if (dfs instanceof ChineseDateFormatSymbols) { 115 this.isLeapMonth = ((ChineseDateFormatSymbols)dfs).isLeapMonth;
|
DateFormatSymbols.java | 1463 DateFormatSymbols dfs = DFSCACHE.get(key); local [all...] |
ScientificNumberFormatter.java | 304 private static String getPreExponent(DecimalFormatSymbols dfs) { 306 preExponent.append(dfs.getExponentMultiplicationSign()); 307 char[] digits = dfs.getDigits(); 314 DecimalFormatSymbols dfs = decimalFormat.getDecimalFormatSymbols(); local 316 (DecimalFormat) decimalFormat.clone(), getPreExponent(dfs), style);
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
CalendarICU.java | 121 DateFormatSymbols dfs = DateFormatSymbols.getInstance(locale); local 122 String[] array = getFieldStrings(field, style, dfs); 137 DateFormatSymbols dfs = DateFormatSymbols.getInstance(locale); local 139 return getFieldStringsMap(field, style, dfs); 142 Map<String,Integer> result = getFieldStringsMap(field, SHORT, dfs); 147 Map<String,Integer> longMap = getFieldStringsMap(field, LONG, dfs); 296 private static String[] getFieldStrings(int field, int style, DateFormatSymbols dfs) { 300 result = dfs.getAmPmStrings(); 303 result = (style == LONG) ? dfs.getWeekdays() : dfs.getShortWeekdays() [all...] |
/external/openfst/src/include/fst/ |
dfs-visit.h | 0 // dfs-visit.h 35 // Visitor Interface - class determines actions taken during a Dfs. 36 // If any of the boolean member functions return false, the DFS is 42 // a DFS and some methods names here are better suited to a DFS. 50 // // Invoked before DFS visit 52 // // Invoked when state discovered (2nd arg is DFS tree root) 63 // // Invoked after DFS visit 67 // An Fst state's DFS status 72 // An Fst state's DFS stack stat 117 bool dfs = true; local [all...] |
topsort.h | 29 #include <fst/dfs-visit.h> 36 // DFS visitor class to return topological ordering.
|
/external/openfst/src/include/fst/script/ |
connect.h | 22 #include <fst/dfs-visit.h>
|
/libcore/luni/src/main/java/libcore/icu/ |
NativeDecimalFormat.java | 154 public NativeDecimalFormat(String pattern, DecimalFormatSymbols dfs) { 156 this.address = open(pattern, dfs.getCurrencySymbol(), 157 dfs.getDecimalSeparator(), dfs.getDigit(), dfs.getExponentSeparator(), 158 dfs.getGroupingSeparator(), dfs.getInfinity(), 159 dfs.getInternationalCurrencySymbol(), dfs.getMinusSignString(), 160 dfs.getMonetaryDecimalSeparator(), dfs.getNaN(), dfs.getPatternSeparator() [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
FormatTests.java | 714 DateFormatSymbols dfs =new DateFormatSymbols(GregorianCalendar.class, uloc); local 717 dfs.setMonths((String[]) cannedMonthNames.get(key)); 718 dfs.setShortMonths((String[]) cannedShortMonthNames.get(key)); 720 return dfs; 725 DateFormatSymbols dfs = getCannedDateFormatSymbols(uloc); local 727 return new SimpleDateFormat(pattern, dfs, uloc); 941 private static char[] getCharSymbols(DecimalFormatSymbols dfs) 944 dfs.getDecimalSeparator(), 945 dfs.getDigit(), 946 dfs.getGroupingSeparator() 992 DecimalFormatSymbols dfs = new DecimalFormatSymbols(uloc); local 1674 DecimalFormatSymbols dfs[] = new DecimalFormatSymbols[locales.length]; local 1890 DateFormatSymbols dfs[] = new DateFormatSymbols[locales.length]; local [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/provider/ |
DaysOfWeek.java | 101 DateFormatSymbols dfs = new DateFormatSymbols(); local 103 dfs.getWeekdays() : 104 dfs.getShortWeekdays();
|
/libcore/benchmarks/src/benchmarks/regression/ |
ExpensiveObjectsBenchmark.java | 73 DateFormatSymbols dfs = new DateFormatSymbols(Locale.US); local 75 dfs.clone(); 86 DecimalFormatSymbols dfs = new DecimalFormatSymbols(Locale.US); local 88 dfs.clone();
|
/external/v8/test/intl/date-format/ |
timezone-name.js | 44 var dfs = new Intl.DateTimeFormat('en-US', flags); 46 assertTrue(dfs.format(winter).indexOf('PST') !== -1); 47 assertTrue(dfs.format(summer).indexOf('PDT') !== -1);
|
/libcore/luni/src/main/java/java/util/ |
Calendar.java | 1306 DateFormatSymbols dfs = DateFormatSymbols.getInstance(locale); local [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
scientificnumberformatter.h | 203 const DecimalFormatSymbols &dfs, UnicodeString &preExponent);
|