Searched refs:input (Results 326 - 350 of 431) sorted by relevance

<<1112131415161718

/frameworks/base/core/jni/
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_KeyEvent.cpp24 #include <input/Input.h>
/frameworks/base/libs/input/
H A DPointerController.h26 #include <input/Input.h>
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.h60 // - tex_sampler_<n>: The n'th input texture. For instance, use tex_sampler_0
61 // for the first input texture. Must be a uniform sampler2D.
64 // If more input textures are given than the shader can handle, this will result
71 // A default vertex shader is used, which renders the input texture to a
72 // rectangular region of the output texture. You can modify the input and
95 // Process the given input frames and write the result to the output frame.
102 bool Process(const std::vector<const GLTextureHandle*>& input,
120 // input to the output. Note that transformations may be applied to achieve
131 // Set the program to read from a subregion of the input frame, given by
133 // normalized between 0.0 and 1.0. If this region exceeds the input fram
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java25 import android.hardware.input.InputManager;
/frameworks/native/include/gui/
H A DIGraphicBufferProducer.h271 // In addition, the input must be described by the client (as documented
382 virtual status_t queueBuffer(int slot, const QueueBufferInput& input,
/frameworks/native/include/input/
H A DKeyCharacterMap.h26 #include <input/Input.h>
H A DVelocityTracker.h20 #include <input/Input.h>
/frameworks/native/libs/gui/
H A DIGraphicBufferProducer.cpp199 const QueueBufferInput& input, QueueBufferOutput* output) {
203 data.write(input);
537 QueueBufferInput input(data);
542 status_t result = queueBuffer(buf, input, output);
198 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
/frameworks/native/services/inputflinger/host/
H A DInputDriver.h25 #include <hardware/input.h>
/frameworks/native/services/inputflinger/tests/
H A DInputDispatcher_test.cpp20 #include <linux/input.h>
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java982 Input input = mCurrntCmd.geInput();
983 if (!input.yesNo) {
988 input.ucs2, input.packed);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/tools/aapt2/compile/
H A DPng.cpp81 std::istream* input = reinterpret_cast<std::istream*>(png_get_io_ptr(readPtr)); local
82 if (!input->read(reinterpret_cast<char*>(data), length)) {
1193 bool Png::process(const Source& source, std::istream* input, BigBuffer* outBuffer, argument
1198 if (!input->read(reinterpret_cast<char*>(signature), kPngSignatureSize)) {
1231 png_set_read_fn(readPtr, (png_voidp) input, readDataFromStream);
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java930 private ByteBuffer toByteBuffer(int byteCount, Buffer input) { argument
933 if (input instanceof ByteBuffer) {
934 ByteBuffer input2 = (ByteBuffer) input;
944 } else if (input instanceof CharBuffer) {
945 CharBuffer input2 = (CharBuffer) input;
956 } else if (input instanceof ShortBuffer) {
957 ShortBuffer input2 = (ShortBuffer) input;
968 } else if (input instanceof IntBuffer) {
969 IntBuffer input2 = (IntBuffer) input;
980 } else if (input instanceo
[all...]
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java17 package com.android.server.input;
55 import android.hardware.input.IInputDevicesChangedListener;
56 import android.hardware.input.IInputManager;
57 import android.hardware.input.InputDeviceIdentifier;
58 import android.hardware.input.InputManager;
59 import android.hardware.input.InputManagerInternal;
60 import android.hardware.input.ITabletModeChangedListener;
61 import android.hardware.input.KeyboardLayout;
62 import android.hardware.input.TouchCalibration;
123 private static final String EXCLUDED_DEVICES_PATH = "etc/excluded-input
[all...]
H A DPersistentDataStore.java17 package com.android.server.input;
30 import android.hardware.input.TouchCalibration;
58 * Manages persistent state recorded by the input manager service as an XML file.
63 * &lt;input-mananger-state>
64 * &lt;input-devices>
65 * &lt;input-device descriptor="xxxxx" keyboard-layout="yyyyy" />
66 * &gt;input-devices>
67 * &gt;/input-manager-state>
85 mAtomicFile = new AtomicFile(new File("/data/system/input-manager-state.xml"));
246 Slog.w(InputManagerService.TAG, "Failed to load input manage
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java249 public float getInterpolation(float input) {
251 if (input < RECENTS_THUMBNAIL_FADEIN_FRACTION) {
254 float t = (input - RECENTS_THUMBNAIL_FADEIN_FRACTION) /
261 public float getInterpolation(float input) {
263 if (input < RECENTS_THUMBNAIL_FADEOUT_FRACTION) {
264 float t = input / RECENTS_THUMBNAIL_FADEOUT_FRACTION;
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1145 * @return A locally acceptable formatting of the input, or the raw input if
2143 * @return the input string, with alpha letters converted to numeric
2145 * an input of "1-800-GOOG-411" will return "1-800-4664-411".
2147 public static String convertKeypadLettersToDigits(String input) { argument
2148 if (input == null) {
2149 return input;
2151 int len = input.length();
2153 return input;
2156 char[] out = input
[all...]
/frameworks/av/services/audioflinger/
H A DPatchPanel.cpp260 // open input stream with source device audio properties if provided or
278 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; local
280 &input,
386 // create patch from source device to record thread input
414 // use a pseudo LCM between input and output framecount
/frameworks/base/core/java/android/widget/
H A DDatePickerSpinnerDelegate.java606 TextView input = (TextView) spinner.findViewById(com.android.internal.R.id.numberpicker_input);
607 input.setImeOptions(imeOptions);
638 // changed the value via the IME and there is a next input the IME will
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedStateListDrawable.java711 public float getInterpolation(float input) { argument
712 final int elapsed = (int) (input * mTotalDuration + 0.5f);
/frameworks/base/keystore/java/android/security/
H A DKeyStore.java494 public OperationResult update(IBinder token, KeymasterArguments arguments, byte[] input) { argument
496 return mBinder.update(token, arguments, input);
/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
H A DXMLParser.java40 public XMLParser(TokenStream input) { argument
41 super(input);

Completed in 2550 milliseconds

<<1112131415161718