Searched refs:textSize (Results 1 - 14 of 14) sorted by relevance

/haiku/src/kits/debugger/model/
H A DImageInfo.cpp36 image_type type, target_addr_t textBase, target_size_t textSize,
44 fTextSize(textSize),
53 image_type type, target_addr_t textBase, target_size_t textSize,
61 fTextSize = textSize;
35 ImageInfo(team_id team, image_id image, const BString& name, image_type type, target_addr_t textBase, target_size_t textSize, target_addr_t dataBase, target_size_t dataSize) argument
52 SetTo(team_id team, image_id image, const BString& name, image_type type, target_addr_t textBase, target_size_t textSize, target_addr_t dataBase, target_size_t dataSize) argument
/haiku/headers/private/debugger/model/
H A DImageInfo.h21 target_size_t textSize,
28 target_size_t textSize,
/haiku/src/apps/activitymonitor/
H A DSystemInfoHandler.cpp218 ssize_t textSize;
219 if (data->FindData("text/plain", B_MIME_TYPE, &text, &textSize) >= B_OK)
220 fClipboardTextSize = textSize;
/haiku/src/preferences/keymap/
H A DKeyboardLayoutView.h81 size_t textSize);
84 size_t textSize);
86 size_t textSize, key_kind& keyKind);
H A DKeyboardLayoutView.cpp976 KeyboardLayoutView::_FunctionKeyLabel(uint32 code, char* text, size_t textSize) argument
979 snprintf(text, textSize, "F%" B_PRId32, code + 1 - B_F1_KEY);
989 const Key* key, char* text, size_t textSize)
1000 strlcpy(text, special, textSize);
1010 strlcpy(text, special, textSize);
1018 KeyboardLayoutView::_GetKeyLabel(const Key* key, char* text, size_t textSize, argument
1027 strlcpy(text, special, textSize);
1032 if (_FunctionKeyLabel(key->code, text, textSize)) {
1043 strlcpy(text, special, textSize);
1048 strlcpy(text, special, textSize);
988 _GetAbbreviatedKeyLabelIfNeeded(BView* view, BRect rect, const Key* key, char* text, size_t textSize) argument
[all...]
/haiku/src/apps/charactermap/
H A DCharacterView.h40 size_t textSize);
42 size_t textSize);
H A DCharacterView.cpp172 CharacterView::UnicodeToUTF8(uint32 c, char* text, size_t textSize) argument
174 if (textSize < 5) {
175 if (textSize > 0)
203 CharacterView::UnicodeToUTF8Hex(uint32 c, char* text, size_t textSize) argument
206 snprintf(text, textSize, "\\x00");
214 for (int32 i = 0; character[i] && size < (int)textSize; i++) {
215 size += snprintf(text + size, textSize - size, "\\x%02x",
/haiku/headers/private/kernel/
H A Delf.h53 size_t textSize, addr_t data, size_t dataSize);
/haiku/src/kits/debug/
H A DImage.cpp206 size_t textSize; local
209 status_t error = _LoadFile(info.name, &textAddress, &textSize, &dataAddress,
226 size_t textSize; local
229 status_t error = _LoadFile(path, &textAddress, &textSize, &dataAddress,
246 fInfo.text_size = textSize;
/haiku/src/kits/debugger/elf/
H A DCoreFile.h87 uint64 textBase, uint64 textSize,
H A DCoreFile.cpp69 uint64 termRoutine, uint64 textBase, uint64 textSize, int64 textDelta,
79 fTextSize(textSize),
589 uint64 textSize = Get(entry.ni_text_size); local
618 initRoutine, termRoutine, textBase, textSize, textDelta, dataBase,
68 CoreFileImageInfo(int32 id, int32 type, uint64 initRoutine, uint64 termRoutine, uint64 textBase, uint64 textSize, int64 textDelta, uint64 dataBase, uint64 dataSize, int32 deviceId, int64 nodeId, uint64 symbolTable, uint64 symbolHash, uint64 stringTable, CoreFileAreaInfo* textArea, CoreFileAreaInfo* dataArea, const BString& name) argument
/haiku/src/add-ons/translators/rtf/
H A Dconvert.cpp526 size_t textSize = 0; local
532 textSize = counter.Length();
558 textHeader.header.data_size = textSize;
594 styleHeader.apply_length = textSize;
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp2361 // BSize textSize(fTextView->MinSize());
2362 // return BSize(BLayoutUtils::AddDistances(markerSize.width, textSize.width),
2363 // std::max(markerSize.height, textSize.height));
2372 // BSize textSize(fTextView->MaxSize());
2373 // return BSize(BLayoutUtils::AddDistances(markerSize.width, textSize.width),
2374 // std::min(markerSize.height, textSize.height));
2383 BSize textSize(fTextView->PreferredSize());
2384 return BSize(BLayoutUtils::AddDistances(markerSize.width, textSize.width),
2385 std::max(markerSize.height, textSize.height));
/haiku/src/system/kernel/
H A Delf.cpp2481 elf_create_memory_image(const char* imageName, addr_t text, size_t textSize, argument
2515 image->text_region.size = textSize;

Completed in 90 milliseconds