Home
last modified time | relevance | path

Searched refs:numBytes (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dgui_haiku.cc244 virtual void KeyDown(const char *bytes, int32 numBytes);
1226 VimTextAreaView::KeyDown(const char *bytes, int32 numBytes) in KeyDown() argument
1247 if (numBytes > 1) { in KeyDown()
1249 if (numBytes > KEY_MSG_BUFSIZ) in KeyDown()
1250 numBytes = KEY_MSG_BUFSIZ; // should never happen... ??? in KeyDown()
1251 km.length = numBytes; in KeyDown()
1252 memcpy((char *)dest, bytes, numBytes); in KeyDown()
1272 numBytes == 1) { in KeyDown()
1306 if (numBytes == 0 || bytes[0] == B_FUNCTION_KEY) { in KeyDown()