Home | History | Annotate | Download | only in i18n

Lines Matching full:mycontext

2026     UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context);
2027 uint32_t currType = myContext->currType;
2044 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context);
2047 while (myContext->listIdx < (sizeof(gCurrencyList)/sizeof(gCurrencyList[0]))-1) {
2048 const struct CurrencyList *currItem = &gCurrencyList[myContext->listIdx++];
2049 if (UCURR_MATCHES_BITMASK(currItem->currType, myContext->currType))
2250 UCurrencyContext *myContext;
2258 myContext = (UCurrencyContext*)uprv_malloc(sizeof(UCurrencyContext));
2259 if (myContext == NULL) {
2264 myContext->currType = currType;
2265 myContext->listIdx = 0;
2266 myEnum->context = myContext;