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

12

/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicResize.java23 private Allocation mInput; field in class:ScriptIntrinsicResize
65 mInput = ain;
88 if (aout == mInput) {
H A DScriptIntrinsicYuvToRGB.java28 private Allocation mInput; field in class:ScriptIntrinsicYuvToRGB
58 mInput = ain;
H A DScriptIntrinsicBlur.java27 private Allocation mInput; field in class:ScriptIntrinsicBlur
65 mInput = ain;
H A DScriptIntrinsicConvolve3x3.java25 private Allocation mInput; field in class:ScriptIntrinsicConvolve3x3
75 mInput = ain;
H A DScriptIntrinsicConvolve5x5.java25 private Allocation mInput; field in class:ScriptIntrinsicConvolve5x5
75 mInput = ain;
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicBlur.java31 private Allocation mInput; field in class:ScriptIntrinsicBlur
78 mInput = ain;
H A DScriptIntrinsicResize.java25 private Allocation mInput; field in class:ScriptIntrinsicResize
75 mInput = ain;
98 if (aout == mInput) {
H A DScriptIntrinsicYuvToRGB.java28 private Allocation mInput; field in class:ScriptIntrinsicYuvToRGB
66 mInput = ain;
H A DScriptIntrinsicConvolve3x3.java27 private Allocation mInput; field in class:ScriptIntrinsicConvolve3x3
84 mInput = ain;
H A DScriptIntrinsicConvolve5x5.java27 private Allocation mInput; field in class:ScriptIntrinsicConvolve5x5
85 mInput = ain;
H A DScriptIntrinsicColorMatrix.java33 private Allocation mInput; field in class:ScriptIntrinsicColorMatrix
/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfiguration.java65 mInput = input;
117 return mInput;
131 return !mInput;
154 mInput == other.mInput;
164 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0);
170 private final boolean mInput; field in class:StreamConfiguration
/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/services/robotests/src/com/android/server/testing/shadows/
H A DShadowBackupDataInput.java36 private ObjectInputStream mInput; field in class:ShadowBackupDataInput
44 mInput = new ObjectInputStream(new FileInputStream(fd));
54 mSize = mInput.readInt();
58 mKey = mInput.readUTF();
78 int result = mInput.read(data, offset, size);
88 mInput.read(new byte[mSize], 0, mSize);
/frameworks/native/include/gui/
H A DStreamSplitter.h173 sp<IGraphicBufferConsumer> mInput; member in class:android::StreamSplitter
/frameworks/native/libs/gui/include/gui/
H A DStreamSplitter.h173 sp<IGraphicBufferConsumer> mInput; member in class:android::StreamSplitter
/frameworks/av/include/media/stagefright/
H A DMediaSync.h142 // IConsumerListener::onFrameAvailable from mInput.
196 sp<IGraphicBufferConsumer> mInput; member in class:android::MediaSync
211 // Keep track of buffers received from |mInput|. This is needed because
214 // and that could cause problem if the producer of |mInput| only
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DMediaSync.h142 // IConsumerListener::onFrameAvailable from mInput.
196 sp<IGraphicBufferConsumer> mInput; member in class:android::MediaSync
211 // Keep track of buffers received from |mInput|. This is needed because
214 // and that could cause problem if the producer of |mInput| only
/frameworks/base/obex/javax/obex/
H A DClientSession.java67 private final InputStream mInput; field in class:ClientSession
76 mInput = trans.openInputStream();
92 mInput = trans.openInputStream();
512 header.responseCode = mInput.read();
514 int length = ((mInput.read() << 8) | (mInput.read()));
523 int version = mInput.read();
525 int flags = mInput.read();
526 mMaxTxPacketSize = (mInput.read() << 8) + mInput
[all...]
H A DServerSession.java54 private InputStream mInput; field in class:ServerSession
78 mInput = mTransport.openInputStream();
98 int requestType = mInput.read();
137 int length = mInput.read();
138 length = (length << 8) + mInput.read();
140 mInput.read();
168 int length = mInput.read();
169 length = (length << 8) + mInput.read();
174 mInput.read();
197 ServerOperation op = new ServerOperation(this, mInput, typ
[all...]
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java48 private InputMethodManager mInput; field in class:FindActionModeCallback
65 mInput = context.getSystemService(InputMethodManager.class);
160 mInput.showSoftInput(mEditText, 0);
227 mInput.hideSoftInputFromWindow(mWebView.getWindowToken(), 0);
241 mInput.hideSoftInputFromWindow(mWebView.getWindowToken(), 0);
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java47 private ParcelFileDescriptor mInput; field in class:PdfEditor
81 mInput = input;
84 mNativeDocument = nativeOpen(mInput.getFd(), size);
297 if (mInput != null) {
298 IoUtils.closeQuietly(mInput);
299 mInput = null;
305 if (mInput == null) {
H A DPdfRenderer.java119 private ParcelFileDescriptor mInput; field in class:PdfRenderer
164 mInput = input;
167 mNativeDocument = nativeCreate(mInput.getFd(), size);
258 if (mInput != null) {
259 IoUtils.closeQuietly(mInput);
260 mInput = null;
266 if (mInput == null) {
/frameworks/base/libs/androidfw/
H A DZipUtils.cpp85 mInput(reinterpret_cast<const uint8_t*>(input)),
94 memcpy(buf, mInput + offset, len);
99 const uint8_t* mInput; member in class:BufferReader
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatCmdMessage.java32 private Input mInput; field in class:CatCmdMessage
91 mInput = ((GetInputParams) cmdParams).mInput;
134 mInput = in.readParcelable(null);
168 dest.writeParcelable(mInput, 0);
217 return mInput;

Completed in 9708 milliseconds

12