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

/packages/apps/Email/src/org/apache/commons/io/output/
H A DNullWriter.java61 * @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 DProxyWriter.java67 * @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 DProxyOutputStream.java65 * @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 DFileWriterWithEncoding.java281 * @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 DLockableFileWriter.java297 * @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/Email/src/org/apache/commons/io/input/
H A DTeeInputStream.java118 * @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 DProxyInputStream.java69 * @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 DProxyReader.java69 * @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/Gallery2/src/com/android/gallery3d/ui/
H A DSurfaceTextureScreenNail.java55 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/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
H A DDictionaryBackupAgent.java216 StringTokenizer st = new StringTokenizer(line, SEPARATOR);
220 word = st.nextToken();
221 frequency = st.nextToken();
225 if (st.hasMoreTokens()) locale = st.nextToken();
227 if (st.hasMoreTokens()) appid = st.nextToken();
228 if (st.hasMoreTokens()) shortcut = st.nextToken();
/packages/apps/Browser/src/com/android/browser/view/
H A DPieItem.java113 public void setGeometry(float st, float sw, int inside, int outside) { argument
114 start = st;
/packages/apps/Camera/src/com/android/camera/ui/
H A DPieItem.java134 public void setGeometry(float st, float sw, int inside, int outside) { argument
135 start = st;
/packages/apps/Camera/src/com/android/camera/
H A DMosaicPreviewRenderer.java174 private void releaseSurfaceTexture(SurfaceTexture st) { argument
176 st.release();
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DTextUtilities.java576 StringTokenizer st = new StringTokenizer(query);
577 while (st.hasMoreTokens()) {
578 terms.add(new SearchTerm(st.nextToken(), html));
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboard.java423 StringTokenizer st = new StringTokenizer(value, ",");
424 while (st.hasMoreTokens()) {
426 values[count++] = Integer.parseInt(st.nextToken());
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DCalendarSyncAdapter.java1641 StringTokenizer st =
1643 if (st.countTokens() > 0) {
1645 while (st.hasMoreTokens()) {
1646 String category = st.nextToken();
2047 StringTokenizer st =
2049 while (st.hasMoreTokens()) {
2050 originalAttendeeList.add(st.nextToken());

Completed in 3710 milliseconds