/external/icu/icu4c/source/i18n/ |
D | dcfmtsym.cpp | 158 fSymbols[(ENumberFormatSymbol)i].fastCopyFrom(rhs.fSymbols[(ENumberFormatSymbol)i]); in operator =() 188 if(fSymbols[(ENumberFormatSymbol)i] != that.fSymbols[(ENumberFormatSymbol)i]) { in operator ==() 262 void resolveMissingMonetarySeparators(const UnicodeString* fSymbols) { in resolveMissingMonetarySeparators() 266 fSymbols[DecimalFormatSymbols::kDecimalSeparatorSymbol]); in resolveMissingMonetarySeparators() 271 fSymbols[DecimalFormatSymbols::kGroupingSeparatorSymbol]); in resolveMissingMonetarySeparators() 365 fSymbols[kZeroDigitSymbol].setTo(digit); in initialize() 369 fSymbols[i].setTo(digit); in initialize() 428 sink.resolveMissingMonetarySeparators(fSymbols); in initialize() 440 fSymbols[kIntlCurrencySymbol].setTo(curriso, -1); in initialize() 441 fSymbols[kCurrencySymbol] = tempStr; in initialize() [all …]
|
D | smpdtfmt.cpp | 367 delete fSymbols; in ~SimpleDateFormat() 384 fSymbols(NULL), in SimpleDateFormat() 400 fSymbols(NULL), in SimpleDateFormat() 409 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat() 421 fSymbols(NULL), in SimpleDateFormat() 430 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat() 455 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat() 478 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat() 493 fSymbols(symbolsToAdopt), in SimpleDateFormat() 515 fSymbols(new DateFormatSymbols(symbols)), in SimpleDateFormat() [all …]
|
D | decimfmtimpl.cpp | 55 fSymbols(NULL), in DecimalFormatImpl() 62 fSymbols = new DecimalFormatSymbols( in DecimalFormatImpl() 64 if (fSymbols == NULL) { in DecimalFormatImpl() 82 fSymbols(symbolsToAdopt), in DecimalFormatImpl() 105 fSymbols(other.fSymbols), in DecimalFormatImpl() 116 fSymbols = new DecimalFormatSymbols(*fSymbols); in DecimalFormatImpl() 117 if (fSymbols == NULL && U_SUCCESS(status)) { in DecimalFormatImpl() 156 *fSymbols = *other.fSymbols; in assign() 198 && (*fSymbols == *other.fSymbols) in operator ==() 206 delete fSymbols; in ~DecimalFormatImpl() [all …]
|
D | decimfmtimpl.h | 179 return *fSymbols; in getDecimalFormatSymbols() 395 DecimalFormatSymbols *fSymbols; variable
|
D | decimfmt.cpp | 425 fCurrencyPluralInfo = new CurrencyPluralInfo(fImpl->fSymbols->getLocale(), status); in construct() 462 fCurrencyPluralInfo = new CurrencyPluralInfo(fImpl->fSymbols->getLocale(), status); in handleCurrencySignInPattern() 513 NumberingSystem *ns = NumberingSystem::createInstance(fImpl->fSymbols->getLocale(),status); in setupCurrencyAffixPatterns() 524 UResourceBundle *resource = ures_open(NULL, fImpl->fSymbols->getLocale().getName(), &error); in setupCurrencyAffixPatterns() 2976 if (fImpl->fSymbols == NULL) { in getEffectiveCurrency()
|
/external/skia/src/sksl/ir/ |
D | SkSLSymbolTable.cpp | 25 const auto& entry = fSymbols.find(name); in operator []() 26 if (entry == fSymbols.end()) { in operator []() 73 const auto& existing = fSymbols.find(name); in addWithoutOwnership() 74 if (existing == fSymbols.end()) { in addWithoutOwnership() 75 fSymbols[name] = symbol; in addWithoutOwnership() 83 fSymbols[name] = u; in addWithoutOwnership() 92 fSymbols[name] = u; in addWithoutOwnership() 102 for (const auto& pair : fSymbols) { in markAllFunctionsBuiltin()
|
D | SkSLBlock.h | 23 , fSymbols(std::move(symbols)) in Block() 38 const std::shared_ptr<SymbolTable> fSymbols; member
|
D | SkSLProgram.h | 70 , fSymbols(symbols) in Program() 81 std::shared_ptr<SymbolTable> fSymbols; member
|
D | SkSLForStatement.h | 25 , fSymbols(symbols) in ForStatement() 50 const std::shared_ptr<SymbolTable> fSymbols; member
|
D | SkSLSymbolTable.h | 51 std::unordered_map<SkString, const Symbol*> fSymbols; variable
|
/external/icu/icu4c/source/i18n/unicode/ |
D | dcfmtsym.h | 414 UnicodeString fSymbols[kFormatSymbolCount]; 440 strPtr = &fSymbols[symbol]; in getSymbol() 452 strPtr = &fSymbols[symbol]; in getConstSymbol() 470 fSymbols[symbol]=value; 480 fSymbols[(int)kOneDigitSymbol+i-1] = UnicodeString(sym);
|
D | smpdtfmt.h | 1558 DateFormatSymbols* fSymbols; // Owned variable
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/ |
D | CalendarPanel.java | 44 fSymbols[i] = new DateFormatSymbols(fCalendar[i], in setLocale() 84 fSymbols[index] = new DateFormatSymbols(c, fDisplayLocale); in setCalendar() 215 String dayName = fSymbols[0].getWeekdays()[dayNum]; in paint() 331 String month = fSymbols[i].getMonths()[ in paint() 353 private DateFormatSymbols[] fSymbols = new DateFormatSymbols[4]; field in CalendarPanel
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/ |
D | HolidayCalendarDemo.java | 450 fSymbols = new DateFormatSymbols(fDisplayLocale); in set() 609 String dayName = fSymbols.getWeekdays()[dayNum]; in paint() 710 private DateFormatSymbols fSymbols; // Symbols for drawing field in HolidayCalendarDemo.CalendarPanel
|