Searched refs:character (Results 1 - 25 of 42) sorted by last modified time

12

/haiku/src/apps/charactermap/
H A DCharacterView.cpp127 // boundary in the character view.
210 char character[16]; local
211 CharacterView::UnicodeToUTF8(c, character, sizeof(character));
214 for (int32 i = 0; character[i] && size < (int)textSize; i++) {
216 (uint8)character[i]);
228 uint32 character; local
229 if (message->FindInt32("character", (int32*)&character) != B_OK) {
233 character
378 uint32 character; local
430 uint32 character; local
551 char character[16]; local
612 _GetCharacterAt(BPoint point, uint32& character, BRect* _frame) const argument
741 _GetTopmostCharacter(uint32& character, int32& offset) const argument
[all...]
H A DCharacterWindow.cpp221 // Set minimum width for character pane to prevent UI
223 // use 'w' character for sizing as it's likely the widest
224 // character for a Latin font. 40 characters is a little
299 if (message->FindInt32("character", (int32*)&c) == B_OK) {
331 uint32 character; local
332 if (message->FindInt32("character", (int32*)&character) != B_OK)
336 CharacterView::UnicodeToUTF8(character, utf8, sizeof(utf8));
339 CharacterView::UnicodeToUTF8Hex(character, utf8Hex,
344 B_TRANSLATE("Code"), character, characte
[all...]
H A DCharacterView.h64 bool _GetCharacterAt(BPoint point, uint32& character,
68 bool _GetTopmostCharacter(uint32& character,
70 BRect _FrameFor(uint32 character) const;
H A DUnicodeBlocks.cpp113 {B_TRANSLATE("Optical character recognition"),
388 BlockForCharacter(const uint32 character) argument
398 if (start <= character && end >= character)
401 if (end < character) {
H A DUnicodeBlockView.cpp148 UnicodeBlockView::SelectBlockForCharacter(uint32 character) argument
150 // find block containing the character
151 int32 blockNumber = BlockForCharacter(character);
H A DUnicodeBlockView.h46 void SelectBlockForCharacter(uint32 character);
/haiku/src/kits/package/
H A DPackageInfoParser.cpp276 // a separator character -- this ends the string
406 throw ParseError("invalid character in pre-release string",
433 throw ParseError("invalid character in micro version string",
440 throw ParseError("invalid character in minor version string",
447 throw ParseError("invalid character in major version string",
466 throw ParseError("invalid character in resolvable name",
510 throw ParseError("invalid character in resolvable name",
609 throw ParseError("invalid character in resolvable name",
1003 throw ParseError("invalid character in package name",
/haiku/src/kits/interface/
H A DMenu.cpp3277 const char* nextCharacter, *character; local
3281 character = nextCharacter;
3284 character = nextCharacter;
3288 index = (int32)(character - title);
3294 character = nextCharacter;
3297 character = nextCharacter;
3301 index = (int32)(character - title);
H A DTextView.cpp774 // bail out if the character is not allowed
1890 // return the offset of the character preceding the newline
2473 BTextView::DisallowChar(uint32 character) argument
2477 if (!fDisallowedChars->HasItem(reinterpret_cast<void*>(character)))
2478 fDisallowedChars->AddItem(reinterpret_cast<void*>(character));
2483 BTextView::AllowChar(uint32 character) argument
2486 fDisallowedChars->RemoveItem(reinterpret_cast<void*>(character));
3612 // character in the buffer, otherwise get the starting
3613 // offset of the next line, and go to the previous character
3724 \param bytes The string or character associate
[all...]
/haiku/headers/os/interface/
H A DTextView.h197 void DisallowChar(uint32 character);
198 void AllowChar(uint32 character);
/haiku/headers/posix/
H A Dstring.h40 extern char *strchr(const char *string, int character);
41 extern char *strrchr(const char *string, int character);
45 extern char *strchrnul(const char *string, int character);
/haiku/src/apps/terminal/
H A DTerminalLine.h196 UTF8Char character; member in struct:TerminalCell
239 uint16 offset; // character offset
H A DTermView.cpp1137 // Draw character.
1171 UTF8Char character; local
1192 character, attr) == A_CHAR
1197 int32 bytes = UTF8Char::ByteCount(character.bytes[0]);
1198 memcpy(buffer, character.bytes, bytes);
1496 // If(x1, y1) Buffer is in string full width character,
3131 // illegal: character starts with utf-8 intermediate byte, skip it
3134 // single byte character/code, just feed that
H A DHistoryBuffer.cpp112 // copy character
115 cell.character.SetTo(chars + i, charLength);
122 if (cell.character.IsFullWidth()) {
148 byteLength += cell.character.ByteCount();
173 int32 charLength = cell.character.ByteCount();
174 memcpy(chars, cell.character.bytes, charLength);
H A DBasicTerminalBuffer.h93 UTF8Char& character,
114 // actually point to a character (as opposed
116 // character).
H A DBasicTerminalBuffer.cpp295 BasicTerminalBuffer::GetChar(int32 row, int32 column, UTF8Char& character, argument
310 character = cell.character;
358 int32 bytes = cell.character.ByteCount();
360 *buffer++ = cell.character.bytes[i];
426 int type = classifier->Classify(line->cells[x].character);
439 || classifier->Classify(line->cells[previousPos.x].character)
455 if (classifier->Classify(line->cells[nextPos.x].character) != type)
646 line->cells[fCursor.x].character = c;
681 line->cells[x].character
[all...]
/haiku/src/kits/tracker/
H A DCountView.cpp350 BCountView::AddFilterCharacter(const char* character) argument
352 fFilterString.AppendChars(character, 1);
H A DCountView.h67 void AddFilterCharacter(const char* character);
/haiku/src/bin/
H A Dleak_analyser.sh43 character.
/haiku/src/kits/network/libnetservices2/
H A DHttpBuffer.cpp197 for (const auto& character: data)
198 fBuffer.push_back(static_cast<const std::byte>(character));
/haiku/src/system/kernel/arch/arm64/
H A Darch_uart_linflex.cpp135 int character; local
143 // Wait until a character is received
165 character = In<uint8, vuint32>(&LinflexCell()->BDRM.R);
173 return character;
/haiku/src/kits/device/
H A DUSBDevice.cpp285 // Increase size of result as needed by source character.
286 const uint16 character = B_LENDIAN_TO_HOST_INT16(ustr[i]); local
288 if (character >= 0x80)
290 if (character >= 0x800)
/haiku/src/apps/bootmanager/
H A Dbootman.S642 ; al ... ASCII character
/haiku/src/add-ons/translators/gif/
H A DGIFSave.cpp228 // Terminating character
360 character = NextPixel(x);
362 if ((y = CheckHashtable(string_code, character)) != -1)
365 AddToHashtable(string_code, character);
394 string_code = character;
688 character = 0;
/haiku/src/system/libroot/posix/wchar/
H A Dbtowc.c13 char character = (char)c; local
23 int byteCount = __mbrtowc(&wc, &character, 1, &internalMbState);

Completed in 203 milliseconds

12