Searched defs:output (Results 1 - 25 of 36) sorted by relevance

12

/frameworks/base/opengl/tools/glgen/stubs/gles11/
H A DglGetString.cpp9 jstring output = _env->NewStringUTF(chars); local
10 return output;
/frameworks/base/opengl/tools/glgen/stubs/jsr239/
H A DglGetString.cpp9 jstring output = _env->NewStringUTF(chars); local
10 return output;
/frameworks/base/awt/javax/imageio/spi/
H A DImageOutputStreamSpi.java38 * The output class.
57 * the output class.
65 * Gets an output Class object that represents the class or interface that
66 * must be implemented by an output source.
68 * @return the output class.
100 * output object should be an instance of the class returned by
104 * @param output
105 * the output Object.
110 public ImageOutputStream createOutputStreamInstance(Object output) throws IOException { argument
111 return createOutputStreamInstance(output, tru
130 createOutputStreamInstance(Object output, boolean useCache, File cacheDir) argument
[all...]
/frameworks/base/awt/org/apache/harmony/x/imageio/spi/
H A DFileIOSSpi.java40 public ImageOutputStream createOutputStreamInstance(Object output, boolean useCache, argument
42 if (output instanceof File) {
43 return new FileImageOutputStream((File) output);
45 throw new IllegalArgumentException("output is not instance of File");
H A DOutputStreamIOSSpi.java40 public ImageOutputStream createOutputStreamInstance(Object output, boolean useCache, File cacheDir) throws IOException { argument
41 if (output instanceof OutputStream) {
43 return new FileCacheImageOutputStream((OutputStream) output, cacheDir);
45 return new MemoryCacheImageOutputStream((OutputStream) output);
H A DRAFIOSSpi.java41 public ImageOutputStream createOutputStreamInstance(Object output, boolean useCache, argument
43 if (output instanceof RandomAccessFile) {
44 return new FileImageOutputStream((RandomAccessFile) output);
46 throw new IllegalArgumentException("output is not instance of java.io.RandomAccessFile");
/frameworks/base/core/java/android/widget/
H A DAbsoluteLayout.java212 public String debug(String output) { argument
213 return output + "Absolute.LayoutParams={width="
H A DLinearLayout.java1443 public String debug(String output) { argument
1444 return output + "LinearLayout.LayoutParams={width=" + sizeToString(width) +
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java201 * Helper function that writes an ETC1Texture to an output stream formatted as a PKM file.
203 * @param output the stream to write the formatted texture data to.
206 public static void writeTexture(ETC1Texture texture, OutputStream output) throws IOException { argument
216 output.write(ioBuffer, 0, ETC1.ETC_PKM_HEADER_SIZE);
221 output.write(ioBuffer, 0, chunkSize);
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpost_filter.cpp34 uint8 *output)
54 oscl_memcpy(output, decodedFrame, size);
55 oscl_memcpy(output + size, decodedFrame + size, (size >> 2));
56 oscl_memcpy(output + size + (size >> 2), decodedFrame + size + (size >> 2), (size >> 2));
75 CombinedHorzVertRingFilter(output, width, height, QP_store, 0, pp_mod);
83 CombinedHorzVertFilter(output, width, height,
88 CombinedHorzVertFilter_NoSoftDeblocking(output, width, height,
94 Deringing_Luma(output, width, height, QP_store,
103 output += size;
107 CombinedHorzVertRingFilter(output, (in
31 PostFilter( VideoDecData *video, int filter_type, uint8 *output) argument
[all...]
/frameworks/base/awt/javax/imageio/
H A DImageIO.java140 * Object should obtain the output source such as File, or OutputStream.
142 * @param output
143 * the output Object such as File, or OutputStream.
148 public static ImageOutputStream createImageOutputStream(Object output) throws IOException { argument
149 if (output == null) {
150 throw new IllegalArgumentException("output destination cannot be NULL");
158 if (spi.getOutputClass().isInstance(output)) {
160 return spi.createOutputStreamInstance(output);
495 * @param output
501 public static boolean write(RenderedImage im, String formatName, ImageOutputStream output) argument
541 write(RenderedImage im, String formatName, File output) argument
572 write(RenderedImage im, String formatName, OutputStream output) argument
[all...]
H A DImageWriter.java70 * The output.
72 protected Object output; field in class:ImageWriter
243 * Sets the specified Object to the output of this ImageWriter.
245 * @param output
249 public void setOutput(Object output) { argument
250 if (output != null) {
256 if (element.isInstance(output)) {
262 throw new IllegalArgumentException("output " + output + " is not supported");
266 this.output
[all...]
/frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
H A DJPEGImageWriter.java251 public void setOutput(Object output) { argument
252 super.setOutput(output);
253 ios = (ImageOutputStream) output;
283 * Sets image output stream in IJG layer
/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...]
H A DEventLog.java187 * @param output container to add events into
190 public static native void readEvents(int[] tags, Collection<Event> output) argument
/frameworks/base/libs/rs/
H A DrsProgram.cpp81 uint32_t output = 0; local
88 mOutputElements[output++].set(reinterpret_cast<Element *>(params[ct+1]));
/frameworks/base/media/java/android/media/
H A DExifInterface.java276 public boolean getLatLong(float output[]) { argument
283 output[0] = convertRationalLatLonToFloat(latValue, latRef);
284 output[1] = convertRationalLatLonToFloat(lngValue, lngRef);
/frameworks/base/media/libmedia/
H A DIAudioPolicyService.cpp140 virtual status_t startOutput(audio_io_handle_t output, AudioSystem::stream_type stream) argument
144 data.writeInt32(output);
150 virtual status_t stopOutput(audio_io_handle_t output, AudioSystem::stream_type stream) argument
154 data.writeInt32(output);
160 virtual void releaseOutput(audio_io_handle_t output) argument
164 data.writeInt32(output);
310 audio_io_handle_t output = getOutput(stream, local
315 reply->writeInt32(static_cast <int>(output));
321 audio_io_handle_t output = static_cast <audio_io_handle_t>(data.readInt32()); local
323 reply->writeInt32(static_cast <uint32_t>(startOutput(output, (AudioSyste
329 audio_io_handle_t output = static_cast <audio_io_handle_t>(data.readInt32()); local
337 audio_io_handle_t output = static_cast <audio_io_handle_t>(data.readInt32()); local
[all...]
H A DAudioTrack.cpp168 audio_io_handle_t output = AudioSystem::getOutput((AudioSystem::stream_type)streamType, local
171 if (output == 0) {
172 LOGE("Could not get audio output for stream type %d", streamType);
217 frameCount, flags, sharedBuffer, output);
455 // Resampler implementation limits input sampling rate to 2 x output sampling rate.
610 audio_io_handle_t output)
627 output,
602 createTrack( int streamType, uint32_t sampleRate, int format, int channelCount, int frameCount, uint32_t flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output) argument
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Davcdec_api.cpp527 /* 3.3 Put the decoded picture in output buffers */
573 /* 3.3 Put the decoded picture in output buffers */
680 /* 3.3 Put the decoded picture in output buffers */
722 OSCL_EXPORT_REF AVCDec_Status PVAVCDecGetOutput(AVCHandle *avcHandle, int *indx, int *release, AVCFrameIO *output) argument
818 /* Check for Mem_mgmt_operation_5 based forced output */
877 output->YCbCr[0] = oldestFrame->frame.Sl;
878 output->YCbCr[1] = oldestFrame->frame.Scb;
879 output->YCbCr[2] = oldestFrame->frame.Scr;
880 output->height = oldestFrame->frame.height;
881 output
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java288 Log.v(TAG, "output format " + outFormat);
332 //Write the ps output to the file
333 public void getMemoryWriteToLog(Writer output, int writeCount) { argument
338 output.write("Start memory : " + mStartMemory + "\n");
341 output.write(memusage);
344 output.write("End Memory :" + mEndMemory + "\n");
392 public boolean validateMemoryResult(int startPid, int startMemory, Writer output, int limit) argument
401 output.write("The total diff = " + memDiff);
402 output.write("\n\n");
405 output
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java189 BackupDataOutput output) {
197 output.writeEntityHeader(key, data.length);
198 output.writeEntityData(data, data.length);
188 writeIfChanged(long oldChecksum, String key, byte[] data, BackupDataOutput output) argument
/frameworks/base/core/java/android/text/
H A DHtml.java88 Editable output, XMLReader xmlReader);
279 // Don't output the dummy character underlying the image.
87 handleTag(boolean opening, String tag, Editable output, XMLReader xmlReader) argument
/frameworks/base/libs/audioflinger/
H A DAudioMixer.cpp268 void AudioMixer::process(void* output) argument
270 mState.hook(&mState, output);
274 void AudioMixer::process__validate(state_t* state, void* output) argument
372 state->hook(state, output);
627 void AudioMixer::process__nop(state_t* state, void* output) argument
629 // this assumes output 16 bits stereo, no resampling
630 memset(output, 0, state->frameCount*4);
648 void AudioMixer::process__genericNoResampling(state_t* state, void* output) argument
669 // this assumes output 16 bits stereo, no resampling
670 int32_t* out = static_cast<int32_t*>(output);
720 process__genericResampling(state_t* state, void* output) argument
763 process__OneTrack16BitsStereoNoResampling(state_t* state, void* output) argument
819 process__TwoTracks16BitsStereoNoResampling(state_t* state, void* output) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManager.java1081 public String debug(String output) { argument
1082 output += "Contents of " + this + ":";
1083 Log.d("Debug", output);
1084 output = super.debug("");
1085 Log.d("Debug", output);

Completed in 424 milliseconds

12