HomeSort by relevance Sort by last modified time
    Searched refs:SkKey (Results 1 - 24 of 24) sorted by null

  /external/skia/include/views/android/
AndroidKeyToSkKey.h 14 #include "SkKey.h"
16 // Convert an Android keycode to an SkKey. This is an incomplete list, only
18 SkKey AndroidKeycodeToSkKey(int keycode) {
  /external/skia/legacy/include/utils/android/
AndroidKeyToSkKey.h 14 #include "SkKey.h"
16 // Convert an Android keycode to an SkKey. This is an incomplete list, only
18 SkKey AndroidKeycodeToSkKey(int keycode) {
  /external/skia/legacy/src/animator/
SkDisplayEvent.h 16 #include "SkKey.h"
49 SkKey code;
57 SkKey fLastCode; // last key to trigger this event
58 SkKey fMax; // if the code expresses a range
SkDisplayEvents.cpp 59 if (evt->code != (SkKey) -1) {
60 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
62 evt->fLastCode = (SkKey) keyCode;
104 if (evt->code != (SkKey) -1) {
105 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
SkDisplayEvent.cpp 20 #include "SkKey.h"
47 SkDisplayEvent::SkDisplayEvent() : code((SkKey) -1), disable(false),
48 kind(kUser), x(0), y(0), fLastCode((SkKey) -1), fMax((SkKey) -1), fTarget(NULL) {
98 if (fMax != (SkKey) -1 && fMax != code)
158 SkKey convert = index == SK_PROPERTY(keys) ? code : fLastCode;
162 if (index != SK_PROPERTY(keys) || fMax == (SkKey) -1 || fMax == code)
246 code = (SkKey) SkUTF8_NextUnichar(&chars);
252 fMax = (SkKey) SkUTF8_NextUnichar(&chars);
SkAnimator.cpp 119 bool SkAnimator::doKeyEvent(SkKey code) {
130 bool SkAnimator::doKeyUpEvent(SkKey code) {
  /external/skia/src/animator/
SkDisplayEvent.h 16 #include "SkKey.h"
49 SkKey code;
57 SkKey fLastCode; // last key to trigger this event
58 SkKey fMax; // if the code expresses a range
SkDisplayEvents.cpp 59 if (evt->code != (SkKey) -1) {
60 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
62 evt->fLastCode = (SkKey) keyCode;
104 if (evt->code != (SkKey) -1) {
105 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
SkDisplayEvent.cpp 20 #include "SkKey.h"
47 SkDisplayEvent::SkDisplayEvent() : code((SkKey) -1), disable(false),
48 kind(kUser), x(0), y(0), fLastCode((SkKey) -1), fMax((SkKey) -1), fTarget(NULL) {
98 if (fMax != (SkKey) -1 && fMax != code)
154 SkKey convert = index == SK_PROPERTY(keys) ? code : fLastCode;
158 if (index != SK_PROPERTY(keys) || fMax == (SkKey) -1 || fMax == code)
242 code = (SkKey) SkUTF8_NextUnichar(&chars);
248 fMax = (SkKey) SkUTF8_NextUnichar(&chars);
SkAnimator.cpp 119 bool SkAnimator::doKeyEvent(SkKey code) {
130 bool SkAnimator::doKeyUpEvent(SkKey code) {
  /external/skia/include/views/unix/
XkeysToSkKeys.h 11 #include "SkKey.h"
16 SkKey XKeyToSkKey(KeySym keysym) {
  /external/skia/legacy/include/utils/unix/
XkeysToSkKeys.h 11 #include "SkKey.h"
16 SkKey XKeyToSkKey(KeySym keysym) {
  /external/skia/legacy/include/views/
SkKey.h 15 enum SkKey {
SkOSWindow_Unix.h 52 virtual bool onHandleKey(SkKey);
53 virtual bool onHandleKeyUp(SkKey);
SkWindow.h 18 #include "SkKey.h"
52 bool handleKey(SkKey);
53 bool handleKeyUp(SkKey);
74 virtual bool onHandleKey(SkKey);
75 virtual bool onHandleKeyUp(SkKey);
  /external/skia/include/views/
SkOSWindow_Unix.h 55 virtual bool onHandleKey(SkKey) SK_OVERRIDE;
56 virtual bool onHandleKeyUp(SkKey) SK_OVERRIDE;
SkKey.h 15 enum SkKey {
SkWindow.h 16 #include "SkKey.h"
50 bool handleKey(SkKey);
51 bool handleKeyUp(SkKey);
74 virtual bool onHandleKey(SkKey);
75 virtual bool onHandleKeyUp(SkKey);
  /external/skia/include/animator/
SkAnimator.h 14 #include "SkKey.h"
158 bool doKeyEvent(SkKey code);
159 bool doKeyUpEvent(SkKey code);
  /external/skia/legacy/include/animator/
SkAnimator.h 14 #include "SkKey.h"
158 bool doKeyEvent(SkKey code);
159 bool doKeyUpEvent(SkKey code);
  /development/ide/xcode/ports/
SkOSWindow_Mac.cpp 137 static SkKey raw2key(UInt32 raw)
141 SkKey fKey;
226 SkKey key = raw2key(raw);
232 SkKey key = raw2key(raw);
  /external/skia/legacy/src/views/
SkWindow.cpp 240 bool SkWindow::handleKey(SkKey key)
269 bool SkWindow::handleKeyUp(SkKey key)
352 bool SkWindow::onHandleKey(SkKey key)
357 bool SkWindow::onHandleKeyUp(SkKey key)
  /external/skia/src/views/
SkWindow.cpp 239 bool SkWindow::handleKey(SkKey key)
268 bool SkWindow::handleKeyUp(SkKey key)
351 bool SkWindow::onHandleKey(SkKey key)
356 bool SkWindow::onHandleKeyUp(SkKey key)
  /external/skia/legacy/src/utils/unix/
SkOSWindow_Unix.cpp 21 #include "SkKey.h"
277 bool SkOSWindow::onHandleKey(SkKey key)
282 bool SkOSWindow::onHandleKeyUp(SkKey key)

Completed in 1607 milliseconds