Searched defs:lc (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DServiceLoader.java252 private int parseLine(Class<?> service, URL u, BufferedReader r, int lc, argument
266 fail(service, u, lc, "Illegal configuration-file syntax");
269 fail(service, u, lc, "Illegal provider-class name: " + ln);
273 fail(service, u, lc, "Illegal provider-class name: " + ln);
278 return lc + 1;
307 int lc = 1;
308 while ((lc = parseLine(service, u, r, lc, names)) >= 0);
/libcore/ojluni/src/main/native/
H A Djava_props_md.c142 char *lc; local
147 lc = setupMacOSXLocale(cat); // malloc'd memory, need to free
149 lc = setlocale(cat, NULL);
153 if (lc == NULL) {
167 lc = strdup(lc); /* keep a copy, setlocale trashes original. */
168 strcpy(temp, lc);
176 if (lc == NULL || !strcmp(lc, "C") || !strcmp(lc, "POSI
[all...]

Completed in 52 milliseconds