HomeSort by relevance Sort by last modified time
    Searched defs:Ctrl (Results 1 - 7 of 7) sorted by null

  /hardware/qcom/display/msm8084/liboverlay/
overlayCtrlData.h 48 class Ctrl : utils::NoCopy {
52 explicit Ctrl(const int& dpy);
54 ~Ctrl();
71 /* ctrl id */
73 /* ctrl fd */
89 static bool validateAndSet(Ctrl* ctrlArray[], const int& count,
92 // mdp ctrl struct(info e.g.)
121 inline Ctrl::Ctrl(const int& dpy) : mMdp(new MdpCtrl(dpy)) {
124 inline Ctrl::~Ctrl()
    [all...]
  /hardware/qcom/display/msm8226/liboverlay/
overlayCtrlData.h 48 class Ctrl : utils::NoCopy {
52 explicit Ctrl(const int& dpy);
54 ~Ctrl();
71 /* ctrl id */
73 /* ctrl fd */
87 static bool validateAndSet(Ctrl* ctrlArray[], const int& count,
90 // mdp ctrl struct(info e.g.)
119 inline Ctrl::Ctrl(const int& dpy) : mMdp(new MdpCtrl(dpy)) {
122 inline Ctrl::~Ctrl()
    [all...]
  /hardware/qcom/display/msm8960/liboverlay/
overlayCtrlData.h 48 class Ctrl : utils::NoCopy {
52 explicit Ctrl();
54 ~Ctrl();
73 /* ctrl id */
75 /* ctrl fd */
90 // mdp ctrl struct(info e.g.)
121 /* This class just creates a Ctrl Data pair to be used by a pipe.
123 * need to use the Ctrl channel in hwc_prepare (i.e config stage) and Data
127 Ctrl ctrl; member in struct:overlay::CtrlData
    [all...]
  /hardware/qcom/display/msm8974/liboverlay/
overlayCtrlData.h 48 class Ctrl : utils::NoCopy {
52 explicit Ctrl();
54 ~Ctrl();
73 /* ctrl id */
75 /* ctrl fd */
91 // mdp ctrl struct(info e.g.)
122 /* This class just creates a Ctrl Data pair to be used by a pipe.
124 * need to use the Ctrl channel in hwc_prepare (i.e config stage) and Data
128 Ctrl ctrl; member in struct:overlay::CtrlData
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorTextEditor.js 71 "Ctrl-Space": "autocomplete",
76 "Ctrl-A": "selectAll",
77 "Ctrl-Z": "undoAndReveal",
78 "Shift-Ctrl-Z": "redoAndReveal",
79 "Ctrl-Y": "redo",
80 "Ctrl-Home": "goDocStart",
81 "Ctrl-Up": "goDocStart",
82 "Ctrl-End": "goDocEnd",
83 "Ctrl-Down": "goDocEnd",
84 "Ctrl-Left": "goGroupLeft"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
KeyboardShortcut.js 44 Ctrl: 2,
49 // "default" command/ctrl key for platform, Command on Mac, Ctrl on other platforms
50 return WebInspector.isMac() ? this.Meta : this.Ctrl;
67 Ctrl: { code: 17, name: "Ctrl" },
110 // "default" command/ctrl key for platform, Command on Mac, Ctrl on other platforms
111 return WebInspector.isMac() ? this.Meta : this.Ctrl;
153 modifiers |= WebInspector.KeyboardShortcut.Modifiers.Ctrl;
    [all...]
  /external/mksh/src/
edit.c 1016 { XFUNC_del_back, 0, CTRL('?') },
1017 { XFUNC_del_bword, 1, CTRL('?') },
1018 { XFUNC_eot_del, 0, CTRL('D') },
1019 { XFUNC_del_back, 0, CTRL('H') },
1020 { XFUNC_del_bword, 1, CTRL('H') },
1025 { XFUNC_mv_back, 0, CTRL('B') },
1026 { XFUNC_mv_forw, 0, CTRL('F') },
1027 { XFUNC_search_char_forw, 0, CTRL(']') },
1028 { XFUNC_search_char_back, 1, CTRL(']') },
1029 { XFUNC_newline, 0, CTRL('M') }
    [all...]

Completed in 273 milliseconds