Home | History | Annotate | Download | only in com.example.android.wearable.recipeassistant

Lines Matching defs:is

11  * distributed under the License is distributed on an "AS IS" BASIS,
36 InputStream is = context.getAssets().open(asset);
37 int size = is.available();
39 is.read(buffer);
40 is.close();
59 InputStream is = null;
62 is = context.getAssets().open(asset);
63 if (is != null) {
64 bitmap = BitmapFactory.decodeStream(is);
69 if (is != null) {
71 is.close();