Searched defs:Click (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/SemaCXX/
H A Dtypo-correction-delayed.cpp170 void MovePointer(Pointer &Click, int x, int y) { // expected-note 2 {{'Click' declared here}} argument
171 click.set_xpos(x); // expected-error {{use of undeclared identifier 'click'; did you mean 'Click'?}}
172 click.set_ypos(x); // expected-error {{use of undeclared identifier 'click'; did you mean 'Click'?}}
/external/skia/src/views/
H A DSkView.cpp292 SkView::Click::Click(SkView* target) { function in class:SkView::Click
300 SkView::Click::~Click() {
304 void SkView::Click::resetType() {
312 bool SkView::Click::isType(const char type[]) const {
327 void SkView::Click::setType(const char type[]) {
332 void SkView::Click::copyType(const char type[]) {
344 SkView::Click* SkView::findClickHandler(SkScalar x, SkScalar y, unsigned modi) {
364 Click* clic
[all...]
/external/skia/include/views/
H A DSkView.h138 // Click handling
140 class Click { class in class:SkView
142 Click(SkView* target);
143 virtual ~Click();
171 Click* findClickHandler(SkScalar x, SkScalar y, unsigned modifierKeys);
173 static void DoClickDown(Click*, int x, int y, unsigned modi);
174 static void DoClickMoved(Click*, int x, int y, unsigned modi);
175 static void DoClickUp(Click*, int x, int y, unsigned modi);
349 virtual Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned modi);
359 virtual bool onClick(Click*);
[all...]

Completed in 590 milliseconds