Searched refs:fArray (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSObjectListImpl.java80 private XSObject[] fArray = null; field in class:XSObjectListImpl
85 fArray = new XSObject[DEFAULT_SIZE];
96 fArray = array;
121 return fArray[index];
127 fArray[i] = null;
129 fArray = null;
134 if (fLength == fArray.length) {
136 System.arraycopy(fArray, 0, temp, 0, fLength);
137 fArray = temp;
139 fArray[fLengt
[all...]
H A DShortListImpl.java45 private final short[] fArray; field in class:ShortListImpl
56 fArray = array;
78 if (fArray[i] == item) {
89 return fArray[index];
102 if (fArray[i] != rhs.item(i)) {
115 return new Short(fArray[index]);
H A DObjectListImpl.java44 private final Object[] fArray; field in class:ObjectListImpl
50 fArray = array;
61 if (fArray[i] == null)
67 if (item.equals(fArray[i]))
78 return fArray[index];
86 return fArray[index];
116 System.arraycopy(fArray, 0, a, 0, fLength);
H A DLSInputListImpl.java47 private final LSInput[] fArray; field in class:LSInputListImpl
58 fArray = array;
83 return fArray[index];
92 return fArray[index];
122 System.arraycopy(fArray, 0, a, 0, fLength);
H A DStringListImpl.java46 private final String[] fArray; field in class:StringListImpl
57 fArray = null;
67 fArray = array;
94 if (fArray[i] == null)
100 if (item.equals(fArray[i]))
114 return fArray[index];
126 return fArray[index];
162 System.arraycopy(fArray, 0, a, 0, fLength);
H A DXSNamedMap4Types.java85 // then copy either simple or complex types to fArray,
88 fArray = new XSObject[length];
93 fArray[fLength++] = type;
135 if (fArray == null) {
141 return fArray[index];
H A DXSNamedMapImpl.java61 XSObject[] fArray = null; field in class:XSNamedMapImpl
104 fArray = array;
114 fArray = array;
160 ret = fArray[j];
181 if (fArray == null) {
184 fArray = new XSObject[fLength];
188 pos += fMaps[i].getValues(fArray, pos);
194 return fArray[index];
/openjdk7/jdk/test/java/awt/image/
H A DGetSamplesTest.java69 float[] fArray = new float[ width * height + numBands];
85 sm.getSamples(Integer.MAX_VALUE, 0, 1, 1, 0, fArray, db);
86 sm.setSamples(Integer.MAX_VALUE, 0, 1, 1, 0, fArray, db);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DWritableRaster.java519 * @param fArray The input samples in a float array.
521 * @throws NullPointerException if fArray is null.
523 * in bounds, or if fArray is too small to hold the input.
525 public void setPixel(int x, int y, float fArray[]) { argument
527 fArray,dataBuffer);
579 * @param fArray The input float pixel array.
581 * @throws NullPointerException if fArray is null.
583 * in bounds, or if fArray is too small to hold the input.
585 public void setPixels(int x, int y, int w, int h, float fArray[]) { argument
587 w,h,fArray,dataBuffe
711 setSamples(int x, int y, int w, int h, int b, float fArray[]) argument
[all...]
H A DSampleModel.java653 float[] fArray = (float[])obj;
659 ftemp[k] = fArray[cnt++];
692 * @param fArray If non-null, returns the samples in this array.
699 * not in bounds, or if fArray is too small to hold the output.
701 public float[] getPixel(int x, int y, float fArray[], argument
706 if (fArray != null)
707 pixels = fArray;
805 * @param fArray If non-null, returns the samples in this array.
812 * not in bounds, or if fArray is too small to hold the output.
815 float fArray[], DataBuffe
814 getPixels(int x, int y, int w, int h, float fArray[], DataBuffer data) argument
1026 getSamples(int x, int y, int w, int h, int b, float fArray[], DataBuffer data) argument
1137 setPixel(int x, int y, float fArray[], DataBuffer data) argument
1217 setPixels(int x, int y, int w, int h, float fArray[], DataBuffer data) argument
1409 setSamples(int x, int y, int w, int h, int b, float fArray[], DataBuffer data) argument
[all...]
H A DRaster.java1532 * @param fArray An optionally preallocated float array
1536 * in bounds, or if fArray is too small to hold the output.
1538 public float[] getPixel(int x, int y, float fArray[]) { argument
1541 fArray, dataBuffer);
1595 * @param fArray An optionally pre-allocated float array
1599 * in bounds, or if fArray is too small to hold the output.
1602 float fArray[]) {
1605 fArray, dataBuffer);
1733 * @param fArray An optionally pre-allocated float array
1738 * the band index are not in bounds, or if fArray i
1601 getPixels(int x, int y, int w, int h, float fArray[]) argument
1741 getSamples(int x, int y, int w, int h, int b, float fArray[]) argument
[all...]

Completed in 35 milliseconds