Home
last modified time | relevance | path

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

/external/libvterm/src/
Dstate.c1004 val = CSI_ARG_OR(args[0], 1); in on_csi()
1010 row = CSI_ARG_OR(args[0], 1); in on_csi()
1174 col = CSI_ARG_OR(args[0], 1); in on_csi()
1186 val = CSI_ARG_OR(args[0], 0); in on_csi()
1197 row = CSI_ARG_OR(args[0], 1); in on_csi()
1211 row = CSI_ARG_OR(args[0], 1); in on_csi()
1224 val = CSI_ARG_OR(args[0], 0); in on_csi()
1283 val = CSI_ARG_OR(args[0], 0); in on_csi()
1312 val = CSI_ARG_OR(args[0], 1); in on_csi()
1344 val = CSI_ARG_OR(args[0], 0); in on_csi()
[all …]
Dpen.c82 *index = CSI_ARG_OR(args[0], -1); in lookup_colour()
84 lookup_colour_palette(state, argcount ? CSI_ARG_OR(args[0], -1) : -1, col); in lookup_colour()
/external/libvterm/include/
Dvterm.h164 #define CSI_ARG_OR(a,def) (CSI_ARG(a) == CSI_ARG_MISSING ? (def) : CSI_ARG(a)) macro