684685686687688689690691692693694
private void printShort(PrintStream ps, TaggedValuePointable tvp) { ShortPointable sp = pp.takeOne(ShortPointable.class); try { tvp.getValue(sp); ps.print(sp.shortValue()); } finally { pp.giveBack(sp); } }
692693694695696697698699700701702
117118119120121122123124125126127
} case ValueTag.XS_SHORT_TAG: case ValueTag.XS_UNSIGNED_BYTE_TAG: { tvp.getValue(sp); if (sp.shortValue() == 0) { XDMConstants.setFalse(result); return; } XDMConstants.setTrue(result); return;