HomeSort by relevance Sort by last modified time
    Searched refs:Loc (Results 1 - 7 of 7) sorted by null

  /packages/apps/Settings/src/com/android/settings/
LocalePicker.java 42 Loc[] mLocales;
46 private static class Loc implements Comparable {
52 public Loc(String label, Locale locale) {
63 return sCollator.compare(this.label, ((Loc) o).label);
83 Loc[] preprocess = new Loc[origSize];
98 new Loc(toTitleCase(l.getDisplayLanguage(l)), l);
117 new Loc(toTitleCase(getDisplayName(l)), l);
128 preprocess[finalSize++] = new Loc(displayName, l);
133 mLocales = new Loc[finalSize]
177 Loc loc = mLocales[position]; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputLanguageSelection.java 38 private ArrayList<Loc> mAvailableLanguages = new ArrayList<Loc>();
43 private static class Loc implements Comparable<Object> {
49 public Loc(String label, Locale locale) {
60 return sCollator.compare(this.label, ((Loc) o).label);
149 ArrayList<Loc> getUniqueLocales() {
152 ArrayList<Loc> uniqueLocales = new ArrayList<Loc>();
155 Loc[] preprocess = new Loc[origSize]
    [all...]
  /external/bison/data/
glr.c 514 # define YY_LOCATION_PRINT(File, Loc) \
516 (Loc).first_line, (Loc).first_column, \
517 (Loc).last_line, (Loc).last_column)
526 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
    [all...]
yacc.c 623 # define YY_LOCATION_PRINT(File, Loc) \
625 (Loc).first_line, (Loc).first_column, \
626 (Loc).last_line, (Loc).last_column)
628 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
    [all...]
  /external/libpcap/
grammar.c     [all...]
  /external/bison/src/
parse-gram.c 225 #define YY_LOCATION_PRINT(File, Loc) \
226 location_print (File, Loc)
228 static void version_check (location const *loc, char const *version);
902 # define YY_LOCATION_PRINT(File, Loc) \
904 (Loc).first_line, (Loc).first_column,
2391 YYLTYPE loc; local
    [all...]
parse-gram.y 40 #define YY_LOCATION_PRINT(File, Loc) \
41 location_print (File, Loc)
43 static void version_check (location const *loc, char const *version);
497 YYLTYPE loc;
499 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
501 loc.start = rhs[n].end;
502 loc.end = rhs[n].end;
510 loc.start = rhs[i].start;
514 return loc;
    [all...]

Completed in 180 milliseconds