Lines Matching refs:s1
82 comp_string(const char *s1, const char *s2)
85 if (isjavaint(s1, &v1) && isjavaint(s2, &v2))
88 return (JLI_StrCmp(s1, s2));
98 char *s1 = JLI_StringDup(id1);
100 char *m1 = s1;
108 if ((s1 != NULL) && ((end1 = JLI_StrPBrk(s1, ".-_")) != NULL))
113 res = comp_string(s1, s2);
116 s1 = end1 + 1;
118 s1 = NULL;
124 } while (res == 0 && ((s1 != NULL) && (s2 != NULL)));
138 char *s1 = JLI_StringDup(id1);
140 char *m1 = s1;
148 if ((s1 != NULL) && ((end1 = JLI_StrPBrk(s1, separators)) != NULL))
153 if ((s1 != NULL) && (s2 == NULL))
154 res = comp_string(s1, zero_string);
155 else if ((s1 == NULL) && (s2 != NULL))
158 res = comp_string(s1, s2);
161 s1 = end1 + 1;
163 s1 = NULL;
169 } while (res == 0 && ((s1 != NULL) || (s2 != NULL)));