HomeSort by relevance Sort by last modified time
    Searched defs:mInput (Results 26 - 50 of 107) sorted by null

12 3 4 5

  /cts/tests/autofillservice/src/android/autofillservice/cts/
FatActivity.java 72 private EditText mInput;
98 mInput = findViewById(R.id.input);
128 assertThat(mInput.getImportantForAutofill()).isEqualTo(IMPORTANT_FOR_AUTOFILL_YES);
164 v.visit(mInput);
SimpleSaveActivity.java 41 EditText mInput;
72 mInput = findViewById(R.id.input);
95 mInput.setText("");
116 mInput.addTextChangedListener(expectation.mInputWatcher);
122 mInput.addTextChangedListener(expectation.mInputWatcher);
132 mInputWatcher = new OneTimeTextWatcher("input", mInput, input);
  /frameworks/av/media/libstagefright/include/media/stagefright/
MediaSync.h 142 // IConsumerListener::onFrameAvailable from mInput.
196 sp<IGraphicBufferConsumer> mInput;
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/libs/androidfw/
ZipUtils.cpp 85 mInput(reinterpret_cast<const uint8_t*>(input)),
94 memcpy(buf, mInput + offset, len);
99 const uint8_t* mInput;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CommandParams.java 193 Input mInput = null;
197 mInput = input;
202 if (icon != null && mInput != null) {
203 mInput.icon = icon;
CatCmdMessage.java 32 private Input mInput;
91 mInput = ((GetInputParams) cmdParams).mInput;
134 mInput = in.readParcelable(null);
168 dest.writeParcelable(mInput, 0);
217 return mInput;
  /packages/apps/TV/tests/unit/src/com/android/tv/util/
TvInputManagerHelperTest.java 250 return inputWrapper == null ? null : inputWrapper.mInput;
269 inputWrapper.mInput =
277 return inputWrapper.mInput;
281 TvInputInfo mInput;
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 48 private InputMethodManager mInput;
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/obex/javax/obex/
ClientSession.java 67 private final InputStream mInput;
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.read()
    [all...]
ServerOperation.java 72 private InputStream mInput;
130 mInput = in;
180 packet = ObexPacket.read(request, mInput);
538 ObexPacket packet = ObexPacket.read(mInput);
608 if(mInput.available() > 0) {
609 ObexPacket packet = ObexPacket.read(mInput);
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraCaptureSessionImpl.java 48 private final Surface mInput;
97 mInput = input;
450 return mInput != null;
455 return mInput;
547 if (mInput != null) {
548 mInput.release();
    [all...]
  /frameworks/base/graphics/java/android/graphics/pdf/
PdfEditor.java 47 private ParcelFileDescriptor mInput;
81 mInput = input;
84 mNativeDocument = nativeOpen(mInput.getFd(), size);
297 if (mInput != null) {
298 IoUtils.closeQuietly(mInput);
299 mInput = null;
305 if (mInput == null) {
PdfRenderer.java 119 private ParcelFileDescriptor mInput;
164 mInput = input;
167 mNativeDocument = nativeCreate(mInput.getFd(), size);
258 if (mInput != null) {
259 IoUtils.closeQuietly(mInput);
260 mInput = null;
266 if (mInput == null) {
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerSetupView.java 51 private final int[] mInput = { 0, 0, 0, 0, 0, 0 };
205 final int seconds = mInput[1] * 10 + mInput[0];
206 final int minutes = mInput[3] * 10 + mInput[2];
207 final int hours = mInput[5] * 10 + mInput[4];
243 if (mInputPointer == mInput.length - 1) {
248 System.arraycopy(mInput, 0, mInput, 1, mInputPointer + 1)
    [all...]
  /frameworks/av/media/libaudioclient/include/media/
AudioRecord.h     [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothPeripheralHandover.java 114 BluetoothHidHost mInput;
205 if (mA2dp == null || mHeadset == null || mInput == null) {
218 if (mInput.getConnectedDevices().contains(mDevice)) {
259 if (mInput.getConnectionState(mDevice)
262 mInput.disconnect(mDevice);
365 if (mInput.getConnectionState(mDevice)
537 if (mInput != null) {
538 mBluetoothAdapter.closeProfileProxy(BluetoothProfile.HID_HOST, mInput);
543 mInput = null;
675 mInput = (BluetoothHidHost) proxy
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/recorder/
InputTaskScheduler.java 101 private TvInputInfo mInput;
151 mInput = input;
250 mInput = input;
309 tunerCount = mInput.canRecord() ? mInput.getTunerCount() : 0;
  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java 69 private InputStream mInput = null;
190 mInput = null;
222 read(mInput, mDataBuffer, 4); // only for id
226 read(mInput, data, dataLength);
235 read(mInput, mDataBuffer, len);
332 read(mInput, mDataBuffer, len);
520 mInput = mClient.getInputStream();
531 read(mInput, mHeaderBuffer, PROTOCOL_HEADER_SIZE);
  /development/apps/GestureBuilder/src/com/android/gesture/builder/
GestureBuilderActivity.java 85 private EditText mInput;
236 mInput.setText(mCurrentRenameGesture.name);
242 mInput = (EditText) layout.findViewById(R.id.name);
273 final String name = mInput.getText().toString();
285 gesture.name = mInput.getText().toString();
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 326 mInput = (BluetoothHidHost) proxy;
346 mInput = null;
365 private BluetoothHidHost mInput = null;
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
RunUtil.java 572 private final String mInput;
600 mInput = input;
639 if (mInput != null) {
642 processStdin.write(mInput.getBytes("UTF-8"));
  /frameworks/rs/cpp/
rsCppStructs.h     [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_DngCreator.cpp 559 Input* mInput;
572 uint32_t bytesPerSample, uint32_t samplesPerPixel) : mIfd(ifd), mInput(&input),
592 ssize_t skipped = mInput->skip(offset);
624 ssize_t bytesRead = mInput->read(rowBytes, rowFillAmt, rowSize);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTest.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 618 private FolderConfiguration mInput;
632 return mInput.getQualifiers();
637 for (ResourceQualifier qual : mInput.getQualifiers()) {
648 mInput = null;
650 mInput = (FolderConfiguration)newInput;
    [all...]

Completed in 1852 milliseconds

12 3 4 5