/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_localemgr.cpp | 1081 std::unique_ptr<CXML_Element> pLocale = CXML_Element::Parse(pOut, dwSize); in XFA_GetLocaleFromBuffer() local 1083 return pLocale ? pdfium::MakeUnique<CXFA_XMLLocale>(std::move(pLocale)) in XFA_GetLocaleFromBuffer() 1205 IFX_Locale* pLocale = m_LocaleArray[i].get(); in GetLocaleByName() local 1206 if (pLocale->GetName() == wsLocaleName) in GetLocaleByName() 1207 return pLocale; in GetLocaleByName() 1212 IFX_Locale* pLocale = m_XMLLocaleArray[i].get(); in GetLocaleByName() local 1213 if (pLocale->GetName() == wsLocaleName) in GetLocaleByName() 1214 return pLocale; in GetLocaleByName() 1217 std::unique_ptr<IFX_Locale> pLocale(GetLocale(XFA_GetLanguage(wsLocaleName))); in GetLocaleByName() local 1218 IFX_Locale* pRetLocale = pLocale.get(); in GetLocaleByName() [all …]
|
D | cxfa_localevalue.h | 39 IFX_Locale* pLocale, 46 IFX_Locale* pLocale, 51 IFX_Locale* pLocale, 57 IFX_Locale* pLocale); 71 IFX_Locale* pLocale, 82 IFX_Locale* pLocale);
|
D | cxfa_localevalue.cpp | 90 IFX_Locale* pLocale, in CXFA_LocaleValue() argument 94 m_bValid(ParsePatternValue(wsValue, wsFormat, pLocale)) {} in CXFA_LocaleValue() 108 IFX_Locale* pLocale, in ValidateValue() argument 112 if (pLocale) in ValidateValue() 113 m_pLocaleMgr->SetDefLocale(pLocale); in ValidateValue() 188 if (pLocale) in ValidateValue() 321 IFX_Locale* pLocale, in FormatPatterns() argument 329 if (FormatSinglePattern(wsResult, wsPatterns[i], pLocale, eValueType)) in FormatPatterns() 337 IFX_Locale* pLocale, in FormatSinglePattern() argument 340 if (pLocale) in FormatSinglePattern() [all …]
|
D | cxfa_nodelocale.cpp | 44 CXFA_NodeLocale::CXFA_NodeLocale(CXFA_Node* pLocale) : m_pLocale(pLocale) {} in CXFA_NodeLocale() argument
|
D | cxfa_localemgr.h | 29 void SetDefLocale(IFX_Locale* pLocale);
|
D | cxfa_nodelocale.h | 21 explicit CXFA_NodeLocale(CXFA_Node* pLocale);
|
D | cxfa_node.cpp | 656 IFX_Locale* pLocale = GetDocument()->GetLocalMgr()->GetDefLocale(); in GetLocaleName() local 657 if (!pLocale) in GetLocaleName() 660 return {pLocale->GetName()}; in GetLocaleName() 1781 IFX_Locale* pLocale = GetLocale(); in ProcessFormatTestValidate() local 1782 if (!pLocale) in ProcessFormatTestValidate() 1786 if (!lcValue.ValidateValue(lcValue.GetValue(), wsPicture, pLocale, in ProcessFormatTestValidate()
|
/external/pdfium/xfa/fgas/crt/ |
D | cfgas_formatstring.cpp | 226 IFX_Locale* pLocale, in ParseLocaleDate() argument 277 WideString wsMonthName = pLocale->GetMonthName(i, symbol == L"MMM"); in ParseLocaleDate() 288 WideString wsDayName = pLocale->GetDayName(i, symbol == L"EEE"); in ParseLocaleDate() 324 IFX_Locale* pLocale, in ResolveZone() argument 328 FX_TIMEZONE tzLocale = pLocale->GetTimeZone(); in ResolveZone() 344 IFX_Locale* pLocale, in ParseLocaleTime() argument 419 WideString wsAM = pLocale->GetMeridiemName(true); in ParseLocaleTime() 420 WideString wsPM = pLocale->GetMeridiemName(false); in ParseLocaleTime() 447 ResolveZone(tzDiff, pLocale, &hour, &minute); in ParseLocaleTime() 464 ResolveZone(tzDiff, pLocale, &hour, &minute); in ParseLocaleTime() [all …]
|
D | cfgas_formatstring.h | 18 IFX_Locale* pLocale); 66 IFX_Locale** pLocale,
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_widgetacc.cpp | 2371 IFX_Locale* pLocale = GetLocale(); in SetValue() local 2374 widgetValue.ValidateValue(wsValue, wsPicture, pLocale, &wsPicture); in SetValue() 2377 wsPicture, pLocale, pLocalMgr); in SetValue() 2418 IFX_Locale* pLocale = GetLocale(); in GetPictureContent() local 2419 if (!pLocale) in GetPictureContent() 2425 return pLocale->GetDatePattern(FX_LOCALEDATETIMESUBCATEGORY_Medium); in GetPictureContent() 2427 return pLocale->GetTimePattern(FX_LOCALEDATETIMESUBCATEGORY_Medium); in GetPictureContent() 2429 return pLocale->GetDatePattern(FX_LOCALEDATETIMESUBCATEGORY_Medium) + in GetPictureContent() 2431 pLocale->GetTimePattern(FX_LOCALEDATETIMESUBCATEGORY_Medium); in GetPictureContent() 2450 IFX_Locale* pLocale = GetLocale(); in GetPictureContent() local [all …]
|
D | cxfa_widgetacc.h | 218 WideString FormatNumStr(const WideString& wsValue, IFX_Locale* pLocale);
|
/external/pdfium/fxjs/ |
D | cfxjse_formcalc_context.cpp | 484 WideString FormatFromString(IFX_Locale* pLocale, in FormatFromString() argument 489 return pLocale->GetDatePattern(FX_LOCALEDATETIMESUBCATEGORY_Default); in FormatFromString() 1641 IFX_Locale* pLocale = nullptr; in Time2Num() local 1645 pLocale = pThisNode->GetLocale(); in Time2Num() 1647 pLocale = in Time2Num() 1653 wsFormat = pLocale->GetTimePattern(FX_LOCALEDATETIMESUBCATEGORY_Default); in Time2Num() 1660 wsFormat, pLocale, pMgr); in Time2Num() 2001 IFX_Locale* pLocale = LocaleFromString(pDoc, pMgr, szLocale); in Local2IsoDate() local 2002 if (!pLocale) in Local2IsoDate() 2005 WideString wsFormat = FormatFromString(pLocale, szFormat); in Local2IsoDate() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | tmutfmt.cpp | 608 CharString pLocale(localeName, -1, err); in searchInLocaleChain() local 611 pLocale.append('_', err); in searchInLocaleChain() 612 searchInLocaleChain(style, gUnitsTag, pLocale.data(), srcTimeUnitField, srcPluralCount, in searchInLocaleChain()
|
D | dtptngen.cpp | 363 pLocale = other.pLocale; in operator =() 399 if ((pLocale==other.pLocale) && (patternMap->equals(*other.patternMap)) && in operator ==()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | dtptngen.h | 510 Locale pLocale; // pattern locale variable
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_mdls.c | 426 …LT Parse_insh (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 pos, EAS_U32 *pRgnCount, EAS_U32 *pLocale); 1538 …ULT Parse_insh (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 pos, EAS_U32 *pRgnCount, EAS_U32 *pLocale) in Parse_insh() argument 1569 *pLocale = (bank << 8) | program; in Parse_insh()
|