/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
AnnotationSourcer.java | 29 private final Output mOutput; 38 mOutput = output; 48 mOutput.write("%s=", name); 51 mOutput.write(name.toString()); 58 mOutput.write(mOpenChar); 65 mOutput.write(mCloseChar); 67 mOutput.write("\n"); 74 mOutput.write("@%s", name); 81 return new AnnotationSourcer(mOutput, true /*isArray*/); 86 mOutput.write("/* annotation enum not supported: %s */\n", name) [all...] |
ClassSourcer.java | 32 private final Output mOutput; 38 mOutput = output; 39 mAccessSourcer = new AccessSourcer(mOutput); 55 mOutput.write("package %s;\n", pkg); 61 mOutput.write(" class %s", mClassName); 70 mOutput.write(sigSourcer.formalsToString()); 73 mOutput.write(" extends %s", sigSourcer.getSuperClass().toString()); 77 mOutput.write(" extends %s", superName.replace('/', '.')); 82 mOutput.write(" implements "); 86 mOutput.write(", ") [all...] |
FieldSourcer.java | 31 private final Output mOutput; 39 mOutput = output; 48 mOutput.write("@%s", desc); 49 return new AnnotationSourcer(mOutput); 54 mOutput.write("%s /* non-standard attribute */ ", attr.type); 61 AccessSourcer as = new AccessSourcer(mOutput); 65 mOutput.write(" %s", Type.getType(mDesc).getClassName()); 67 mOutput.write(" "); 71 mOutput.write(sigSourcer.toString()); 74 mOutput.write(" %s", mName) [all...] |
MethodSourcer.java | 34 private final Output mOutput; 47 mOutput = output; 64 AccessSourcer as = new AccessSourcer(mOutput); 76 mOutput.write(" %s", sigSourcer.formalsToString()); 84 mOutput.write(" %s", Type.getReturnType(mDesc).getClassName()); 87 mOutput.write(" %s", sigSourcer.getReturnType().toString()); 92 mOutput.write(" %s(", mIsConstructor ? mClassName : mName); 100 mOutput.write(", "); 102 mOutput.write("%s arg%d", types[i].getClassName(), i); 109 mOutput.write(", ") [all...] |
AccessSourcer.java | 30 private final Output mOutput; 83 mOutput = output; 103 mOutput.write(" "); 105 mOutput.write(f.toString());
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
MediaTestUtil.java | 42 private Writer mOutput = null; 49 mOutput = new BufferedWriter(new FileWriter(memoryOut, true)); 70 mOutput.write(mProcessName + " died. Test failed\n"); 119 // Write the startup media memory mOutput to the file 123 mOutput.write(mTestName + '\n'); 124 mOutput.write("Start memory : " + mStartMemory + "\n"); 126 mOutput.write(memusage); 129 // Write the ps mediaserver mOutput to the file 133 mOutput.write(memusage); 134 mOutput.flush() [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
Serializer.java | 43 private final OutputStream mOutput; 72 mOutput = outputStream; 76 mOutput.write(0); 95 mOutput.flush(); 99 mOutput.write(0x03); // version 1.3 100 mOutput.write(0x01); // unknown or missing public identifier 101 mOutput.write(106); // UTF-8 102 mOutput.write(0); // 0 length string array 113 mOutput.write(Wbxml.SWITCH_PAGE); 114 mOutput.write(page) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
ExecResultException.java | 27 private final String[] mOutput; 31 mOutput = output; 38 return mOutput; 55 if (mOutput != null && mOutput.length > 0) { 59 for (String o : mOutput) {
|
/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/ |
MethodSourcerTest.java | 33 private Output mOutput; 38 mOutput = new Output(mWriter); 48 MethodSourcer m = new MethodSourcer(mOutput, 64 MethodSourcer m = new MethodSourcer(mOutput, 80 MethodSourcer m = new MethodSourcer(mOutput,
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
CameraStressTest.java | 63 private Writer mOutput; 94 mOutput = new BufferedWriter(new FileWriter(stressOutFile, true)); 95 mOutput.write(this.getName() + "\n"); 111 mOutput.write("\n\n"); 112 mOutput.close(); 144 mOutput.write("Total number of loops: " + 147 mOutput.write("No of loop: "); 164 mOutput.write(Integer.toString(j + i * NUMBER_OF_SCENE_MODE_LOOPS)); 166 mOutput.write(", " + (j + i * NUMBER_OF_SCENE_MODE_LOOPS)); 192 mOutput.write("Total number of loops: " + NUMBER_OF_ZOOM_LOOPS + "\n") [all...] |
MediaRecorderStressTest.java | 65 private Writer mOutput; 96 mOutput = new BufferedWriter(new FileWriter(stressOutFile, true)); 97 mOutput.write(this.getName() + "\n"); 113 mOutput.write("\n\n"); 114 mOutput.close(); 204 mOutput.write("Total number of loops: " + iterations + "\n"); 207 mOutput.write("No of loop: "); 262 mOutput.write(i + 1); 264 mOutput.write(String.format(", %d", (i + 1))); 307 mOutput.write("Total number of loops: " + NUMBER_OF_TIME_LAPSE_LOOPS + "\n") [all...] |
/external/chromium_org/third_party/codesighs/ |
nm2tsv.c | 60 ** mOutput Output file, append. 69 FILE* mOutput; 208 fprintf(inOptions->mOutput, "%s\t", size); 217 fprintf(inOptions->mOutput, "CODE\t"); 220 fprintf(inOptions->mOutput, "DATA\t"); 229 fprintf(inOptions->mOutput, "STATIC\t"); 236 fprintf(inOptions->mOutput, "UNDEF\t"); 239 fprintf(inOptions->mOutput, "PUBLIC\t"); 247 fprintf(inOptions->mOutput, "%s\t", module); 248 fprintf(inOptions->mOutput, "%c\t", toupper(*type)) [all...] |
codesighs.c | 60 ** mOutput Output file, append. 79 FILE* mOutput; 552 fprintf(inOptions->mOutput, "%u\n", (unsigned)(overall.mCode + overall.mData)); 556 fprintf(inOptions->mOutput, "Overall Size\n"); 557 fprintf(inOptions->mOutput, "\tTotal:\t%10u\n", (unsigned)(overall.mCode + overall.mData)); 558 fprintf(inOptions->mOutput, "\tCode:\t%10u\n", (unsigned)overall.mCode); 559 fprintf(inOptions->mOutput, "\tData:\t%10u\n", (unsigned)overall.mData); 580 fprintf(inOptions->mOutput, "\n"); 581 fprintf(inOptions->mOutput, "%s\n", modules[loop].mModule); 582 fprintf(inOptions->mOutput, "\tTotal:\t%10u\n", (unsigned)(modules[loop].mSize.mCode + modules[loop].mSize.mData)) [all...] |
maptsvdifftool.c | 59 ** mOutput Output file, append. 71 FILE* mOutput; 914 fprintf(inOptions->mOutput, "%+d (%+d/%+d)\n", overall.mCode + overall.mData, overall.mCodeComposition.mPositive + overall.mDataComposition.mPositive, overall.mCodeComposition.mNegative + overall.mDataComposition.mNegative); [all...] |
msdump2symdb.c | 60 ** mOutput Output file, append. 69 FILE* mOutput; 794 printRes = fprintf(inOptions->mOutput, "%s\t%s\t%.8X\t%s\n", 883 outOptions->mOutput = stdout; 980 if(NULL != outOptions->mOutput && stdout != outOptions->mOutput) 982 fclose(outOptions->mOutput); 983 outOptions->mOutput = NULL; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
ChangedFileSet.java | 38 private String mOutput; 46 mOutput = output; 60 if (mOutput != null) { 61 return SelectorUtils.matchPath(mOutput, path);
|
/hardware/libhardware_legacy/audio/ |
A2dpAudioInterface.cpp | 47 mOutput(0), mHardwareInterface(hw), mBluetoothEnabled(true), mSuspended(false) 53 closeOutputStream((AudioStreamOut *)mOutput); 74 if (mOutput) { 83 mOutput = out; 84 mOutput->setBluetoothEnabled(mBluetoothEnabled); 85 mOutput->setSuspended(mSuspended); 92 return mOutput; 96 if (mOutput == 0 || mOutput != out) { 100 delete mOutput; [all...] |
AudioHardwareGeneric.cpp | 46 : mOutput(0), mInput(0), mFd(-1), mMicMute(false) 54 closeOutputStream((AudioStreamOut *)mOutput); 73 if (mOutput) { 87 mOutput = out; 91 return mOutput; 95 if (mOutput && out == mOutput) { 96 delete mOutput; 97 mOutput = 0; 184 if (mOutput) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
GdbServerTask.java | 92 private StringBuffer mOutput = new StringBuffer(100); 96 mOutput.append(new String(data, offset, length)); 99 if (mOutput.toString().contains("Attached")) { 115 return mOutput.toString();
|
/packages/apps/Browser/src/com/android/browser/homepages/ |
RequestHandler.java | 54 OutputStream mOutput;
64 mOutput = out;
142 t.write(mOutput);
213 t.write(mOutput);
243 mOutput.write(buf, 0, read);
249 mOutput.write(str.getBytes());
253 mOutput.write(str.getBytes(), offset, count);
258 mOutput.close();
|
/cts/suite/audio_quality/lib/src/task/ |
TaskProcess.cpp | 163 if (mOutput.size() != info->mNOutput) { 164 LOGE("TaskProcess::runBuiltin size mismatch %d vs %d", mOutput.size(), info->mNOutput); 186 if (!prepareParams(mOutput, builtIn ? info->mOutputTypes : NULL, outputs, outputValues, 199 UniquePtr<bool, DefaultDelete<bool[]> > outputTypes(new bool[mOutput.size()]); 200 for (size_t i = 0; i < mOutput.size(); i++) { 201 (outputTypes.get())[i] = mOutput[i].isIdType(); 205 mOutput.size(), outputTypes.get(), outputs.get()); 211 for (size_t i = 0; i < mOutput.size(); i++) { 212 if (mOutput[i].isIdType()) { // Buffer 215 if (!getTestCase()->registerBuffer(mOutput[i].getParamString(), *bufferp)) [all...] |
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3StreamBufferListener.h | 31 bool mOutput; // if false then input buffer
|
/frameworks/av/services/audioflinger/ |
Threads.cpp | [all...] |
/frameworks/base/obex/javax/obex/ |
ServerSession.java | 53 private OutputStream mOutput; 76 mOutput = mTransport.openOutputStream(); 259 OutputStream op = mOutput; 404 mOutput.write(replyData); 405 mOutput.flush(); 508 mOutput.write(replyData); 509 mOutput.flush(); 648 mOutput.write(sendData); 649 mOutput.flush(); 663 mOutput.close() [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
PresentationSyncTest.java | 228 private final InputSurface mOutput; 235 mOutput = output; 242 mTest.runChoreographedTest(mOutput, mFrameDelay); 306 private final InputSurface mOutput; 315 mOutput = output; 356 mOutput.setPresentationTime(frameTimeNanos + (mFrameDiff * mFrameDelay)); 361 mOutput.swapBuffers();
|