Searched refs:input (Results 101 - 125 of 278) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/content/pm/
H A DSignature.java70 final byte[] input = text.getBytes();
71 final int N = input.length;
81 final int hi = parseHexDigit(input[i++]);
82 final int lo = parseHexDigit(input[i++]);
/frameworks/base/core/tests/overlaytests/OverlayTest/src/com/android/overlaytest/
H A DOverlayBaseTest.java18 InputStream input = null;
20 input = mResources.openRawResource(resId);
22 while ((ch = input.read()) != -1) {
27 input.close();
/frameworks/base/services/java/com/android/server/input/
H A DInputWindowHandle.java17 package com.android.server.input;
23 * Functions as a handle for a window that can receive input.
24 * Enables the native input dispatcher to refer indirectly to the window manager's window state.
28 // Pointer to the native input window handle.
33 // The input application handle.
39 // The input channel associated with the window.
88 // Window input features.
91 // Display this input is on.
/frameworks/native/include/input/
H A DVirtualKeyMap.h22 #include <input/Input.h>
H A DInputDevice.h20 #include <input/Input.h>
21 #include <input/KeyCharacterMap.h>
42 // A composite input device descriptor string that uniquely identifies the device
44 // upper layers of the input system to associate settings with individual devices.
52 * Describes the characteristics and capabilities of an input device.
128 /* Types of input device configuration files. */
136 * Gets the path of an input device configuration file, if one is available.
149 * Gets the path of an input device configuration file, if one is available.
/frameworks/base/media/java/android/media/
H A DMediaDrm.java567 byte[] keyId, byte[] input, byte[] iv);
570 byte[] keyId, byte[] input, byte[] iv);
619 * @param input the data to encrypt
622 public byte[] encrypt(byte[] keyid, byte[] input, byte[] iv) { argument
623 return encryptNative(mDrm, mSessionId, keyid, input, iv);
630 * @param input the data to encrypt
633 public byte[] decrypt(byte[] keyid, byte[] input, byte[] iv) { argument
634 return decryptNative(mDrm, mSessionId, keyid, input, iv);
566 encryptNative(MediaDrm drm, byte[] sessionId, byte[] keyId, byte[] input, byte[] iv) argument
569 decryptNative(MediaDrm drm, byte[] sessionId, byte[] keyId, byte[] input, byte[] iv) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace.pb.cpp1334 ::google::protobuf::io::CodedInputStream* input) {
1337 while ((tag = input->ReadTag()) != 0) {
1346 input, &value)));
1353 if (input->ExpectTag(16)) goto parse_isArray;
1364 input, &isarray_)));
1369 if (input->ExpectTag(24)) goto parse_intValue;
1380 1, 24, input, this->mutable_intvalue())));
1386 input, this->mutable_intvalue())));
1390 if (input->ExpectTag(24)) goto parse_intValue;
1391 if (input
1333 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
1744 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
1993 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParamsFactory.java393 Input input = new Input();
399 input.text = ValueParser.retrieveTextString(ctlv);
412 input.duration = ValueParser.retrieveDuration(ctlv);
415 input.minLen = 1;
416 input.maxLen = 1;
418 input.digitOnly = (cmdDet.commandQualifier & 0x01) == 0;
419 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
420 input.yesNo = (cmdDet.commandQualifier & 0x04) != 0;
421 input.helpAvailable = (cmdDet.commandQualifier & 0x80) != 0;
422 input
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java119 // Add input port - will accept anything that's 4-channel.
221 // Get input frame
222 Frame input = pullInput("frame");
226 (float)input.getFormat().getWidth() / input.getFormat().getHeight();
238 int target = input.getFormat().getTarget();
240 gpuFrame = context.getFrameManager().duplicateFrameToTarget(input,
244 gpuFrame = input;
253 glEnv.setSurfaceTimestamp(input.getTimestamp());
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardWidgetCarousel.java209 public float getInterpolation(float input) {
210 return mInternal.getInterpolation(Math.min(mFactor * input, 1f));
218 public float getInterpolation(float input) {
219 input -= (1 - 1 / mFactor);
220 input = mFactor * Math.max(input, 0f);
221 return mInternal.getInterpolation(input);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DCpuVideoTrackDecoder.java130 * Copy the input data to the output data applying the specified rotation.
132 * @param input The input image data
136 private void copyRotate(ByteBuffer input, ByteBuffer output, int rotation) { argument
164 PixelUtils.copyPixels(input, output, mWidth, mHeight, offset, pixStride, rowStride);
230 ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) {
233 ColorSpace.convertArgb8888ToRgba8888(input, output, width, height);
236 ColorSpace.convertYuv420pToRgba8888(input, output, width, height);
229 convertImage( ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) argument
/frameworks/native/libs/input/
H A DKeyboard.cpp23 #include <input/Keyboard.h>
24 #include <input/KeycodeLabels.h>
25 #include <input/KeyLayoutMap.h>
26 #include <input/KeyCharacterMap.h>
27 #include <input/InputDevice.h>
/frameworks/av/include/media/
H A DIAudioPolicyService.h70 virtual status_t startInput(audio_io_handle_t input) = 0;
71 virtual status_t stopInput(audio_io_handle_t input) = 0;
72 virtual void releaseInput(audio_io_handle_t input) = 0;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DFisheyeFilter.java108 // Get input frame
109 Frame input = pullInput("image");
110 FrameFormat inputFormat = input.getFormat();
126 mProgram.process(input, output);
H A DGrainFilter.java158 // Get input frame
159 Frame input = pullInput("image");
160 FrameFormat inputFormat = input.getFormat();
188 Frame[] inputs = {input, noiseFrame};
H A DRedEyeFilter.java117 // Get input frame
118 Frame input = pullInput("image");
119 FrameFormat inputFormat = input.getFormat();
137 Frame[] inputs = {input, mRedEyeFrame};
H A DRotateFilter.java91 // Get input frame
92 Frame input = pullInput("image");
93 FrameFormat inputFormat = input.getFormat();
117 mProgram.process(input, output);
H A DStraightenFilter.java92 // Get input frame
93 Frame input = pullInput("image");
94 FrameFormat inputFormat = input.getFormat();
111 mProgram.process(input, output);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c288 * Description: Clips the input between MAX and MIN value
324 * Description: Clips the input between MAX and MIN value
368 * [in] shift Divides the input "v" by "2^shift"
716 * Returns the result of rounded right shift operation of input by the scalefactor
718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
721 * [in] input The input to be operated on
730 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
732 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c288 * Description: Clips the input between MAX and MIN value
324 * Description: Clips the input between MAX and MIN value
368 * [in] shift Divides the input "v" by "2^shift"
716 * Returns the result of rounded right shift operation of input by the scalefactor
718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
721 * [in] input The input to be operated on
730 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
732 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c288 * Description: Clips the input between MAX and MIN value
324 * Description: Clips the input between MAX and MIN value
368 * [in] shift Divides the input "v" by "2^shift"
716 * Returns the result of rounded right shift operation of input by the scalefactor
718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
721 * [in] input The input to be operated on
730 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
732 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.h35 // The input to NativeWindowRenderer is provided by the RenderInput class,
58 void destroyRenderInput(RenderInput* input);
75 void render(RenderInput* input);
/frameworks/base/services/java/com/android/server/wm/
H A DFakeWindowImpl.java19 import com.android.server.input.InputApplicationHandle;
20 import com.android.server.input.InputWindowHandle;
/frameworks/base/core/java/android/hardware/input/
H A DKeyboardLayout.java17 package android.hardware.input;
/frameworks/base/include/android_runtime/
H A Dandroid_view_InputQueue.h20 #include <input/Input.h>

Completed in 2703 milliseconds

1234567891011>>