Searched defs:mInput (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
H A DScriptIntrinsicYuvToRGB.java28 private Allocation mInput; field in class:ScriptIntrinsicYuvToRGB
58 mInput = ain;
H A DScriptIntrinsicBlur.java31 private Allocation mInput; field in class:ScriptIntrinsicBlur
65 mInput = ain;
H A DScriptIntrinsicColorMatrix.java34 private Allocation mInput; field in class:ScriptIntrinsicColorMatrix
H A DScriptIntrinsicConvolve3x3.java29 private Allocation mInput; field in class:ScriptIntrinsicConvolve3x3
70 mInput = ain;
H A DScriptIntrinsicConvolve5x5.java27 private Allocation mInput; field in class:ScriptIntrinsicConvolve5x5
63 mInput = ain;
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicYuvToRGB.java28 private Allocation mInput; field in class:ScriptIntrinsicYuvToRGB
58 mInput = ain;
H A DScriptIntrinsicBlur.java31 private Allocation mInput; field in class:ScriptIntrinsicBlur
65 mInput = ain;
H A DScriptIntrinsicConvolve3x3.java27 private Allocation mInput; field in class:ScriptIntrinsicConvolve3x3
68 mInput = ain;
H A DScriptIntrinsicConvolve5x5.java27 private Allocation mInput; field in class:ScriptIntrinsicConvolve5x5
63 mInput = ain;
H A DScriptIntrinsicColorMatrix.java32 private Allocation mInput; field in class:ScriptIntrinsicColorMatrix
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DPatternScanner.java28 private String mInput; field in class:PatternScanner
35 mInput = input;
39 mInput = input;
51 Matcher matcher = pattern.matcher(mInput);
52 matcher.region(mOffset, mInput.length());
59 result = mInput.substring(matcher.start(), matcher.end());
85 Matcher matcher = pattern.matcher(mInput);
86 matcher.region(mOffset, mInput.length());
93 Matcher matcher = pattern.matcher(mInput);
94 matcher.region(mOffset, mInput
[all...]
/frameworks/base/obex/javax/obex/
H A DServerSession.java51 private InputStream mInput; field in class:ServerSession
75 mInput = mTransport.openInputStream();
94 int requestType = mInput.read();
133 int length = mInput.read();
134 length = (length << 8) + mInput.read();
136 mInput.read();
164 int length = mInput.read();
165 length = (length << 8) + mInput.read();
170 mInput.read();
193 ServerOperation op = new ServerOperation(this, mInput, typ
[all...]
H A DClientSession.java61 private final InputStream mInput; field in class:ClientSession
66 mInput = trans.openInputStream();
435 header.responseCode = mInput.read();
437 int length = ((mInput.read() << 8) | (mInput.read()));
446 int version = mInput.read();
448 int flags = mInput.read();
449 maxPacketSize = (mInput.read() << 8) + mInput.read();
459 bytesReceived = mInput
[all...]
H A DServerOperation.java65 private InputStream mInput; field in class:ServerOperation
106 mInput = in;
391 int headerID = mInput.read();
392 int length = mInput.read();
393 length = (length << 8) + mInput.read();
402 bytesReceived = mInput.read(temp);
405 bytesReceived += mInput.read(temp, bytesReceived,
446 bytesReceived = mInput.read(data);
449 bytesReceived += mInput.read(data, bytesReceived, data.length
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatCmdMessage.java32 private Input mInput; field in class:CatCmdMessage
70 mInput = ((GetInputParams) cmdParams).input;
102 mInput = in.readParcelable(null);
124 dest.writeParcelable(mInput, 0);
164 return mInput;
/frameworks/av/include/media/
H A DAudioRecord.h377 audio_io_handle_t mInput; // returned by AudioSystem::getInput() member in class:android::AudioRecord
/frameworks/av/libvideoeditor/vss/src/
H A DVideoEditorResampler.cpp45 int16_t* mInput; member in struct:android::VideoEditorResampler
60 memcpy(mTmpInBuffer, this->mInput, dataSize);
91 context->mInput = NULL;
109 context->mInput = (int16_t*)malloc( (inSampleRate * MAX_SAMPLEDURATION_FOR_CONVERTION *
130 if (context->mInput != NULL) {
131 free(context->mInput);
132 context->mInput = NULL;
154 memcpy(context->mInput,input,(context->nbSamples * context->nbChannels * sizeof(int16_t)));
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java42 private InputMethodManager mInput; field in class:FindActionModeCallback
59 mInput = (InputMethodManager)
144 mInput.startGettingWindowFocus(mEditText.getRootView());
145 mInput.focusIn(mEditText);
146 mInput.showSoftInput(mEditText, 0);
211 mInput.hideSoftInputFromWindow(mWebView.getWebView().getWindowToken(), 0);
225 mInput.hideSoftInputFromWindow(mWebView.getWebView().getWindowToken(), 0);
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java322 mInput = (BluetoothInputDevice) proxy;
342 mInput = null;
361 private BluetoothInputDevice mInput = null; field in class:BluetoothTestUtils
1452 if (mInput != null) {
1453 return mInput;
1478 while (mInput == null && System.currentTimeMillis() - s < CONNECT_PROXY_TIMEOUT) {
1481 return mInput;

Completed in 372 milliseconds