/packages/apps/Email/src/org/apache/commons/io/input/ |
H A D | TeeInputStream.java | 118 * @param st start offset within the buffer
123 public int read(byte[] bts, int st, int end) throws IOException {
argument 124 int n = super.read(bts, st, end);
126 branch.write(bts, st, n);
|
H A D | ProxyInputStream.java | 69 * @param st The start offset
74 public int read(byte[] bts, int st, int end) throws IOException {
argument 75 return in.read(bts, st, end);
|
H A D | ProxyReader.java | 69 * @param st The start offset
74 public int read(char[] chr, int st, int end) throws IOException {
argument 75 return in.read(chr, st, end);
|
/packages/apps/Email/src/org/apache/commons/io/output/ |
H A D | NullWriter.java | 61 * @param st The start offset
64 public void write(char[] chr, int st, int end) {
argument 79 * @param st The start offset
82 public void write(String str, int st, int end) {
argument
|
H A D | ProxyOutputStream.java | 65 * @param st The start offset
69 public void write(byte[] bts, int st, int end) throws IOException {
argument 70 out.write(bts, st, end);
|
H A D | ProxyWriter.java | 67 * @param st The start offset
71 public void write(char[] chr, int st, int end) throws IOException {
argument 72 out.write(chr, st, end);
87 * @param st The start offset
91 public void write(String str, int st, int end) throws IOException {
argument 92 out.write(str, st, end);
|
H A D | FileWriterWithEncoding.java | 281 * @param st The start offset
285 public void write(char[] chr, int st, int end) throws IOException {
argument 286 out.write(chr, st, end);
301 * @param st The start offset
305 public void write(String str, int st, int end) throws IOException {
argument 306 out.write(str, st, end);
|
H A D | LockableFileWriter.java | 297 * @param st The start offset
301 public void write(char[] chr, int st, int end) throws IOException {
argument 302 out.write(chr, st, end);
317 * @param st The start offset
321 public void write(String str, int st, int end) throws IOException {
argument 322 out.write(str, st, end);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
H A D | SurfaceTextureScreenNail.java | 55 private static void setDefaultBufferSize(SurfaceTexture st, int width, int height) { argument 57 st.setDefaultBufferSize(width, height); 62 private static void releaseSurfaceTexture(SurfaceTexture st) { argument 63 st.setOnFrameAvailableListener(null); 65 st.release();
|
/packages/apps/Browser/src/com/android/browser/view/ |
H A D | PieItem.java | 113 public void setGeometry(float st, float sw, int inside, int outside) { argument 114 start = st;
|
/packages/apps/Camera/src/com/android/camera/ |
H A D | MosaicPreviewRenderer.java | 174 private void releaseSurfaceTexture(SurfaceTexture st) { argument 176 st.release();
|
/packages/apps/Camera/src/com/android/camera/ui/ |
H A D | PieItem.java | 134 public void setGeometry(float st, float sw, int inside, int outside) { argument 135 start = st;
|