Searched defs:input (Results 126 - 138 of 138) sorted by path

123456

/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace.pb.cpp1716 ::google::protobuf::io::CodedInputStream* input) {
1719 while ((tag = input->ReadTag()) != 0) {
1728 input, &value)));
1735 if (input->ExpectTag(16)) goto parse_isArray;
1746 input, &isarray_)));
1751 if (input->ExpectTag(24)) goto parse_intValue;
1762 1, 24, input, this->mutable_intvalue())));
1768 input, this->mutable_intvalue())));
1772 if (input->ExpectTag(24)) goto parse_intValue;
1773 if (input
1715 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
2126 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
2375 MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) argument
[all...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DVirtualDisplaySurface.cpp415 const QueueBufferInput& input, QueueBufferOutput* output) {
417 return mSource[SOURCE_SINK]->queueBuffer(pslot, input, output);
431 result = mSource[SOURCE_SCRATCH]->queueBuffer(sslot, input, &scratchQBO);
460 input.deflate(&timestamp, &isAutoTimestamp, &crop, &scalingMode,
414 queueBuffer(int pslot, const QueueBufferInput& input, QueueBufferOutput* output) argument
/frameworks/native/services/surfaceflinger/
H A DMonitoredProducer.cpp82 status_t MonitoredProducer::queueBuffer(int slot, const QueueBufferInput& input, argument
84 return mProducer->queueBuffer(slot, input, output);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1378 // let's choose the selected or first entry if only the input text is NOT an email
1380 // new/unencountered email input
2365 private boolean isValidEmailAddress(String input) { argument
2366 return !TextUtils.isEmpty(input) && mValidator != null &&
2367 mValidator.isValid(input);
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp789 size_t input = 0; local
792 AudioRecord::getMinFrameCount(&input, sampleRate,
793 AUDIO_FORMAT_PCM_16_BIT, AUDIO_CHANNEL_IN_MONO) != NO_ERROR || input <= 0) {
797 ALOGD("reported frame count: output %d, input %d", output, input);
802 if (input < sampleCount * 2) {
803 input = sampleCount * 2;
805 ALOGD("adjusted frame count: output %d, input %d", output, input);
816 AUDIO_CHANNEL_IN_MONO, input, NUL
875 int16_t input[sampleCount]; local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java43 public void setInput(String input) { argument
44 mUsersInput = input;
H A DCommandParams.java174 GetInputParams(CommandDetails cmdDet, Input input) { argument
176 mInput = input;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java483 * such kind of input but must never output it unless the target is very specific
484 * to the device which is able to parse the malformed input.
655 * Guesses the format of input image. Currently just the first few bytes are used.
658 * @param input Image as byte array.
661 public static String guessImageType(final byte[] input) { argument
662 if (input == null) {
665 if (input.length >= 3 && input[0] == 'G' && input[1] == 'I' && input[
[all...]
/frameworks/rs/
H A DrsProgram.cpp58 uint32_t input = 0; local
63 mInputElements[input].set(reinterpret_cast<Element *>(params[ct+1]));
64 mHal.state.inputElements[input++] = reinterpret_cast<Element *>(params[ct+1]);
H A Drsg_generator.c652 FILE* input = fopen(rsgFile, "r"); local
654 char choice = fgetc(input);
655 fclose(input);
/frameworks/rs/tests/cppbasic-getpointer/
H A Dcompute.cpp44 uint32_t *input = (uint32_t*)ain->getPointer(&inputStride); local
47 printf("Input pointer: %p\n", input);
57 input[i * inputStride + j] = rand();
78 if (input[i * inputStride + j] != ~(output[i * inputStride + j])) {
/frameworks/support/v4/java/android/support/v4/widget/
H A DBakedBezierInterpolator.java64 public float getInterpolation(float input) { argument
65 if (input >= 1.0f) {
69 if (input <= 0f) {
74 (int)(input * (VALUES.length - 1)),
78 float difference = input - quantized;
H A DMaterialProgressDrawable.java700 public float getInterpolation(float input) { argument
701 return super.getInterpolation(Math.max(0, (input - 0.5f) * 2.0f));
710 public float getInterpolation(float input) { argument
711 return super.getInterpolation(Math.min(1, input * 2.0f));

Completed in 202 milliseconds

123456