Lines Matching defs:length

211      * setValue() if the length of value does not match the component count.
232 * <li>The value.length does NOT match the component count in the definition
237 if (checkBadComponentCount(value.length)) {
250 long[] data = new long[value.length];
251 for (int i = 0; i < value.length; i++) {
255 mComponentCountActual = value.length;
282 * <li>The value.length does NOT match the component count in the definition
287 if (checkBadComponentCount(value.length) || mDataType != TYPE_UNSIGNED_LONG) {
294 mComponentCountActual = value.length;
316 * Characters that cannot be converted are replaced with '?'. The length of
319 * overwriting the last character in the string if the value.length is equal
323 * <li>The length of the string is not equal to (component count -1) or
334 if (buf.length > 0) {
335 finalBuf = (buf[buf.length - 1] == 0 || mDataType == TYPE_UNDEFINED) ? buf : Arrays
336 .copyOf(buf, buf.length + 1);
340 int count = finalBuf.length;
357 * <li>The value.length does NOT match the component count in the definition
364 if (checkBadComponentCount(value.length)) {
377 mComponentCountActual = value.length;
407 * <li>The length does NOT match the component count in the definition for
411 public boolean setValue(byte[] value, int offset, int length) {
412 if (checkBadComponentCount(length)) {
418 mValue = new byte[length];
419 System.arraycopy(value, offset, mValue, 0, length);
420 mComponentCountActual = length;
425 * Equivalent to setValue(value, 0, value.length).
428 return setValue(value, 0, value.length);
483 int[] fin = new int[arr.length];
484 for (int i = 0; i < arr.length; i++) {
491 int[] fin = new int[arr.length];
492 for (int i = 0; i < arr.length; i++) {
499 long[] fin = new long[arr.length];
500 for (int i = 0; i < arr.length; i++) {
507 byte[] fin = new byte[arr.length];
508 for (int i = 0; i < arr.length; i++) {
592 if (b == null || b.length < 1) {
623 if (r == null || r.length < 1) {
656 int[] arr = new int[val.length];
657 for (int i = 0; i < val.length; i++) {
676 if (i == null || i.length < 1) {
707 if (l == null || l.length < 1) {
730 if (l != null && l.length >= 1) {
734 if (b != null && b.length >= 1) {
738 if (r != null && r.length >= 1 && r[0].getDenominator() != 0) {
757 if (((long[]) mValue).length == 1) {
763 if (((Object[]) mValue).length == 1) {
834 * Equivalent to getBytes(buffer, 0, buffer.length).
837 getBytes(buf, 0, buf.length);
845 * @param length the maximum number of bytes to store in buffer. If length >
850 protected void getBytes(byte[] buf, int offset, int length) {
856 (length > mComponentCountActual) ? mComponentCountActual : length);