Searched refs:CAT_CLASS (Results 1 – 2 of 2) sorted by relevance
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | APIInfo.java | 37 public static final int CAT = 6, CAT_CLASS = 0, CAT_FIELD = 1, CAT_CONSTRUCTOR = 2, field in APIInfo 103 public void setClass() { setType(CAT, CAT_CLASS); } in setClass() 129 public boolean isClass() { return getVal(CAT) == CAT_CLASS; } in isClass() 342 … result = (lhi.getVal(CAT) == CAT_CLASS || lhi.getVal(CAT) == CAT_ENUM ? lhi.name : lhi.cls) in defaultComparator() 343 … .compareTo(rhi.getVal(CAT) == CAT_CLASS || rhi.getVal(CAT) == CAT_ENUM ? rhi.name : rhi.cls); in defaultComparator() 374 result = (lhi.getVal(CAT) == CAT_CLASS ? lhi.name : lhi.cls) in changedComparator() 375 .compareTo(rhi.getVal(CAT) == CAT_CLASS ? rhi.name : rhi.cls); in changedComparator() 380 if (result == 0 && lhi.getVal(CAT) != CAT_CLASS) { in changedComparator() 407 boolean lcls = lhi.getVal(CAT) == CAT_CLASS; in classFirstComparator() 408 boolean rcls = rhi.getVal(CAT) == CAT_CLASS; in classFirstComparator() [all …]
|
D | CheckAPI.java | 90 …private static final int CAT = 6, CAT_CLASS = 0, CAT_FIELD = 1, CAT_CONSTRUCTOR = 2, CAT_METHOD = … field in CheckAPI 210 case CAT_CLASS: in write() 328 setType(CAT, CAT_CLASS); in read() 393 result = (lhi.getVal(CAT) == CAT_CLASS ? lhi.name : lhi.cls) in defaultComparator() 394 .compareTo(rhi.getVal(CAT) == CAT_CLASS ? rhi.name : rhi.cls); in defaultComparator() 418 result = (lhi.getVal(CAT) == CAT_CLASS ? lhi.name : lhi.cls) in changedComparator() 419 .compareTo(rhi.getVal(CAT) == CAT_CLASS ? rhi.name : rhi.cls); in changedComparator() 424 if (result == 0 && lhi.getVal(CAT) != CAT_CLASS) { in changedComparator() 443 boolean lcls = lhi.getVal(CAT) == CAT_CLASS; in classFirstComparator() 444 boolean rcls = rhi.getVal(CAT) == CAT_CLASS; in classFirstComparator() [all …]
|