HomeSort by relevance Sort by last modified time
    Searched defs:mOutStream (Results 1 - 8 of 8) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
Ver3DictUpdater.java 34 private OutputStream mOutStream;
41 mOutStream = null;
46 mOutStream = new FileOutputStream(mDictionaryBinaryFile, true /* append */);
50 if (mOutStream != null) {
51 mOutStream.close();
52 mOutStream = null;
58 if (mOutStream == null) openStreamAndBuffer();
77 if (mOutStream == null) openStreamAndBuffer();
78 DynamicBinaryDictIOUtils.insertWord(this, mOutStream, word, frequency, bigramStrings,
Ver3DictEncoder.java 39 private OutputStream mOutStream;
45 mOutStream = null;
54 mOutStream = outStream;
58 mOutStream = new FileOutputStream(mDictFile);
62 if (mOutStream != null) {
63 mOutStream.close();
64 mOutStream = null;
77 if (mOutStream == null) {
80 BinaryDictEncoderUtils.writeDictionaryHeader(mOutStream, dict, formatOptions);
109 mOutStream.write(mBuffer, 0, mPosition)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/crop/
CropActivity.java 356 OutputStream mOutStream = null;
385 mOutStream = null;
405 mOutStream = getContentResolver().openOutputStream(mOutUri);
545 if (mOutStream == null
546 || !crop.compress(cf, DEFAULT_COMPRESS_QUALITY, mOutStream)) {
560 if (mOutStream == null) {
566 mOutStream.write(tmpOut.toByteArray());
603 Utils.closeSilently(mOutStream);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 359 OutputStream mOutStream = null;
388 mOutStream = null;
408 mOutStream = getContentResolver().openOutputStream(mOutUri);
548 if (mOutStream == null
549 || !crop.compress(cf, DEFAULT_COMPRESS_QUALITY, mOutStream)) {
563 if (mOutStream == null) {
569 mOutStream.write(tmpOut.toByteArray());
606 Utils.closeSilently(mOutStream);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PostCompilerBuilder.java 117 private AndroidPrintStream mOutStream = null;
350 if (mOutStream == null) {
351 mOutStream = new AndroidPrintStream(project, null /*prefix*/,
375 mOutStream, mErrStream,
490 mOutStream, mErrStream,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 114 private final AndroidPrintStream mOutStream;
155 mOutStream = outStream;
341 SigningInfo info = ApkBuilder.getDebugKey(keystoreOsPath, mVerbose ? mOutStream : null);
377 mVerbose ? mOutStream: null);
434 mOutStream.println(string);
585 mOutStream.println(resultString);
713 mOutStream.setPrefix(CONSOLE_PREFIX_DX);
745 mOutStream.println(
754 mForceJumbo, mVerbose, mOutStream, mErrStream);
763 mOutStream.println
    [all...]
  /prebuilts/devtools/tools/lib/
sdklib.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 1775 milliseconds