Searched refs:input (Results 51 - 75 of 224) sorted by relevance

123456789

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameBranch.java53 // Get input frame
54 Frame input = pullInput("in");
58 pushOutput("out" + i, input);
H A DCallbackFilter.java87 final Frame input = pullInput("frame");
90 input.retain();
91 CallbackRunnable uiRunnable = new CallbackRunnable(mListener, this, input, mUserData);
96 mListener.onFrameReceived(this, input, mUserData);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
H A DToUpperCase.java46 Frame input = pullInput("mixedcase");
47 String inputString = (String)input.getObjectValue();
/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dfixunstfdi.c11 uint64_t __fixunstfdi(long double input) argument
13 const DD x = { .ld = input };
18 /* If (1.0 - tiny) <= input < 0x1.0p64: */
/frameworks/compile/libbcc/runtime/test/Unit/ppc/
H A Dfloatditf_test.c18 computed.ld = __floatditf(tests[i].input);
22 printf("Error on __floatunditf( 0x%016llx ):\n", tests[i].input);
H A Dfloatunditf_test.c18 computed.ld = __floatunditf(tests[i].input);
22 printf("Error on __floatunditf( 0x%016llx ):\n", tests[i].input);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterFunction.java112 public void setInputFrame(String input, Frame frame) { argument
113 mFilter.setInputFrame(input, frame);
116 public void setInputValue(String input, Object value) { argument
117 mFilter.setInputValue(input, value);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DToRGBAFilter.java86 // Get input frame
87 Frame input = pullInput("image");
88 createProgram(context, input.getFormat());
91 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat()));
94 mProgram.process(input, output);
H A DToRGBFilter.java86 // Get input frame
87 Frame input = pullInput("image");
88 createProgram(context, input.getFormat());
91 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat()));
94 mProgram.process(input, output);
H A DColorTemperatureFilter.java95 // Get input frame
96 Frame input = pullInput("image");
97 FrameFormat inputFormat = input.getFormat();
109 mProgram.process(input, output);
H A DCrossProcessFilter.java108 // Get input frame
109 Frame input = pullInput("image");
110 FrameFormat inputFormat = input.getFormat();
121 mProgram.process(input, output);
H A DNegativeFilter.java81 // Get input frame
82 Frame input = pullInput("image");
83 FrameFormat inputFormat = input.getFormat();
94 mProgram.process(input, output);
H A DPosterizeFilter.java84 // Get input frame
85 Frame input = pullInput("image");
86 FrameFormat inputFormat = input.getFormat();
97 mProgram.process(input, output);
H A DSepiaFilter.java82 // Get input frame
83 Frame input = pullInput("image");
84 FrameFormat inputFormat = input.getFormat();
96 mProgram.process(input, output);
H A DSimpleImageFilter.java70 // Get input frame
71 Frame input = pullInput("image");
72 FrameFormat inputFormat = input.getFormat();
81 mProgram.process(input, output);
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputApplicationHandle.h20 #include <input/InputApplication.h>
H A Dcom_android_server_input_InputWindowHandle.h20 #include <input/InputWindow.h>
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
H A DThroughputFilter.java49 // Add input ports
72 // Pass through input frame
73 Frame input = pullInput("frame");
74 pushOutput("frame", input);
88 FrameFormat inputFormat = input.getFormat();
/frameworks/base/tests/CoreTests/android/core/
H A DSha1Test.java28 private String input; field in class:Sha1Test.TestData
32 input = i;
49 digest.update(mTestData[i].input.getBytes());
/frameworks/base/core/java/android/bluetooth/
H A DHeadsetBase.java114 protected void handleInput(String input) { argument
127 AtCommandResult result = mAtParser.process(input);
128 if (DBG) Log.d(TAG, "Processing " + input + " took " +
132 Log.i(TAG, "Error processing <" + input + ">");
161 String input = readNative(500);
162 if (input != null) {
163 handleInput(input);
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.cpp317 void NativeWindowRenderer::render(RenderInput* input) { argument
318 sp<SurfaceTexture> ST = input->mST;
319 sp<SurfaceTextureClient> STC = input->mSTC;
321 if (input->mIsExternalBuffer) {
322 queueExternalBuffer(STC.get(), input->mBuffer,
323 input->mWidth, input->mHeight);
325 queueInternalBuffer(STC.get(), input->mBuffer);
332 calculatePositionCoordinates(input->mRenderingMode,
333 input
543 RenderInput* input = new RenderInput(this, mNextTextureId); local
554 destroyRenderInput(RenderInput* input) argument
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupHelperDispatcher.java105 public void performRestore(BackupDataInput input, int appVersionCode, argument
110 BackupDataInputStream stream = new BackupDataInputStream(input);
111 while (input.readNextHeader()) {
113 String rawKey = input.getKey();
119 stream.dataSize = input.getDataSize();
134 input.skipEntityData(); // In case they didn't consume the data.
/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DCommandParams.java159 Input input = null; field in class:GetInputParams
161 GetInputParams(CommandDetails cmdDet, Input input) { argument
163 this.input = input;
167 if (icon != null && input != null) {
168 input.icon = icon;
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java223 // Opens the notification dialog and waits for user input
236 // notification and takes user input
287 * @param input a 7-bit packed char array
290 static String decodeGSMPackedString(byte[] input) argument
293 int lengthBytes = input.length;
303 if ((input[lengthBytes - 1] >> 1) == PADDING_CHAR) {
309 decoded = GsmAlphabet.gsm7BitPackedToString(input, 0, lengthSeptets);
320 static String decodeUTF8String(byte[] input) argument
324 decoded = new String(input, "UTF-8");
333 static String decodeUCS2String(byte[] input) argument
[all...]
/frameworks/av/libvideoeditor/vss/common/inc/
H A DVideoEditorResampler.h29 void LVAudioresample_LowQuality(M4OSA_Int16* out, M4OSA_Int16* input,

Completed in 393 milliseconds

123456789