Searched refs:source (Results 201 - 225 of 489) sorted by last modified time

1234567891011>>

/haiku/src/add-ons/translators/icns/
H A DICNSTranslator.cpp156 ICNSTranslator::DerivedTranslate(BPositionIO *source, argument
170 result = identify_bits_header(source, NULL, &bitsHeader);
180 ICNSSaver icnsFile(source, bitsHeader.rowBytes, type);
193 ICNSLoader icnsFile(source);
/haiku/src/apps/mail/
H A DAddressTextControl.cpp83 virtual void EntryCreated(QueryList& source,
85 virtual void EntryRemoved(QueryList& source,
464 AddressPopUpMenu::EntryCreated(QueryList& source, argument
472 AddressPopUpMenu::EntryRemoved(QueryList& source, argument
/haiku/src/kits/translation/
H A DTranslatorRoster.cpp717 BTranslatorRoster::Private::Identify(BPositionIO* source, argument
735 off_t pos = source->Seek(0, SEEK_SET);
747 if (translator.Identify(source, format, &extension, &info, wantType)
771 BTranslatorRoster::Private::GetTranslators(BPositionIO* source, argument
790 off_t pos = source->Seek(0, SEEK_SET);
803 if (translator.Identify(source, format, ioExtension, &info, wantType)
931 Tests if the hints provided for a source stream are compatible to
1360 to convert the data from \a source.
1362 \param source the data to be identified
1365 \param hintType a hint about the type of data that is in \a source, se
1376 Identify(BPositionIO* source, BMessage* ioExtension, translator_info* _info, uint32 hintType, const char* hintMIME, uint32 wantType) argument
1412 GetTranslators(BPositionIO* source, BMessage* ioExtension, translator_info** _info, int32* _numInfo, uint32 hintType, const char* hintMIME, uint32 wantType) argument
1563 Translate(BPositionIO* source, const translator_info* info, BMessage* ioExtension, BPositionIO* destination, uint32 wantOutType, uint32 hintType, const char* hintMIME) argument
[all...]
/haiku/src/kits/locale/
H A DTimeZone.cpp82 BTimeZone& BTimeZone::operator=(const BTimeZone& source) argument
85 fICUTimeZone = source.fICUTimeZone == NULL
87 : source.fICUTimeZone->clone();
88 fICULocale = source.fICULocale == NULL
90 : source.fICULocale->clone();
91 fInitStatus = source.fInitStatus;
92 fInitializedFields = source.fInitializedFields;
93 fZoneID = source.fZoneID;
94 fName = source.fName;
95 fDaylightSavingName = source
[all...]
H A DLanguage.cpp214 BLanguage::operator=(const BLanguage& source) argument
216 if (&source != this) {
219 fICULocale = source.fICULocale != NULL
220 ? source.fICULocale->clone()
222 fDirection = source.fDirection;
H A DCollator.cpp92 BCollator& BCollator::operator=(const BCollator& source) argument
94 if (&source != this) {
97 fICUCollator = source.fICUCollator != NULL
98 ? source.fICUCollator->clone()
100 fIgnorePunctuation = source.fIgnorePunctuation;
/haiku/src/add-ons/translators/stxt/
H A DSTXTTranslator.cpp224 identify_text(uint8* data, int32 bytesRead, BPositionIO* source, argument
227 ssize_t readLater = source->Read(data + bytesRead, DATA_BUFFER_SIZE - bytesRead);
477 translate_from_text(BPositionIO* source, BString encoding, bool forceEncoding, argument
484 off_t size = source->Seek(0, SEEK_END);
490 status_t status = source->Seek(0, SEEK_SET);
525 BNode* node = dynamic_cast<BNode*>(source);
574 bytesRead = source->Read(buffer, READ_BUFFER_SIZE);
642 // and source is a BNode object
739 STXTTranslator::Translate(BPositionIO* source, const translator_info* info, argument
753 ssize_t bytesRead = source
[all...]
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DMultiAudioNode.h100 const media_source& source,
113 media_format* format, media_source* source,
117 const media_source& source,
130 const media_source& source,
216 node_output* _FindOutput(media_source source);
/haiku/headers/private/interface/
H A DPicturePlayer.h50 void (*draw_pixels)(void* userData, const BRect& source,
/haiku/headers/posix/arpa/
H A Dinet.h23 char* inet_net_ntop(int family, const void* source, int bits,
27 char* inet_neta(u_long source, char* dest, size_t destSize);
31 const char* inet_ntop(int family, const void* source, char* dest,
36 char* inet_nsap_ntoa(int sourceLength, const u_char* source,
/haiku/src/apps/screenshot/
H A DScreenshotWindow.cpp310 void* source = NULL; local
311 if (message->FindPointer("source", &source) == B_OK)
312 fLastSelectedPath = static_cast<BMenuItem*> (source);
/haiku/src/system/kernel/vm/
H A DVMAnonymousNoSwapCache.h42 virtual void MergeStore(VMCache* source);
/haiku/src/apps/serialconnect/
H A DXModem.cpp32 XModemSender::XModemSender(BDataIO* source, BSerialPort* sink, BHandler* listener) argument
33 : fSource(source),
42 BPositionIO* pos = dynamic_cast<BPositionIO*>(source);
/haiku/src/add-ons/translators/raw/
H A DRAW.cpp2131 /*! Construct a decode tree according the specification in *source.
2135 For example, if the source is
2157 DCRaw::_MakeDecoder(const uchar* source, int level)
2172 i += source[next++];
2178 _MakeDecoder(source, level + 1);
2180 _MakeDecoder(source, level + 1);
2182 current->leaf = source[16 + fDecodeLeaf++];
2185 return (uchar*)source + 16 + fDecodeLeaf;
/haiku/src/libs/print/libprint/
H A DGraphicsDriver.cpp509 GraphicsDriver::_RotateInto(BBitmap* target, const BBitmap* source) argument
512 ASSERT(source->ColorSpace() == B_RGB32);
513 ASSERT(target->Bounds().IntegerWidth() == source->Bounds().IntegerHeight());
514 ASSERT(target->Bounds().IntegerHeight() == source->Bounds().IntegerWidth());
516 const int32 width = source->Bounds().IntegerWidth() + 1;
517 const int32 height = source->Bounds().IntegerHeight() + 1;
519 const int32 sourceBPR = source->BytesPerRow();
523 reinterpret_cast<const uint8_t*>(source->Bits());
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageFamilySyntaxHighlightInfo.h25 LineDataSource* source,
/haiku/headers/private/media/experimental/
H A DMediaClientDefs.h85 media_source source; member in struct:BPrivate::media::media_connection
/haiku/src/system/boot/loader/net/
H A DEthernet.cpp148 header.source = fInterface->MACAddress();
/haiku/src/system/kernel/debug/
H A Dtracing.cpp1605 alloc_tracing_buffer_memcpy(const void* source, size_t size, bool user)
1607 if (user && !IS_USER_ADDRESS(source))
1615 if (user_memcpy(buffer, source, size) != B_OK)
1618 memcpy(buffer, source, size);
1625 alloc_tracing_buffer_strcpy(const char* source, size_t maxSize, bool user)
1627 if (source == NULL || maxSize == 0)
1630 if (user && !IS_USER_ADDRESS(source))
1633 // limit maxSize to the actual source string len
1635 ssize_t size = user_strlcpy(NULL, source, 0);
1641 maxSize = strnlen(source, maxSiz
[all...]
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPJob.cpp459 const unsigned char* source = local
471 source += sourcePixelsToSkip * kSourceBytesPerPixel;
485 target[0] = source[2];
486 target[1] = source[1];
487 target[2] = source[0];
489 source += kSourceBytesPerPixel;
/haiku/src/servers/media/
H A DNodeManager.cpp13 * * Redistributions of source code must retain the above copyright notice,
537 if (outIterator->source.port == port) {
1250 // source of the node, users, etc.
1276 B_PRId32 ", source-port %" B_PRId32 ", source-id %" B_PRId32
1278 "\"%s\"\n", input.node.node, input.node.port, input.source.port,
1279 input.source.id, input.destination.port, input.destination.id,
1289 B_PRId32 ", source-port %" B_PRId32 ", source-id %" B_PRId32
1292 output.source
[all...]
/haiku/src/servers/app/drawing/Painter/bitmap_painter/
H A DDrawBitmapGeneric.h68 source_type source(pixf_img);
99 span_gen_type spanGenerator(source, interpolator);
115 span_gen_type spanGenerator(source, interpolator);
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js746 var source = new Uint8Array(this.bitsLength);
747 remoteMessage.dataView.readInto(source);
749 imageData.data[i * 4 + 0] = source[i];
750 imageData.data[i * 4 + 1] = source[i];
751 imageData.data[i * 4 + 2] = source[i];
757 var source = new Uint8Array(this.bitsLength);
758 remoteMessage.dataView.readInto(source);
760 var value = (source[Math.floor(i / 8)] >> i % 8) & 1 ? 255 : 0;
1036 this.drawingMode = 'source-over';
1212 this.drawingMode = 'source
[all...]
/haiku/src/kits/mail/
H A Dmail_util.cpp294 // state contains the number of source bytes to skip, left over from a
595 const char *source = *bufp; local
599 while (source < bufEnd) {
606 while (source + wordEnd < bufEnd && isspace (source[wordEnd]))
609 if (source + wordEnd < bufEnd &&
610 strchr (specialChars, source[wordEnd]) != NULL) {
618 while (source + wordEnd < bufEnd) {
619 if (isspace(source[wordEnd]) ||
620 strchr (specialChars, source[wordEn
[all...]
/haiku/src/tests/system/libroot/posix/
H A Dwcs_test.cpp805 const wchar_t* source = L""; local
807 wchar_t* result = wcscpy(destination, source);
810 "expected %p\n", source, result, destination);
815 "expected 0\n", source, errno);
820 "wcslen(destination)=%lu, expected 0\n", source,
826 "destination[0]=%x, expected %x\n", source, destination[0],
832 "destination[1]=%x, expected %x\n", source, destination[1],
839 const wchar_t* source = L"test"; local
841 wchar_t* result = wcscpy(destination, source);
844 "expected %p\n", source, resul
897 const wchar_t* source = L"t\\xE4st"; local
955 const wchar_t* source = L"te\\x00st"; local
1001 const wchar_t* source = L"t\\xE4st"; local
1023 const wchar_t* source = L"t\\xE4st"; local
1057 const wchar_t* source = L"t\\xE4st"; local
1103 const wchar_t* source = L"t\\xE4st"; local
1197 const wchar_t* source = L""; local
1231 const wchar_t* source = L"test"; local
1289 const wchar_t* source = L"t\\xE4st"; local
1347 const wchar_t* source = L"te\\x00st"; local
1393 const wchar_t* source = L"t\\xE4st"; local
1415 const wchar_t* source = L"t\\xE4st"; local
1449 const wchar_t* source = L"t\\xE4st"; local
1495 const wchar_t* source = L"t\\xE4st"; local
1593 const wchar_t* source = L""; local
1625 const wchar_t* source = L"test"; local
1677 const wchar_t* source = L"t\\xE4st"; local
1749 const wchar_t* source = L"te\\x00st"; local
1832 const wchar_t* source = L" other text"; local
1860 const wchar_t* source = L" other text"; local
1888 const wchar_t* source = L" other text"; local
1937 const wchar_t* source = L""; local
1966 const wchar_t* source = L""; local
1999 const wchar_t* source = L"test"; local
2042 const wchar_t* source = L"st"; local
2090 const wchar_t* source = L"t"; local
2143 const wchar_t* source = L"t\\xE4st"; local
2238 const wchar_t* source = L""; local
2268 const wchar_t* source = L""; local
2303 const wchar_t* source = L"test"; local
2350 const wchar_t* source = L"test"; local
3576 const wchar_t* source = L""; local
3594 const wchar_t* source = L""; local
3613 const wchar_t* source = L"t��stdata \\0with some char��cters"; local
3644 const wchar_t* source = L""; local
3662 const wchar_t* source = L""; local
3681 const wchar_t* source = L"t��stdata \\0with some char��cters"; local
3712 const wchar_t* source = L""; local
3730 const wchar_t* source = L""; local
3749 const wchar_t* source = L"t��stdata \\0with some char��cters"; local
3763 const wchar_t* source = L"t��stdata \\0with some char��cters"; local
3796 wchar_t source = L'\\0'; local
3814 wchar_t source = L'M'; local
3838 wchar_t source = L'M'; local
[all...]

Completed in 273 milliseconds

1234567891011>>