Searched refs:source (Results 226 - 250 of 606) sorted by relevance

1234567891011>>

/haiku-fatelf/src/kits/media/
H A DSoundPlayNode.h59 const media_source& source,
76 const media_source& source,
91 const media_source& source,
95 virtual void LatencyChanged(const media_source& source,
H A DMediaFile.cpp33 BMediaFile::BMediaFile(BDataIO* source) argument
37 _InitReader(source);
50 BMediaFile::BMediaFile(BDataIO* source, int32 flags) argument
54 _InitReader(source, flags);
440 BMediaFile::_InitReader(BDataIO* source, int32 flags) argument
444 if (source == NULL) {
449 fSource = source;
451 if (BFile* file = dynamic_cast<BFile*>(source)) {
457 if (dynamic_cast<BBufferIO *>(source)) {
461 if (dynamic_cast<BPositionIO *>(source)) {
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/include/gutenprint/
H A Darray.h72 * Both dest and source must be valid arrays previously created with
75 * @param source the source array.
77 extern void stp_array_copy(stp_array_t *dest, const stp_array_t *source);
81 * dest will be created, and then the contents of source will be
84 * @param array the source array.
H A Dsequence.h67 * Both dest and source must be valid sequences previously created
70 * @param source the source sequence.
73 const stp_sequence_t *source);
77 * A new sequence will be created, and then the contents of source will
80 * @param sequence the source sequence.
87 * Both dest and source must be valid sequences previously created
90 * @param source the source sequence.
93 const stp_sequence_t *source);
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/AuthLib/
H A Dmd5.h16 2. Altered source versions must be plainly marked as such, and must not be
18 3. This notice may not be removed or altered from any source distribution.
75 _IMPEXP_BESURE void md5EncodeString(const char *source, char *dest);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/MyNetwork/
H A DLoginPanel.h58 void safeStringCopy(char *dest, const char *source, int destSize);
H A Dmd5.h16 2. Altered source versions must be plainly marked as such, and must not be
18 3. This notice may not be removed or altered from any source distribution.
75 _IMPEXP_BESURE void md5EncodeString(const char *source, char *dest);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/mounthost/
H A DLoginPanel.h63 void safeStringCopy(char *dest, const char *source, int destSize);
H A Dmd5.h16 2. Altered source versions must be plainly marked as such, and must not be
18 3. This notice may not be removed or altered from any source distribution.
75 _IMPEXP_BESURE void md5EncodeString(const char *source, char *dest);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/transport/
H A DLoginPanel.h63 void safeStringCopy(char *dest, const char *source, int destSize);
H A Dmd5.h16 2. Altered source versions must be plainly marked as such, and must not be
18 3. This notice may not be removed or altered from any source distribution.
75 _IMPEXP_BESURE void md5EncodeString(const char *source, char *dest);
/haiku-fatelf/src/add-ons/translators/icns/
H A DICNSTranslator.cpp158 ICNSTranslator::DerivedTranslate(BPositionIO *source, argument
172 result = identify_bits_header(source, NULL, &bitsHeader);
182 ICNSSaver icnsFile(source, bitsHeader.rowBytes, type);
195 ICNSLoader icnsFile(source);
/haiku-fatelf/headers/os/translation/
H A DTranslator.h30 virtual status_t Identify(BPositionIO* source,
34 virtual status_t Translate(BPositionIO* source,
/haiku-fatelf/src/add-ons/media/media-add-ons/dvb/
H A DDVBMediaNode.h78 virtual status_t FormatProposal(const media_source &source,
80 virtual status_t FormatChangeRequested(const media_source &source,
96 virtual void Connect(status_t error, const media_source &source,
106 virtual void AdditionalBufferRequested(const media_source & source,
109 virtual void LatencyChanged(const media_source & source,
139 status_t SetOutput(const media_source &source, const media_destination &destination, const media_format &format);
140 status_t ResetOutput(const media_source &source);
141 const char * SourceDefaultName(const media_source &source);
/haiku-fatelf/src/add-ons/opengl/swrast/
H A DMesaSoftwareRenderer.h39 virtual status_t CopyPixelsOut(BPoint source, BBitmap* dest);
40 virtual status_t CopyPixelsIn(BBitmap* source, BPoint dest);
/haiku-fatelf/src/add-ons/translators/pcx/
H A DPCXTranslator.cpp120 PCXTranslator::DerivedTranslate(BPositionIO *source, argument
138 status_t status = identify_bits_header(source, NULL, &bitsHeader);
142 return PCX::convert_bits_to_pcx(ioExtension, *source, bitsHeader, *target);
147 // source is NOT in bits format
151 return PCX::convert_pcx_to_bits(ioExtension, *source, *target);
/haiku-fatelf/src/apps/aboutsystem/
H A DUtilities.h72 PackageCredit& SetSources(const char* source,...);
73 PackageCredit& SetSource(const char* source);
/haiku-fatelf/src/apps/icon-o-matic/import_export/flat_icon/
H A DSourceExporter.cpp44 return "text/x-source-code";
51 SourceExporter::_Export(const uint8* source, size_t sourceSize, argument
66 const uint8* b = source;
/haiku-fatelf/src/tests/add-ons/translators/exif/
H A Ddump_exif.cpp27 BMemoryIO source(data + 8, length - 8);
29 status_t status = convert_exif_to_message(source, exif);
/haiku-fatelf/src/tests/kits/net/DialUpPreflet/
H A DInterfaceUtils.cpp62 AddAddonsToMenu(const BMessage *source, BMenu *menu, const char *type, uint32 what) argument
65 for(int32 index = 0; source->FindPointer(type, index,
/haiku-fatelf/src/tests/kits/net/preflet/DialUpAddOn/
H A DInterfaceUtils.cpp78 AddAddonsToMenu(const BMessage *source, BMenu *menu, const char *type, uint32 what) argument
81 for(int32 index = 0; source->FindPointer(type, index,
/haiku-fatelf/src/add-ons/media/media-add-ons/video_mixer/
H A DVideoMixerNode.cpp56 fOutput.source.port = ControlPort();
57 fOutput.source.id = 0;
105 input->source = media_source::null;
112 VideoMixerNode::GetInput(const media_source &source) { argument
117 if ((*each)->source == source) {
/haiku-fatelf/src/add-ons/translators/gif/
H A DGIFTranslator.cpp48 bool DetermineType(BPositionIO *source, bool *is_gif);
88 DetermineType(BPositionIO *source, bool *is_gif) argument
92 if (source->Read(header, 6) != 6) return false;
101 source->Seek(5 * 4 - 2, SEEK_CUR);
103 if (source->Read(&cs, 4) != 4) return false;
109 source->Seek(0, SEEK_SET);
/haiku-fatelf/src/apps/3dmov/
H A DViewObject.cpp228 The client takes ownership of the create media source.
317 ARGUMENTS: source
321 void ViewObject :: UpdateFrame(MediaSource *source) argument
324 glBindTexture(GL_TEXTURE_2D, source->mTextureID);
325 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, source->mTextureWidth, source->mTextureHeight,
326 source->mTextureFormat, GL_UNSIGNED_BYTE, source->mVideo->GetBitmap()->Bits());
/haiku-fatelf/src/kits/locale/
H A DCollator.cpp94 BCollator& BCollator::operator=(const BCollator& source) argument
96 if (&source != this) {
99 fICUCollator = source.fICUCollator != NULL
100 ? source.fICUCollator->clone()
102 fDefaultStrength = source.fDefaultStrength;
103 fIgnorePunctuation = source.fIgnorePunctuation;

Completed in 275 milliseconds

1234567891011>>