Searched defs:wbuf (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/zip/
H A DInflaterOutputStream.java52 private final byte[] wbuf = new byte[1]; field in class:InflaterOutputStream
203 wbuf[0] = (byte) b;
204 write(wbuf, 0, 1);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_TextArea.cpp631 LPTSTR wbuf; local
635 wbuf = new TCHAR[wlen + 1];
636 GetText(wbuf, wlen + 1);
638 wlen = RemoveCR(wbuf);
642 if (wbuf[cur] == _T('\r') && wbuf[cur + 1] == _T('\n')) {
648 delete[] wbuf;
H A Dawt_TextComponent.cpp402 LPTSTR wbuf; local
406 wbuf = new TCHAR[wlen + 1];
407 GetText(wbuf, wlen + 1);
409 wlen = RemoveCR(wbuf);
413 if (wbuf[cur] == _T('\r') && wbuf[cur + 1] == _T('\n')) {
418 delete[] wbuf;
427 LPTSTR wbuf; local
431 wbuf = new TCHAR[wlen + 1];
432 GetText(wbuf, wle
[all...]

Completed in 34 milliseconds