Searched refs:character (Results 1 - 25 of 80) sorted by relevance

1234

/haiku-fatelf/src/bin/coreutils/man/
H A Dmknod.x2 mknod \- make block or character special files
/haiku-fatelf/src/apps/terminal/
H A DTerminalCharClassifier.h20 virtual int Classify(const char* character) = 0;
H A DTerminalLine.h16 UTF8Char character; member in struct:TerminalCell
38 uint16 offset; // character offset
H A DHistoryBuffer.cpp103 // copy character
106 cell.character.SetTo(chars + i, charLength);
113 if (cell.character.IsFullWidth()) {
137 byteLength += cell.character.ByteCount();
160 int32 charLength = cell.character.ByteCount();
161 memcpy(chars, cell.character.bytes, charLength);
H A DBasicTerminalBuffer.cpp281 BasicTerminalBuffer::GetChar(int32 row, int32 column, UTF8Char& character, argument
296 character = cell.character;
323 int32 bytes = cell.character.ByteCount();
325 *buffer++ = cell.character.bytes[i];
391 int type = classifier->Classify(line->cells[x].character.bytes);
414 if (classifier->Classify(line->cells[x].character.bytes) != type)
437 if (classifier->Classify(line->cells[x].character.bytes) != type)
593 line->cells[fCursor.x].character = c;
624 line->cells[x].character
[all...]
/haiku-fatelf/src/add-ons/kernel/debugger/qrencode/
H A Dmodule.cpp101 char character = data[copyCount]; local
102 if ((character >= 'a' && character <= 'z')
103 || (character >= 'A' && character <= 'Z')
104 || (character >= '0' && character <= '9')
105 || character == '.' || character == '-' || character
[all...]
/haiku-fatelf/src/system/libroot/posix/wchar/
H A Dbtowc.c13 char character = (char)c; local
23 int byteCount = __mbrtowc(&wc, &character, 1, &internalMbState);
/haiku-fatelf/src/system/boot/loader/
H A Dstdio.cpp91 char character = (char)c; local
94 status = ((ConsoleNode *)file)->Write(&character, 1);
97 return character;
117 putc(int character) argument
119 return fputc(character, stdout);
124 putchar(int character) argument
126 return fputc(character, stdout);
/haiku-fatelf/src/bin/sharutils/src/
H A Dencode.c21 /* Basic one-character encoding function to make a char printing. */
59 int character; local
64 character = getc (file);
65 if (character == EOF)
67 buffer[counter] = character;
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/ebml/c/
H A Dlibebml_t.h58 typedef __int8 character; typedef
69 typedef int8_t character; typedef
82 typedef char character; typedef
96 typedef int8_t character; typedef
109 typedef int8_t character; typedef
/haiku-fatelf/src/apps/charactermap/
H A DCharacterView.cpp172 char character[16]; local
173 CharacterView::UnicodeToUTF8(c, character, sizeof(character));
176 for (int32 i = 0; character[i] && size < (int)textSize; i++) {
178 (uint8)character[i]);
190 uint32 character; local
191 if (message->FindInt32("character", (int32*)&character) != B_OK) {
195 character = fCurrentCharacter;
200 UnicodeToUTF8Hex(character, tex
303 uint32 character; local
415 char character[16]; local
465 _GetCharacterAt(BPoint point, uint32& character, BRect* _frame) const argument
594 _GetTopmostCharacter(uint32& character, int32& offset) const argument
[all...]
H A DCharacterView.h62 bool _GetCharacterAt(BPoint point, uint32& character,
66 bool _GetTopmostCharacter(uint32& character,
68 BRect _FrameFor(uint32 character) const;
/haiku-fatelf/headers/private/fs_shell/
H A Dfssh_string.h42 extern char *fssh_strchr(const char *string, int character);
43 extern char *fssh_strrchr(const char *string, int character);
46 extern char *fssh_strchrnul(const char *string, int character);
/haiku-fatelf/src/add-ons/media/media-add-ons/radeon/
H A DCC.cpp176 /* special character */
194 /* standard character (ASCII) */
207 int code, channel, character; local
244 /* one-byte standard character (0?XX) */
245 character = code & 0x007f;
247 if (character >= 0x20) {
249 PRINT(("%c", character));
251 fText[fRow][fColumn] = (fColor << 8) + character;
255 else if (character != 0x00) {
299 /* two-byte special character (11
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/include/
H A Dstring.h8 #define __strchrnul(string, character) strchrnul(string, character)
/haiku-fatelf/src/tools/fs_shell/
H A Dstring.cpp107 fssh_strchr(const char *string, int character) argument
109 return strchr((char*)string, character);
114 fssh_strrchr(const char *string, int character) argument
116 return strrchr((char*)string, character);
129 fssh_strchrnul(const char *string, int character)
/haiku-fatelf/src/bin/coreutils/src/
H A Dptx.c38 if "��" (c-with-cedilla) is available in the translation's character
138 /* For each character, provide its folded equivalent. */
149 allowed by the fastmap. Contains !0 if character allowed in word. Not
251 /* Indicate if special output processing is requested for each character. */
440 int character; /* character value */
445 for (character = 0; character < CHAR_SET_SIZE; character++)
446 folded_chars[character]
438 int character; /* character value */ local
1113 unsigned char character = *cursor; local
1270 int character; /* character ordinal */ local
[all...]
/haiku-fatelf/headers/posix/
H A Dstring.h39 extern char *strchr(const char *string, int character);
40 extern char *strrchr(const char *string, int character);
44 extern char *strchrnul(const char *string, int character);
/haiku-fatelf/src/kits/tracker/
H A DCountView.h67 void AddFilterCharacter(const char* character);
/haiku-fatelf/src/bin/bash/
H A Dparse.y1180 /* yy_getc () returns the next available character from input or EOF.
1181 yy_ungetc (c) makes `c' the next character to read.
1183 installed function for getting the next character, makes UNGET the
1184 installed function for un-getting a character, sets the type of stream
1243 /* Call this to get the next character of input. */
1250 /* Call this to unget C. That is, to make C the next character
1431 that number of characters, so it points to the last character actually
1825 /* `+2' in case the final character in the buffer is a newline. */
1831 We allow a backslash to escape the next character, but we
1941 /* Multiple-character token
[all...]
H A Dalias.c286 #define self_delimiting(character) (member ((character), " \t\n\r;|&()"))
290 #define command_separator(character) (member ((character), "\r\n;|&("))
300 string[START] is the opening quote character), and return the index
301 of the closing quote character matching the opening quote character.
304 quotes, words where the first character is quoted with a `\', and other
316 character. */
343 /* skip quoted strings, in ' or ", and words in which a character i
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dtriostr.h70 TRIO_STRING_PUBLIC char *trio_index TRIO_PROTO((const char *string, int character));
71 TRIO_STRING_PUBLIC char *trio_index_last TRIO_PROTO((const char *string, int character));
100 TRIO_STRING_PUBLIC int trio_xstring_append_char TRIO_PROTO((trio_string_t *self, char character));
118 TRIO_STRING_PUBLIC char *trio_string_index TRIO_PROTO((trio_string_t *self, int character));
119 TRIO_STRING_PUBLIC char *trio_string_index_last TRIO_PROTO((trio_string_t *self, int character));
H A Dtriostr.c650 Find first occurrence of a character in a string.
653 @param character Character to be found.
654 @param A pointer to the found character, or NULL if character was not found.
658 TRIO_ARGS2((string, character),
660 int character)
664 return strchr(string, character);
671 Find last occurrence of a character in a string.
674 @param character Character to be found.
675 @param A pointer to the found character, o
657 trio_index(string, character), TRIO_CONST char *string, int character argument
678 trio_index_last(string, character), TRIO_CONST char *string, int character argument
1581 trio_xstring_append_char(self, character), trio_string_t *self, char character argument
1914 trio_string_index(self, character), trio_string_t *self, int character argument
1931 trio_string_index_last(self, character), trio_string_t *self, int character argument
[all...]
/haiku-fatelf/src/add-ons/translators/gif/
H A DGIFSave.h62 unsigned char character; member in class:GIFSave
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dobstack.c537 void (obstack_1grow) (obstack, character)
539 int character;
541 obstack_1grow (obstack, character);
551 void (obstack_1grow_fast) (obstack, character)
553 int character;
555 obstack_1grow_fast (obstack, character);

Completed in 141 milliseconds

1234