Lines Matching refs:mValue

101     private Object mValue;
134 mValue = null;
222 return mValue != null;
254 mValue = data;
293 mValue = value;
345 mValue = finalBuf;
376 mValue = value;
418 mValue = new byte[length];
419 System.arraycopy(value, offset, mValue, 0, length);
541 if (mValue == null) {
543 } else if (mValue instanceof String) {
544 return (String) mValue;
545 } else if (mValue instanceof byte[]) {
546 return new String((byte[]) mValue, US_ASCII);
575 if (mValue instanceof byte[]) {
576 return (byte[]) mValue;
606 if (mValue instanceof Rational[]) {
607 return (Rational[]) mValue;
652 if (mValue == null) {
654 } else if (mValue instanceof long[]) {
655 long[] val = (long[]) mValue;
690 if (mValue instanceof long[]) {
691 return (long[]) mValue;
717 return mValue;
748 if (mValue == null) {
750 } else if (mValue instanceof byte[]) {
752 return new String((byte[]) mValue, US_ASCII);
754 return Arrays.toString((byte[]) mValue);
756 } else if (mValue instanceof long[]) {
757 if (((long[]) mValue).length == 1) {
758 return String.valueOf(((long[]) mValue)[0]);
760 return Arrays.toString((long[]) mValue);
762 } else if (mValue instanceof Object[]) {
763 if (((Object[]) mValue).length == 1) {
764 Object val = ((Object[]) mValue)[0];
771 return Arrays.toString((Object[]) mValue);
774 return mValue.toString();
789 if (mValue instanceof long[]) {
790 return ((long[]) mValue)[index];
791 } else if (mValue instanceof byte[]) {
792 return ((byte[]) mValue)[index];
809 return new String((byte[]) mValue, US_ASCII);
816 return (byte[]) mValue;
830 return ((Rational[]) mValue)[index];
855 System.arraycopy(mValue, 0, buf, offset,
973 if (mValue != null) {
974 if (tag.mValue == null) {
976 } else if (mValue instanceof long[]) {
977 if (!(tag.mValue instanceof long[])) {
980 return Arrays.equals((long[]) mValue, (long[]) tag.mValue);
981 } else if (mValue instanceof Rational[]) {
982 if (!(tag.mValue instanceof Rational[])) {
985 return Arrays.equals((Rational[]) mValue, (Rational[]) tag.mValue);
986 } else if (mValue instanceof byte[]) {
987 if (!(tag.mValue instanceof byte[])) {
990 return Arrays.equals((byte[]) mValue, (byte[]) tag.mValue);
992 return mValue.equals(tag.mValue);
995 return tag.mValue == null;