OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dimen_t
(Results
1 - 1
of
1
) sorted by null
/packages/apps/Terminal/jni/
com_android_terminal_Terminal.cpp
72
typedef short unsigned int
dimen_t
;
typedef in namespace:android
76
inline ScrollbackLine(
dimen_t
_cols) : cols(_cols) {
83
inline
dimen_t
copyFrom(
dimen_t
cols, const VTermScreenCell* cells) {
84
dimen_t
n = this->cols > cols ? cols : this->cols;
89
inline
dimen_t
copyTo(
dimen_t
cols, VTermScreenCell* cells) {
90
dimen_t
n = cols > this->cols ? this->cols : cols;
95
inline void getCell(
dimen_t
col, VTermScreenCell* cell) {
99
const
dimen_t
cols
[
all
...]
Completed in 530 milliseconds