Home | History | Annotate | Download | only in renderscript

Lines Matching refs:str

188             byte[] str;
193 str = new byte[1024];
196 int bytesLeft = str.length - strLength;
198 byte[] buf2 = new byte[str.length * 2];
199 System.arraycopy(str, 0, buf2, 0, str.length);
200 str = buf2;
201 bytesLeft = str.length - strLength;
203 int bytesRead = is.read(str, strLength, bytesLeft);
217 mShader = new String(str, 0, strLength, "UTF-8");