com.sun.org.apache.xerces.internal.impl.xs.util.ShortListImpl Java Examples

The following examples show how to use com.sun.org.apache.xerces.internal.impl.xs.util.ShortListImpl. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Field.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #2
Source File: Field.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #3
Source File: Field.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #4
Source File: Field.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #5
Source File: Field.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #6
Source File: Field.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #7
Source File: Field.java    From Bytecoder with Apache License 2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #8
Source File: Field.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #9
Source File: Field.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #10
Source File: Field.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #11
Source File: Field.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
private ShortList convertToPrimitiveKind(ShortList itemValueType) {
    if (itemValueType != null) {
        int i;
        final int length = itemValueType.getLength();
        for (i = 0; i < length; ++i) {
            short type = itemValueType.item(i);
            if (type != convertToPrimitiveKind(type)) {
                break;
            }
        }
        if (i != length) {
            final short [] arr = new short[length];
            for (int j = 0; j < i; ++j) {
                arr[j] = itemValueType.item(j);
            }
            for(; i < length; ++i) {
                arr[i] = convertToPrimitiveKind(itemValueType.item(i));
            }
            return new ShortListImpl(arr, arr.length);
        }
    }
    return itemValueType;
}
 
Example #12
Source File: ValidatedInfo.java    From Bytecoder with Apache License 2.0 4 votes vote down vote up
public ShortList getListValueTypes() {
    return itemValueTypes == null ? ShortListImpl.EMPTY_LIST : itemValueTypes;
}
 
Example #13
Source File: ValidatedInfo.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public ShortList getListValueTypes() {
    return itemValueTypes == null ? ShortListImpl.EMPTY_LIST : itemValueTypes;
}