Home | History | Annotate | Download | only in i18n

Lines Matching refs:myContext

1795     UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context);
1796 uint32_t currType = myContext->currType;
1813 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context);
1816 while (myContext->listIdx < (sizeof(gCurrencyList)/sizeof(gCurrencyList[0]))-1) {
1817 const struct CurrencyList *currItem = &gCurrencyList[myContext->listIdx++];
1818 if (UCURR_MATCHES_BITMASK(currItem->currType, myContext->currType))
1981 UCurrencyContext *myContext;
1989 myContext = (UCurrencyContext*)uprv_malloc(sizeof(UCurrencyContext));
1990 if (myContext == NULL) {
1995 myContext->currType = currType;
1996 myContext->listIdx = 0;
1997 myEnum->context = myContext;