Searched refs:output (Results 1 - 25 of 181) sorted by relevance

12345678

/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
H A DMultipartTest.java60 StringBuffer output = new StringBuffer();
62 output.append("--");
63 output.append(boundry);
64 output.append(CRLF);
66 output.append("Content-Disposition: form-data; name=\"stringpart\"");
67 output.append(CRLF);
68 output.append("Content-Type: text/plain; charset=US-ASCII");
69 output.append(CRLF);
70 output.append("Content-Transfer-Encoding: 8bit");
71 output
[all...]
/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py42 output = ' ';
46 output += '+ "'
48 output += '"('
50 output += '+ "|'
53 output += '('
56 output += '?:'
61 output += '|'
65 output += '\\\\' # escape the '-' character.
66 output += letter
69 output
[all...]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DAdditionalTextOutput.java52 StringBuilder output = getStringBuilderForType(OutputType.EXCEEDED_DB_QUOTA_MESSAGE);
70 output.append("UI DELEGATE DATABASE CALLBACK: ");
71 output.append("exceededDatabaseQuotaForSecurityOrigin:{");
72 output.append(protocol + ", " + host + ", " + port + "} ");
73 output.append("database:" + databaseIdentifier + "\n");
77 StringBuilder output = getStringBuilderForType(OutputType.CONSOLE_MESSAGE);
79 output.append("CONSOLE MESSAGE: line " + consoleMessage.lineNumber());
80 output.append(": " + consoleMessage.message() + "\n");
84 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG);
86 output
[all...]
/frameworks/base/core/java/android/util/
H A DBase64.java35 * of the output (if any).
40 * Encoder flag bit to omit all line terminators (i.e., the output
62 * should not close the output stream it is wrapping when it
72 public byte[] output; field in class:Base64.Coder
76 * Encode/decode another block of input data. this.output is
83 * include any final bytes in the output.
111 * @param flags controls certain features of the decoded output.
129 * @param flags controls certain features of the decoded output.
149 * @param flags controls certain features of the decoded output.
164 // Maybe we got lucky and allocated exactly enough output spac
241 Decoder(int flags, byte[] output) argument
581 Encoder(int flags, byte[] output) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaPlayerStressTest.java69 private void writeTestOutput(String filename, Writer output) throws Exception{ argument
70 output.write("File Name: " + filename);
71 output.write(" Complete: " + CodecTest.onCompleteSuccess);
72 output.write(" Error: " + CodecTest.mPlaybackError);
73 output.write(" Unknown Info: " + CodecTest.mMediaInfoUnknownCount);
74 output.write(" Track Lagging: " + CodecTest.mMediaInfoVideoTrackLaggingCount);
75 output.write(" Bad Interleaving: " + CodecTest.mMediaInfoBadInterleavingCount);
76 output.write(" Not Seekable: " + CodecTest.mMediaInfoNotSeekableCount);
77 output.write(" Info Meta data update: " + CodecTest.mMediaInfoMetdataUpdateCount);
78 output
81 writeTestSummary(Writer output) argument
[all...]
H A DMediaRecorderStressTest.java155 Writer output = new BufferedWriter(new FileWriter(stressOutFile, true));
156 output.write("Camera start preview stress:\n");
157 output.write("Total number of loops:" +
161 output.write("No of loop: ");
176 output.write(" ," + i);
182 output.write("\n\n");
183 output.close();
193 Writer output = new BufferedWriter(new FileWriter(stressOutFile, true));
194 output.write("H263 video record- reset after prepare Stress test\n");
195 output
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgram.java27 public abstract void process(Frame[] inputs, Frame output); argument
29 public void process(Frame input, Frame output) { argument
32 process(inputs, output);
/frameworks/base/media/mca/filterpacks/native/imageproc/
H A Dinvert.c22 char* output,
33 // Get the input and output pointers
35 char* output_ptr = output;
19 invert_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
H A Dto_rgba.c22 char* output,
33 // Get the input and output pointers
35 char* output_ptr = output;
53 char* output,
64 // Get the input and output pointers
66 char* output_ptr = output;
85 char* output,
96 // Get the input and output pointers
98 char* output_ptr = output;
117 char* output,
19 gray_to_rgb_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
50 rgba_to_rgb_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
82 gray_to_rgba_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
114 rgb_to_rgba_process(const char** inputs, const int* input_sizes, int input_count, char* output, int output_size, void* user_data) argument
[all...]
/frameworks/native/libs/gui/
H A DLayerState.cpp24 status_t layer_state_t::write(Parcel& output) const
29 err = output.writeInt32(len);
32 void* buf = output.writeInplace(len);
41 err = output.write(this, size);
62 status_t ComposerState::write(Parcel& output) const {
63 output.writeStrongBinder(client->asBinder());
64 return state.write(output);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
H A DStringSource.java51 Frame output = env.getFrameManager().newFrame(mOutputFormat);
52 output.setObjectValue(mString);
53 output.setTimestamp(Frame.TIMESTAMP_UNKNOWN);
54 pushOutput("string", output);
H A DToUpperCase.java49 Frame output = env.getFrameManager().newFrame(mOutputFormat);
50 output.setObjectValue(inputString.toUpperCase());
52 pushOutput("uppercase", output);
/frameworks/native/libs/utils/tests/
H A DUnicode_test.cpp41 << "Zero length input should return zero length output.";
97 char16_t output[1 + 1 + 1 + 2 + 1]; // Room for NULL local
99 utf8_to_utf16(str, sizeof(str), output);
101 EXPECT_EQ(0x0030, output[0])
103 EXPECT_EQ(0x0100, output[1])
105 EXPECT_EQ(0x2323, output[2])
107 EXPECT_EQ(0xD800, output[3])
109 EXPECT_EQ(0xDC00, output[4])
111 EXPECT_EQ(NULL, output[5])
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameFetch.java53 Frame output = context.fetchFrame(mKey);
54 if (output != null) {
55 pushOutput("frame", output);
H A DInputStreamSource.java84 Frame output = context.getFrameManager().newFrame(mOutputFormat);
85 output.setData(byteBuffer);
87 // Push output
88 pushOutput("data", output);
91 output.release();
93 // Close output port as we are done here
/frameworks/native/services/surfaceflinger/
H A DSurfaceTextureLayer.cpp37 status_t SurfaceTextureLayer::connect(int api, QueueBufferOutput* output) { argument
38 status_t err = BufferQueue::connect(api, output);
H A DSurfaceTextureLayer.h40 virtual status_t connect(int api, QueueBufferOutput* output);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
H A DSinWaveFilter.java58 Frame output = env.getFrameManager().newFrame(mOutputFormat);
59 output.setObjectValue(((float)Math.sin(mValue) + 1.0f) / 2.0f);
60 pushOutput("value", output);
62 output.release();
/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
133 * @param output the allocation to write date into
144 rs_allocation output, const void * usrData,
151 rs_allocation output, const void * usrData);
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
162 * @param output the allocation to write date into
173 rsForEach(rs_script script, rs_allocation input, rs_allocation output,
179 rsForEach(rs_script script, rs_allocation input, rs_allocation output,
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DDrawOverlayFilter.java79 // Create output frame with copy of input
80 Frame output = env.getFrameManager().newFrame(sourceFrame.getFormat());
81 output.setDataFromFrame(sourceFrame);
83 // Draw onto output
84 mProgram.process(overlayFrame, output);
86 // Push output
87 pushOutput("image", output);
90 output.release();
H A DColorTemperatureFilter.java105 // Create output frame
106 Frame output = context.getFrameManager().newFrame(inputFormat);
109 mProgram.process(input, output);
111 // Push output
112 pushOutput("image", output);
115 output.release();
H A DCrossProcessFilter.java117 // Create output frame
118 Frame output = context.getFrameManager().newFrame(inputFormat);
121 mProgram.process(input, output);
123 // Push output
124 pushOutput("image", output);
127 output.release();
H A DNegativeFilter.java85 // Create output frame
86 Frame output = context.getFrameManager().newFrame(inputFormat);
94 mProgram.process(input, output);
96 // Push output
97 pushOutput("image", output);
100 output.release();
H A DPosterizeFilter.java88 // Create output frame
89 Frame output = context.getFrameManager().newFrame(inputFormat);
97 mProgram.process(input, output);
99 // Push output
100 pushOutput("image", output);
103 output.release();
/frameworks/av/include/media/
H A DIAudioFlinger.h67 audio_io_handle_t output,
86 virtual uint32_t sampleRate(audio_io_handle_t output) const = 0;
87 virtual int channelCount(audio_io_handle_t output) const = 0;
88 virtual audio_format_t format(audio_io_handle_t output) const = 0;
89 virtual size_t frameCount(audio_io_handle_t output) const = 0;
92 virtual uint32_t latency(audio_io_handle_t output) const = 0;
107 audio_io_handle_t output) = 0;
111 audio_io_handle_t output) const = 0;
125 // register a current process for audio output change notifications
140 virtual status_t closeOutput(audio_io_handle_t output)
[all...]

Completed in 1104 milliseconds

12345678