Searched refs:input (Results 1 - 25 of 229) sorted by last modified time

12345678910

/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DInteractionController.java26 import android.hardware.input.InputManager;
52 * are coordinates of the touch events and text for the text input events.
53 * The InteractionController performs no synchronization. It will fire touch and text input events
/frameworks/support/renderscript/v8/rs_support/
H A Drsg_generator.c609 FILE* input = fopen(rsgFile, "r"); local
611 char choice = fgetc(input);
612 fclose(input);
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_core.rsh126 * Make a script to script call to launch work. One of the input or output is
127 * required to be a valid object. The input and output must be of the same
132 * @param input The allocation to source data from
143 rsForEach(rs_script script, rs_allocation input,
150 rsForEach(rs_script script, rs_allocation input,
155 * Make a script to script call to launch work. One of the input or output is
156 * required to be a valid object. The input and output must be of the same
161 * @param input The allocation to source data from
173 rsForEach(rs_script script, rs_allocation input, rs_allocation output,
179 rsForEach(rs_script script, rs_allocation input, rs_allocatio
[all...]
/frameworks/rs/
H A DrsProgram.cpp56 uint32_t input = 0; local
61 mInputElements[input].set(reinterpret_cast<Element *>(params[ct+1]));
62 mHal.state.inputElements[input++] = reinterpret_cast<Element *>(params[ct+1]);
H A Drsg_generator.c609 FILE* input = fopen(rsgFile, "r"); local
611 char choice = fgetc(input);
612 fclose(input);
/frameworks/rs/scriptc/
H A Drs_core.rsh126 * Make a script to script call to launch work. One of the input or output is
127 * required to be a valid object. The input and output must be of the same
132 * @param input The allocation to source data from
143 rsForEach(rs_script script, rs_allocation input,
150 rsForEach(rs_script script, rs_allocation input,
155 * Make a script to script call to launch work. One of the input or output is
156 * required to be a valid object. The input and output must be of the same
161 * @param input The allocation to source data from
173 rsForEach(rs_script script, rs_allocation input, rs_allocation output,
179 rsForEach(rs_script script, rs_allocation input, rs_allocatio
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java486 * such kind of input but must never output it unless the target is very specific
487 * to the device which is able to parse the malformed input.
658 * Guesses the format of input image. Currently just the first few bytes are used.
661 * @param input Image as byte array.
664 public static String guessImageType(final byte[] input) { argument
665 if (input == null) {
668 if (input.length >= 3 && input[0] == 'G' && input[1] == 'I' && input[
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatCmdMessage.java70 mInput = ((GetInputParams) cmdParams).input;
H A DCatResponseMessage.java39 public void setInput(String input) { argument
40 this.usersInput = input;
H A DCatService.java732 Input input = mCurrntCmd.geInput();
733 if (!input.yesNo) {
738 input.ucs2, input.packed);
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;
H A DCommandParamsFactory.java385 Input input = new Input();
391 input.text = ValueParser.retrieveTextString(ctlv);
404 input.duration = ValueParser.retrieveDuration(ctlv);
407 input.minLen = 1;
408 input.maxLen = 1;
410 input.digitOnly = (cmdDet.commandQualifier & 0x01) == 0;
411 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
412 input.yesNo = (cmdDet.commandQualifier & 0x04) != 0;
413 input.helpAvailable = (cmdDet.commandQualifier & 0x80) != 0;
414 input
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsTest.java90 String input = "x@y.com,a@b.com";
91 addr = CdmaSmsAddress.parse(input);
97 assertEquals(new String(addr.origBytes), input);
/frameworks/compile/slang/lit-tests/
H A Drs-filecheck-wrapper.sh12 $FILECHECK -input-file $OUTDIR/$FILECHECK_INPUTFILE $SOURCEFILE
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DLearning_StochasticLinearRanker.java123 ByteArrayInputStream input = new ByteArrayInputStream(modelData);
124 ObjectInputStream objStream = new ObjectInputStream(input);
H A DPredictor.java78 * Augment input string with buildin features such as time, location
92 * Input is a sampleName e.g.action name. This input is then augmented with requested build-in
197 ByteArrayInputStream input = new ByteArrayInputStream(modelData);
198 ObjectInputStream objStream = new ObjectInputStream(input);
/frameworks/native/include/android/
H A Dnative_activity.h27 #include <android/input.h>
160 * for example, to pause a game when it loses input focus.
196 * The input queue for this native activity's window has been created.
197 * You can use the given input queue to start retrieving input events.
202 * The input queue for this native activity's window is being destroyed.
/frameworks/native/include/gui/
H A DBufferQueue.h140 const QueueBufferInput& input, QueueBufferOutput* output);
H A DISurfaceTexture.h149 const QueueBufferInput& input, QueueBufferOutput* output) = 0;
/frameworks/native/include/private/gui/
H A DLayerState.h65 status_t read(const Parcel& input);
95 status_t read(const Parcel& input);
123 status_t read(const Parcel& input);
/frameworks/native/libs/gui/
H A DBufferQueue.cpp481 const QueueBufferInput& input, QueueBufferOutput* output) {
491 input.deflate(&timestamp, &crop, &scalingMode, &transform, &fence);
480 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
H A DISurfaceTexture.cpp108 const QueueBufferInput& input, QueueBufferOutput* output) {
112 data.write(input);
233 QueueBufferInput input(data);
237 status_t result = queueBuffer(buf, input, output);
107 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
H A DLayerState.cpp39 status_t layer_state_t::read(const Parcel& input) argument
43 err = input.read(transparentRegion);
49 input.read(this, size);
58 status_t ComposerState::read(const Parcel& input) { argument
59 client = interface_cast<ISurfaceComposerClient>(input.readStrongBinder());
60 return state.read(input);
75 status_t DisplayState::read(const Parcel& input) { argument
76 token = input.readStrongBinder();
77 surface = interface_cast<ISurfaceTexture>(input.readStrongBinder());
78 what = input
[all...]
H A DSurfaceTextureClient.cpp300 ISurfaceTexture::QueueBufferInput input(timestamp, crop, mScalingMode,
302 status_t err = mSurfaceTexture->queueBuffer(i, input, &output);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace.pb.cpp1122 ::google::protobuf::io::CodedInputStream* input) {
1125 while ((tag = input->ReadTag()) != 0) {
1134 input, &value)));
1141 if (input->ExpectTag(16)) goto parse_isArray;
1152 input, &isarray_)));
1157 if (input->ExpectTag(24)) goto parse_intValue;
1168 1, 24, input, this->mutable_intvalue())));
1174 input, this->mutable_intvalue())));
1178 if (input->ExpectTag(24)) goto parse_intValue;
1179 if (input
1121 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
1492 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
1741 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
[all...]

Completed in 157 milliseconds

12345678910