Home | History | Annotate | Download | only in common

Lines Matching refs:myContext

1590     UKeywordsContext *myContext = NULL;
1603 myContext = static_cast<UKeywordsContext *>(uprv_malloc(sizeof(UKeywordsContext)));
1604 if (myContext == NULL) {
1609 myContext->keywords = (char *)uprv_malloc(keywordListSize+1);
1610 uprv_memcpy(myContext->keywords, keywordList, keywordListSize);
1611 myContext->keywords[keywordListSize] = 0;
1612 myContext->current = myContext->keywords;
1613 result->context = myContext;