The EXSLT function set:distinct
operates on node sets. The strings you're passing to it are not node sets, and so this function isn't working. Or rather, it's working perfectly but you're expecting the unreasonable from it.
First of all, you should not be storing comma-separated lists in XML if you can help it. XML is already a delimited format so you should have absolutely no reason to store a delimited format inside of it.
If you have control over the format, you should be using something like this instead:
<categories>
<category>
<LOC>USA</LOC>
<LOC>UK</LOC>
<LOC>Spain</LOC>
</category>
<category>
<LOC>India</LOC>
<LOC>USA</LOC>
<LOC>China</LOC>
</category>
</categories>
If this were you input format, set:distinct
would work just fine the way you're trying to use it.
If you don't have this control over the input format, you're going to find that XSLT really sucks at string manipulation and tokenization (XSLT 2 is more helpful if you have access to it, as Jim Garrison mentioned in a comment). Your best bet is to read the XML into some other structure and tokenize the LOC
element's contents and work with the results directly than trying to do it in XSLT.