Searched refs:input (Results 176 - 200 of 514) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/util/
H A DLocalLogTest.java70 void testcase(LocalLog logger, String[] input, String[] want) { argument
71 for (String l : input) {
/frameworks/base/services/core/java/com/android/server/wm/
H A DInputConsumerImpl.java23 import com.android.server.input.InputApplicationHandle;
24 import com.android.server.input.InputWindowHandle;
/frameworks/support/emoji/appcompat/src/android/support/text/emoji/widget/
H A DEmojiAppCompatEditText.java63 public void setKeyListener(android.text.method.KeyListener input) { argument
64 super.setKeyListener(getEmojiEditTextHelper().getKeyListener(input));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DFlingAnimationUtils.java319 public float getInterpolation(float input) { argument
320 float t = mCrossfader.getInterpolation(input);
321 return (1 - t) * mInterpolator1.getInterpolation(input)
322 + t * mInterpolator2.getInterpolation(input);
342 public float getInterpolation(float input) { argument
343 float time = input * mDurationSeconds;
/frameworks/base/core/java/android/text/format/
H A DTimeFormatter.java483 private static char brokenToLower(char input) { argument
484 if (input >= 'A' && input <= 'Z') {
485 return (char) (input - 'A' + 'a');
487 return input;
494 private static char brokenToUpper(char input) { argument
495 if (input >= 'a' && input <= 'z') {
496 return (char) (input - 'a' + 'A');
498 return input;
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreAuthenticatedAESCipherSpi.java357 public byte[] update(byte[] input, int inputOffset, int inputLength) argument
359 byte[] output = mDelegate.update(input, inputOffset, inputLength);
371 public byte[] doFinal(byte[] input, int inputOffset, int inputLength, argument
373 byte[] output = mDelegate.doFinal(input, inputOffset, inputLength, signature,
414 public OperationResult update(byte[] input) { argument
416 keymasterArgs.addBytes(KeymasterDefs.KM_TAG_ASSOCIATED_DATA, input);
427 input.length, // inputConsumed
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java109 // Add input port - will accept anything that's 4-channel.
211 // Get input frame
212 Frame input = pullInput("frame");
216 (float)input.getFormat().getWidth() / input.getFormat().getHeight();
228 int target = input.getFormat().getTarget();
230 gpuFrame = context.getFrameManager().duplicateFrameToTarget(input,
234 gpuFrame = input;
243 glEnv.setSurfaceTimestamp(input.getTimestamp());
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImpl.cpp274 audio_io_handle_t *input,
319 status = mAudioPolicyManager->getInputForAttr(attr, input, session, uid,
326 // enforce permission (if any) required for each type of input
346 LOG_ALWAYS_FATAL("getInputForAttr() encountered an invalid input type %d",
353 mAudioPolicyManager->releaseInput(*input, session);
360 // create audio pre processors according to input source
361 status_t status = audioPolicyEffects->addInputEffects(*input, attr->source, session);
363 ALOGW("Failed to add effects on input %d", *input);
369 status_t AudioPolicyService::startInput(audio_io_handle_t input, argument
273 getInputForAttr(const audio_attributes_t *attr, audio_io_handle_t *input, audio_session_t session, pid_t pid, uid_t uid, const audio_config_base_t *config, audio_input_flags_t flags, audio_port_handle_t selectedDeviceId, audio_port_handle_t *portId) argument
395 stopInput(audio_io_handle_t input, audio_session_t session) argument
406 releaseInput(audio_io_handle_t input, audio_session_t session) argument
[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();
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java60 * @param input Seekable file descriptor to read from.
68 public PdfEditor(@NonNull ParcelFileDescriptor input) throws IOException { argument
69 if (input == null) {
70 throw new NullPointerException("input cannot be null");
75 Libcore.os.lseek(input.getFileDescriptor(), 0, OsConstants.SEEK_SET);
76 size = Libcore.os.fstat(input.getFileDescriptor()).st_size;
81 mInput = input;
H A DPdfRenderer.java144 * @param input Seekable file descriptor to read from.
150 public PdfRenderer(@NonNull ParcelFileDescriptor input) throws IOException { argument
151 if (input == null) {
152 throw new NullPointerException("input cannot be null");
157 Libcore.os.lseek(input.getFileDescriptor(), 0, OsConstants.SEEK_SET);
158 size = Libcore.os.fstat(input.getFileDescriptor()).st_size;
163 mInput = input;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DCpuVideoTrackDecoder.java131 * Copy the input data to the output data applying the specified rotation.
133 * @param input The input image data
137 private void copyRotate(ByteBuffer input, ByteBuffer output, int rotation) { argument
165 PixelUtils.copyPixels(input, output, mWidth, mHeight, offset, pixStride, rowStride);
237 ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) {
240 ColorSpace.convertArgb8888ToRgba8888(input, output, width, height);
243 ColorSpace.convertYuv420pToRgba8888(input, output, width, height);
236 convertImage( ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) argument
/frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
H A DUsageStatsActivity.java95 final EditText input = new EditText(this);
96 input.setInputType(InputType.TYPE_CLASS_TEXT);
97 input.setHint("com.android.tests.usagestats");
98 builder.setView(input);
103 final String packageName = input.getText().toString().trim();
/frameworks/native/libs/input/
H A DKeyboard.cpp23 #include <input/Keyboard.h>
24 #include <input/InputEventLabels.h>
25 #include <input/KeyLayoutMap.h>
26 #include <input/KeyCharacterMap.h>
27 #include <input/InputDevice.h>
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DGrainFilter.java153 // Get input frame
154 Frame input = pullInput("image");
155 FrameFormat inputFormat = input.getFormat();
183 Frame[] inputs = {input, noiseFrame};
H A DRedEyeFilter.java112 // Get input frame
113 Frame input = pullInput("image");
114 FrameFormat inputFormat = input.getFormat();
132 Frame[] inputs = {input, mRedEyeFrame};
H A DRotateFilter.java86 // Get input frame
87 Frame input = pullInput("image");
88 FrameFormat inputFormat = input.getFormat();
112 mProgram.process(input, output);
H A DStraightenFilter.java87 // Get input frame
88 Frame input = pullInput("image");
89 FrameFormat inputFormat = input.getFormat();
106 mProgram.process(input, output);
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/perf/
H A DTimedStatement.java86 FileInputStream input = new FileInputStream(tmpFile);
89 input.read(readBuffer);
94 input.close();
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp238 Input* input = new Input(pInputSection, pPolicy); local
239 (*out)->append(input);
240 return std::make_pair(std::make_pair(*out, input), true);
246 Input* input = new Input(pInputSection, pPolicy); local
247 output->append(input);
249 return std::make_pair(std::make_pair(output, input), true);
274 Input* input = new Input(pInputDesc); local
275 (*out)->append(input);
276 return std::make_pair(std::make_pair(*out, input), true);
282 Input* input local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.cpp37 "multiple maps for an input");
41 // Add mapping to the input-to-exdata map.
56 Input* input = *it; local
57 exData->addInputMap(input, ARMInputExMap::create(*input));
65 // Scan the input and collect all related sections.
94 // Remove this tuple from the input exception map.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c303 * Description: Clips the input between MAX and MIN value
339 * Description: Clips the input between MAX and MIN value
383 * [in] shift Divides the input "v" by "2^shift"
731 * Returns the result of rounded right shift operation of input by the scalefactor
733 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
736 * [in] input The input to be operated on
745 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
747 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c303 * Description: Clips the input between MAX and MIN value
339 * Description: Clips the input between MAX and MIN value
383 * [in] shift Divides the input "v" by "2^shift"
731 * Returns the result of rounded right shift operation of input by the scalefactor
733 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
736 * [in] input The input to be operated on
745 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
747 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c303 * Description: Clips the input between MAX and MIN value
339 * Description: Clips the input between MAX and MIN value
383 * [in] shift Divides the input "v" by "2^shift"
731 * Returns the result of rounded right shift operation of input by the scalefactor
733 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
736 * [in] input The input to be operated on
745 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
747 input = armSatRoundLeftShift_S32(input,
[all...]
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterface.h32 // configuration of audio input and output streams.
140 // request an input appropriate for record from the supplied device with supplied parameters.
142 audio_io_handle_t *input,
150 // indicates to the audio policy manager that the input starts being used.
151 virtual status_t startInput(audio_io_handle_t input,
154 // indicates to the audio policy manager that the input stops being used.
155 virtual status_t stopInput(audio_io_handle_t input,
157 // releases the input.
158 virtual void releaseInput(audio_io_handle_t input,
287 // Audio input Contro
[all...]

Completed in 6751 milliseconds

1234567891011>>