Searched defs:fLength (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeListCache.java41 int fLength = -1; field in class:NodeListCache
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DLSInputListImpl.java49 private final int fLength; field in class:LSInputListImpl
59 fLength = length;
67 return fLength;
80 if (index < 0 || index >= fLength) {
91 if (index >= 0 && index < fLength) {
102 Object[] a = new Object[fLength];
108 if (a.length < fLength) {
111 a = (Object[]) Array.newInstance(componentType, fLength);
114 if (a.length > fLength) {
115 a[fLength]
[all...]
H A DObjectListImpl.java47 private final int fLength; field in class:ObjectListImpl
51 fLength = length;
55 return fLength;
60 for (int i = 0; i < fLength; i++) {
66 for (int i = 0; i < fLength; i++) {
75 if (index < 0 || index >= fLength) {
85 if (index >= 0 && index < fLength) {
96 Object[] a = new Object[fLength];
102 if (a.length < fLength) {
105 a = (Object[]) Array.newInstance(componentType, 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 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 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...]
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...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLETableReference.h81 fFont(font), fTag(tableTag), fParent(NULL), fStart(NULL),fLength(LE_UINTPTR_MAX) {
86 LETableReference(const LETableReference &parent, LEErrorCode &success) : fFont(parent.fFont), fTag(parent.fTag), fParent(&parent), fStart(parent.fStart), fLength(parent.fLength) {
94 fFont(NULL), fTag(kQuestionmarkTableTag), fParent(NULL), fStart(data), fLength(length) {
98 fFont(NULL), fTag(kQuestionmarkTableTag), fParent(NULL), fStart(NULL), fLength(0) {
115 fStart((parent.fStart)+offset), fLength(length) {
120 } else if(offset >= fParent->fLength) {
125 if(fLength == LE_UINTPTR_MAX &&
126 fParent->fLength != LE_UINTPTR_MAX) {
127 fLength
227 size_t fLength; member in class:LETableReference
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLAttributesImpl.java123 protected int fLength; field in class:XMLAttributesImpl
225 if (fLength < SIZE_LIMIT) {
231 index = fLength;
232 if (fLength++ == fAttributes.length) {
254 if (!fIsTableViewConsistent || fLength == SIZE_LIMIT) {
264 index = fLength;
265 if (fLength++ == fAttributes.length) {
292 index = fLength;
293 if (fLength++ == fAttributes.length) {
335 fLength
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityManager.java2819 private int fLength; field in class:XMLEntityManager.RewindableInputStream
2828 fLength = 0;
2842 if (fOffset < fLength) {
2858 fData[fLength++] = (byte)b;
2864 int bytesLeft = fLength - fOffset;
2914 bytesLeft = fLength - fOffset;
2942 int bytesLeft = fLength - fOffset;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDecl.java264 private int fLength = -1; field in class:XSSimpleTypeDecl
385 fLength = fBase.fLength;
506 fLength = fBase.fLength;
805 fLength = facets.length;
1154 fLength < fBase.fMinLength) {
1156 reportError("length-minLength-maxLength.1.1", new Object[]{fTypeName, Integer.toString(fLength), Integer.toString(fBase.fMinLength)});
1159 fLength > fBase.fMaxLength) {
1161 reportError("length-minLength-maxLength.2.1", new Object[]{fTypeName, Integer.toString(fLength), Intege
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java4249 private int fLength; field in class:XMLSchemaValidator.ShortVector
4270 return fLength;
4275 ensureCapacity(fLength + 1);
4276 fData[fLength++] = value;
4286 fLength = 0;
4291 for (int i = 0; i < fLength; ++i) {

Completed in 2419 milliseconds