Home | History | Annotate | Download | only in common

Lines Matching refs:myContext

2045     UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context);
2046 uint32_t currType = myContext->currType;
2063 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context);
2066 while (myContext->listIdx < UPRV_LENGTHOF(gCurrencyList)-1) {
2067 const struct CurrencyList *currItem = &gCurrencyList[myContext->listIdx++];
2068 if (UCURR_MATCHES_BITMASK(currItem->currType, myContext->currType))
2273 UCurrencyContext *myContext;
2281 myContext = (UCurrencyContext*)uprv_malloc(sizeof(UCurrencyContext));
2282 if (myContext == NULL) {
2287 myContext->currType = currType;
2288 myContext->listIdx = 0;
2289 myEnum->context = myContext;