Searched refs:input (Results 301 - 325 of 431) sorted by last modified time

<<1112131415161718

/frameworks/base/docs/html/training/
H A Dtraining_toc.cs477 and respond to touch input."
865 <a href="<?cs var:toroot ?>training/wearables/notifications/voice-input.html">Receiving Voice Input in a Notification</a>
1710 <a href="<?cs var:toroot ?>training/best-user-input.html">
1754 <a href="<?cs var:toroot ?>training/keyboard-input/index.html"
1756 "How to specify the appearance and behaviors of soft input methods (such
1762 <li><a href="<?cs var:toroot ?>training/keyboard-input/style.html">
1766 <li><a href="<?cs var:toroot ?>training/keyboard-input/visibility.html">
1770 <li><a href="<?cs var:toroot ?>training/keyboard-input/navigation.html">
1774 <li><a href="<?cs var:toroot ?>training/keyboard-input/commands.html">
1789 <li><a href="<?cs var:toroot ?>training/game-controllers/controller-input
[all...]
/frameworks/base/docs/html/ndk/reference/
H A Dreference_toc.cs35 <li><a href="/ndk/reference/input_8h.html">input.h</a></li>
/frameworks/base/docs/html/guide/
H A Dguide_toc.cs531 <li><a href="<?cs var:toroot ?>guide/topics/text/creating-input-method.html">
538 </li><!-- end of text and input -->
/frameworks/base/core/java/com/android/internal/view/animation/
H A DFallbackLUTInterpolator.java73 public float getInterpolation(float input) { argument
74 return mSourceInterpolator.getInterpolation(input);
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java24 import android.hardware.input.InputManager;
25 import android.hardware.input.InputManager.InputDeviceListener;
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DAbstractVerifier.java284 private static boolean isIPv4Address(final String input) { argument
285 return IPV4_PATTERN.matcher(input).matches();
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp30 #include <input/InputTransport.h>
H A Dandroid_hardware_camera2_DngCreator.cpp513 ALOGE("%s: Exception while reading from input into byte buffer.", __FUNCTION__);
546 InputStripSource(JNIEnv* env, Input& input, uint32_t ifd, uint32_t width, uint32_t height,
568 InputStripSource::InputStripSource(JNIEnv* env, Input& input, uint32_t ifd, uint32_t width, argument
570 uint32_t bytesPerSample, uint32_t samplesPerPixel) : mIfd(ifd), mInput(&input),
600 "Error encountered while skip bytes in input stream.");
2211 ALOGV("%s: Using input-type strip source.", __FUNCTION__);
2285 ALOGV("%s: Using input-type strip source.", __FUNCTION__);
H A Dandroid_text_AndroidCharacter.cpp96 static jint getEastAsianWidth(JNIEnv* env, jobject obj, jchar input) argument
98 int width = u_getIntPropertyValue(input, UCHAR_EAST_ASIAN_WIDTH);
H A Dandroid_view_InputChannel.cpp24 #include <input/InputTransport.h>
107 ALOGW("Cannot set dispose callback because input channel object has not been initialized.");
135 message.appendFormat("Could not open input channel pair. status=%d", result);
182 "Other object already has a native input channel.");
196 "This object already has a native input channel.");
210 "Could not read input channel file descriptors from parcel.");
H A Dandroid_view_InputChannel.h22 #include <input/InputTransport.h>
33 * This is used to automatically dispose of other native objects in the input dispatcher
34 * and input queue to prevent memory leaks. */
H A Dandroid_view_InputDevice.cpp17 #include <input/Input.h>
H A Dandroid_view_InputDevice.h22 #include <input/InputDevice.h>
H A Dandroid_view_InputEventReceiver.cpp28 #include <input/InputTransport.h>
96 ALOGD("channel '%s' ~ Initializing input event receiver.", getInputChannelName());
112 ALOGD("channel '%s' ~ Disposing input event receiver.", getInputChannelName());
120 ALOGD("channel '%s' ~ Finished input event.", getInputChannelName());
159 // This error typically occurs when the publisher has closed the input channel
163 ALOGD("channel '%s' ~ Publisher closed input channel or an error occurred. "
196 message.appendFormat("Failed to finish input event. status=%d", status);
220 ALOGD("channel '%s' ~ Consuming input events, consumeBatches=%s, frameTime=%lld.",
254 ALOGD("channel '%s' ~ Dispatching batched input event pending notification.",
260 ALOGE("Exception dispatching batched input event
[all...]
H A Dandroid_view_InputEventSender.cpp28 #include <input/InputTransport.h>
87 ALOGD("channel '%s' ~ Initializing input event sender.", getInputChannelName());
104 ALOGD("channel '%s' ~ Disposing input event sender.", getInputChannelName());
158 // This error typically occurs when the consumer has closed the input channel
162 ALOGD("channel '%s' ~ Consumer closed input channel or an error occurred. "
256 message.appendFormat("Failed to initialize input event sender. status=%d", status);
H A Dandroid_view_InputQueue.cpp23 #include <android/input.h>
26 #include <input/Input.h>
190 ALOGW("Could not create native input dispatching pipe: %s", strerror(errno));
H A Dandroid_view_KeyCharacterMap.cpp19 #include <input/KeyCharacterMap.h>
20 #include <input/Input.h>
H A Dandroid_view_KeyCharacterMap.h22 #include <input/KeyCharacterMap.h>
H A Dandroid_view_KeyEvent.cpp24 #include <input/Input.h>
H A Dandroid_view_MotionEvent.cpp25 #include <input/Input.h>
H A Dandroid_view_VelocityTracker.cpp23 #include <input/Input.h>
24 #include <input/VelocityTracker.h>
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DWifiConfigurationHelper.java166 * @throws IllegalArgumentException if the input string was not valid JSON or if any mandatory
358 public static boolean isHex(String input, int length) { argument
359 if (input == null || length < 0) {
362 return input.matches(String.format("[0-9A-Fa-f]{%d}", length));
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java333 * @param pfd The input file to compare the size of
349 AutoCloseInputStream input = new ParcelFileDescriptor.AutoCloseInputStream(actual);
356 assertEquals(input.read(actualData), fileSize);
388 AutoCloseInputStream input = new ParcelFileDescriptor.AutoCloseInputStream(pfd);
396 while (((actualRead = input.read(actual)) != -1) &&
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java207 // no newline for an empty input array.
242 byte[] input = { (byte) 0x61, (byte) 0x62, (byte) 0x63 };
248 encoder.process(input, 0, 3, false);
252 encoder.process(input, 0, 3, false);
256 encoder.process(input, 0, 1, false);
260 encoder.process(input, 0, 1, false);
264 encoder.process(input, 0, 1, false);
268 encoder.process(input, 0, 2, false);
272 encoder.process(input, 0, 2, false);
276 encoder.process(input,
[all...]
/frameworks/base/core/tests/overlaytests/OverlayTest/src/com/android/overlaytest/
H A DOverlayBaseTest.java26 InputStream input = null;
28 input = mResources.openRawResource(resId);
30 while ((ch = input.read()) != -1) {
35 input.close();
220 InputStream input = null;
224 input = mResources.openRawResource(resId);
225 reader = new BufferedReader(new InputStreamReader(input));
231 if (input != null) {
232 input.close();

Completed in 937 milliseconds

<<1112131415161718