Searched refs:fLength (Results 1 - 16 of 16) sorted by relevance

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DLSInputListImpl.java48 private final int fLength; field in class:LSInputListImpl
58 fLength = length;
66 return fLength;
79 if (index < 0 || index >= fLength) {
90 if (index >= 0 && index < fLength) {
101 Object[] a = new Object[fLength];
107 if (a.length < fLength) {
110 a = (Object[]) Array.newInstance(componentType, fLength);
113 if (a.length > fLength) {
114 a[fLength]
[all...]
H A DObjectListImpl.java46 private final int fLength; field in class:ObjectListImpl
50 fLength = length;
54 return fLength;
59 for (int i = 0; i < fLength; i++) {
65 for (int i = 0; i < fLength; i++) {
74 if (index < 0 || index >= fLength) {
84 if (index >= 0 && index < fLength) {
95 Object[] a = new Object[fLength];
101 if (a.length < fLength) {
104 a = (Object[]) Array.newInstance(componentType, fLength);
[all...]
H A DXSObjectListImpl.java82 private int fLength = 0; field in class:XSObjectListImpl
86 fLength = 0;
97 fLength = length;
105 return fLength;
118 if (index < 0 || index >= fLength) {
126 for (int i=0; i<fLength; i++) {
130 fLength = 0;
134 if (fLength == fArray.length) {
135 XSObject[] temp = new XSObject[fLength + 4];
136 System.arraycopy(fArray, 0, temp, 0, fLength);
[all...]
H A DStringListImpl.java48 private final int fLength; field in class:StringListImpl
56 fLength = (v == null) ? 0 : v.size();
68 fLength = length;
77 return fLength;
93 for (int i = 0; i < fLength; i++) {
99 for (int i = 0; i < fLength; i++) {
108 if (index < 0 || index >= fLength) {
122 if (index >= 0 && index < fLength) {
139 Object[] a = new Object[fLength];
148 if (a.length < fLength) {
[all...]
H A DShortListImpl.java47 private final int fLength; field in class:ShortListImpl
57 fLength = length;
65 return fLength;
77 for (int i = 0; i < fLength; i++) {
86 if (index < 0 || index >= fLength) {
98 if (fLength != rhs.getLength()) {
101 for (int i = 0;i < fLength; ++i) {
114 if (index >= 0 && index < fLength) {
H A DXSNamedMap4Types.java73 if (fLength == -1) {
87 fLength = 0;
93 fArray[fLength++] = type;
97 return fLength;
138 if (index < 0 || index >= fLength) {
H A DXSNamedMapImpl.java64 int fLength = -1; field in class:XSNamedMapImpl
105 fLength = 0;
115 fLength = length;
124 if (fLength == -1) {
125 fLength = 0;
127 fLength += fMaps[i].getLength();
130 return fLength;
159 for (int j = 0; j < fLength; j++) {
184 fArray = new XSObject[fLength];
191 if (index < 0 || index >= fLength) {
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DPSVIErrorList.java39 private final int fLength; field in class:PSVIErrorList
44 fLength = (fArray.length >> 1);
50 for (int i = 0; i < fLength; ++i) {
57 for (int i = 0; i < fLength; ++i) {
67 return fLength;
71 if (index < 0 || index >= fLength) {
82 if (index >= 0 && index < fLength) {
H A DXMLSchemaValidator.java4553 private int fLength; field in class:XMLSchemaValidator.ShortVector
4574 return fLength;
4579 ensureCapacity(fLength + 1);
4580 fData[fLength++] = value;
4590 fLength = 0;
4595 for (int i = 0; i < fLength; ++i) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DXMLAttributesImpl.java87 protected int fLength; field in class:XMLAttributesImpl
194 if (fLength < SIZE_LIMIT) {
200 index = fLength;
201 if (fLength++ == fAttributes.length) {
223 if (!fIsTableViewConsistent || fLength == SIZE_LIMIT ||
224 (fLength > SIZE_LIMIT && fLength > fTableViewBuckets)) {
234 index = fLength;
235 if (fLength++ == fAttributes.length) {
264 index = fLength;
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DNodeListCache.java41 int fLength = -1; field in class:NodeListCache
H A DParentNode.java444 if (fNodeListCache.fLength != -1) {
445 fNodeListCache.fLength++;
514 if (fNodeListCache.fLength != -1) {
515 fNodeListCache.fLength--;
697 if (fNodeListCache.fLength == -1) { // is the cached length invalid ?
713 fNodeListCache.fLength = l;
716 return fNodeListCache.fLength;
H A DCoreDocumentImpl.java2271 c.fLength = -1;
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLETableReference.h100 fFont(font), fTag(tableTag), fParent(NULL), fStart(NULL),fLength(LE_UINTPTR_MAX) {
105 LETableReference(const LETableReference &parent, LEErrorCode &success) : fFont(parent.fFont), fTag(parent.fTag), fParent(&parent), fStart(parent.fStart), fLength(parent.fLength) {
117 fFont(NULL), fTag(kQuestionmarkTableTag), fParent(NULL), fStart(data), fLength(length) {
126 fFont(NULL), fTag(kQuestionmarkTableTag), fParent(NULL), fStart(data), fLength(length) {
131 fFont(NULL), fTag(kQuestionmarkTableTag), fParent(NULL), fStart(NULL), fLength(0) {
148 fStart((parent.fStart)+offset), fLength(length) {
153 } else if(offset >= fParent->fLength || (offset & 0x01)) {
158 if(fLength == LE_UINTPTR_MAX &&
159 fParent->fLength !
274 size_t fLength; member in class:LETableReference
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDecl.java266 private int fLength = -1; field in class:XSSimpleTypeDecl
386 fLength = fBase.fLength;
506 fLength = fBase.fLength;
804 fLength = facets.length;
1151 fLength < fBase.fMinLength) {
1153 reportError("length-minLength-maxLength.1.1", new Object[]{fTypeName, Integer.toString(fLength), Integer.toString(fBase.fMinLength)});
1156 fLength > fBase.fMaxLength) {
1158 reportError("length-minLength-maxLength.2.1", new Object[]{fTypeName, Integer.toString(fLength), Intege
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityManager.java3021 private int fLength; field in class:XMLEntityManager.RewindableInputStream
3030 fLength = 0;
3044 if (fOffset < fLength) {
3060 fData[fLength++] = (byte)b;
3066 int bytesLeft = fLength - fOffset;
3116 bytesLeft = fLength - fOffset;
3144 int bytesLeft = fLength - fOffset;

Completed in 267 milliseconds