• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/

Lines Matching defs:sort

241             Collections.sort(nonKeyFields, new Comparator<FieldInfo>() {
266 Collections.sort(secKeyFields, cmp);
267 Collections.sort(nonKeyFields, cmp);
662 int sort = field.type.getSort();
663 if (sort == Type.OBJECT || sort == Type.ARRAY) {
670 genWritePrimitive(mv, sort);
695 Integer sort = PRIMITIVE_WRAPPERS.get(fieldClassName);
696 if (sort != null) {
697 genUnwrapPrimitive(mv, sort);
698 genWritePrimitive(mv, sort);
722 int sort = field.type.getSort();
723 if (sort == Type.OBJECT || sort == Type.ARRAY) {
730 genWritePrimitive(mv, sort);
868 Integer sort = PRIMITIVE_WRAPPERS.get(fieldClassName);
869 if (sort != null) {
872 genReadPrimitive(mv, sort);
873 genWrapPrimitive(mv, sort);
904 int sort = field.type.getSort();
905 if (sort == Type.OBJECT || sort == Type.ARRAY) {
910 genReadPrimitive(mv, sort);
1146 int sort = field.type.getSort();
1149 getPrimitiveWrapperClass(sort).replace('.', '/'));
1150 genUnwrapPrimitive(mv, sort);
1158 private void genWritePrimitive(MethodVisitor mv, int sort) {
1159 switch (sort) {
1203 throw new IllegalStateException(String.valueOf(sort));
1209 private void genReadPrimitive(MethodVisitor mv, int sort) {
1210 switch (sort) {
1252 throw new IllegalStateException(String.valueOf(sort));
1256 private void genWrapPrimitive(MethodVisitor mv, int sort) {
1257 switch (sort) {
1299 throw new IllegalStateException(String.valueOf(sort));
1303 private void genUnwrapPrimitive(MethodVisitor mv, int sort) {
1304 switch (sort) {
1338 throw new IllegalStateException(String.valueOf(sort));
1406 int sort = type.getSort();
1407 return (sort == Type.OBJECT || sort == Type.ARRAY);