/external/skia/src/views/ |
D | SkView.cpp | 388 Click* click = child->findClickHandler(p.fX, p.fY, modi); in findClickHandler() local 390 if (click) { in findClickHandler() 391 return click; in findClickHandler() 399 void SkView::DoClickDown(Click* click, int x, int y, unsigned modi) in DoClickDown() argument 401 SkASSERT(click); in DoClickDown() 403 SkView* target = (SkView*)SkEventSink::FindSink(click->fTargetID); in DoClickDown() 408 click->fIOrig.set(x, y); in DoClickDown() 409 click->fICurr = click->fIPrev = click->fIOrig; in DoClickDown() 411 click->fOrig.iset(x, y); in DoClickDown() 412 if (!target->globalToLocal(&click->fOrig)) { in DoClickDown() [all …]
|
D | SkWindow.cpp | 313 Click* click = this->findClickHandler(SkIntToScalar(x), in onDispatchClick() local 316 if (click) { in onDispatchClick() 317 click->fOwner = owner; in onDispatchClick() 318 *fClicks.append() = click; in onDispatchClick() 319 SkView::DoClickDown(click, x, y, modifierKeys); in onDispatchClick()
|
/external/skia/samplecode/ |
D | SampleDraw.cpp | 339 virtual bool onClick(Click* click) { in onClick() argument 340 if (Click::kUp_State == click->fState) { in onClick() 341 if (click->isType("maker")) { in onClick() 342 if (SkPoint::Distance(click->fOrig, click->fCurr) > SkIntToScalar(3)) { in onClick() 352 if (Click::kDown_State == click->fState) { in onClick() 358 if (click->isType("maker")) { in onClick() 359 this->setDraw(fFactory->create(click->fOrig, click->fCurr))->unref(); in onClick() 360 } else if (click->isType("dragger")) { in onClick() 363 (*iter)->offset(click->fCurr.x() - click->fPrev.x(), in onClick() 364 click->fCurr.y() - click->fPrev.y()); in onClick()
|
D | SampleLua.cpp | 150 bool onClick(Click* click) override { in onClick() argument 151 if (click->getType() != gLuaClickHandlerName) { in onClick() 152 return this->INHERITED::onClick(click); in onClick() 156 switch (click->fState) { in onClick() 170 fLua->pushScalar(click->fCurr.x()); in onClick() 171 fLua->pushScalar(click->fCurr.y()); in onClick()
|
D | SamplePathClip.cpp | 77 virtual bool onClick(Click* click) { in onClick() argument 78 fCenter.set(click->fCurr.fX, click->fCurr.fY); in onClick()
|
D | SamplePath.cpp | 319 bool onClick(Click* click) override { in onClick() argument 321 if (click->fMeta.findS32("index", &index)) { in onClick() 323 fPts[index] = click->fCurr; in onClick() 335 Click* click = new Click(this); in onFindClickHandler() local 336 click->fMeta.setS32("index", i); in onFindClickHandler() 337 return click; in onFindClickHandler()
|
D | SampleFatBits.cpp | 373 static int GetIndex(SkView::Click* click) { in GetIndex() argument 374 return ((IndexClick*)click)->fIndex; in GetIndex() 492 bool onClick(Click* click) override { in onClick() argument 493 int index = IndexClick::GetIndex(click); in onClick() 495 fPts[index] = click->fCurr; in onClick() 497 SkScalar dx = click->fCurr.fX - click->fPrev.fX; in onClick() 498 SkScalar dy = click->fCurr.fY - click->fPrev.fY; in onClick()
|
D | SampleTextAlpha.cpp | 76 bool onClick(Click* click) override { in onClick() argument 77 int y = click->fICurr.fY; in onClick()
|
D | SampleQuadStroker.cpp | 606 bool onClick(Click* click) override { in onClick() argument 607 int index = ((MyClick*)click)->fIndex; in onClick() 609 fPts[index].offset(SkIntToScalar(click->fICurr.fX - click->fIPrev.fX), in onClick() 610 SkIntToScalar(click->fICurr.fY - click->fIPrev.fY)); in onClick() 613 fWeight = MapScreenYtoValue(click->fICurr.fY, fWeightControl, 0, 5); in onClick() 617 gDebugStrokerError = SkTMax(FLT_EPSILON, MapScreenYtoValue(click->fICurr.fY, in onClick() 623 fWidth = SkTMax(FLT_EPSILON, MapScreenYtoValue(click->fICurr.fY, fWidthControl, in onClick()
|
D | SampleRepeatTile.cpp | 75 bool onClick(Click* click) override { in onClick() argument 76 return this->INHERITED::onClick(click); in onClick()
|
D | SampleRegion.cpp | 402 bool onClick(Click* click) override { in onClick() argument 403 fRect.offset(click->fICurr.fX - click->fIPrev.fX, in onClick() 404 click->fICurr.fY - click->fIPrev.fY); in onClick()
|
D | SampleShaders.cpp | 130 bool onClick(Click* click) override { in onClick() argument 131 return this->INHERITED::onClick(click); in onClick()
|
/external/skia/site/user/quick/ |
D | windows.md | 71 * Double-click on dm.sln to start Visual Studio and load the project 73 …* In the "Solution Explorer" window, right-click on the "dm" project and select "Set as StartUp Pr… 74 …n the "Debug" menu, click on "Start Debugging" (or just press F5). If you get a dialog saying that… 82 * Double-click on SampleApp.sln 84 …n the "Debug" menu, click on "Start Debugging" (or just press F5). If you get a dialog saying that…
|
/external/toybox/toys/pending/ |
D | compress.c | 188 int click = bb->bitpos >> 3, blow, blen; in bitbuf_get() local 191 if (click == bb->len) bitbuf_skip(bb, click = 0); in bitbuf_get() 197 result |= ((bb->buf[click] >> blow) & ((1<<blen)-1)) << offset; in bitbuf_get() 218 int click = bb->bitpos >> 3, blow, blen; in bitbuf_put() local 221 if (click == bb->max) { in bitbuf_put() 223 click = 0; in bitbuf_put() 228 bb->buf[click] |= data << blow; in bitbuf_put()
|
/external/libmtp/ |
D | README.windows.txt | 38 5. Select your music device from the list and click Action -> Update Driver, Choose "No, not this t… 43 10. The name of your music device should appear in the prompt, click it and click "Next>" (Ignore a… 50 2. Select your music device, right click on it and click "Properties"
|
/external/skia/experimental/DrawingBoard/ |
D | SkColorPalette.cpp | 79 bool SkColorPalette::onClick(SkView::Click* click) { in onClick() argument 80 SkPoint curr = click->fCurr; in onClick() 84 switch (click->fState) { in onClick() 105 switch (click->fState) { in onClick()
|
D | SampleDrawingClient.cpp | 145 virtual bool onClick(SkView::Click* click) { in onClick() argument 146 switch (click->fState) { in onClick() 148 fCurrLine.moveTo(click->fCurr); in onClick() 154 fCurrLine.lineTo(click->fCurr); in onClick()
|
/external/droiddriver/src/io/appium/droiddriver/helpers/ |
D | PollingListeners.java | 21 driver.find(watchFinder).click(); in tryFindAndClick() 49 driver.find(dismissFinder).click(); in newDismissListener()
|
/external/libxml2/result/HTML/ |
D | wired.html.err | 2 <FORM METHOD=GET ACTION="http://nsads.hotwired.com/event.ng/Type=click&ProfileID 5 D=GET ACTION="http://nsads.hotwired.com/event.ng/Type=click&ProfileID=9688&RunID 8 N="http://nsads.hotwired.com/event.ng/Type=click&ProfileID=9688&RunID=14074&AdID 11 s.hotwired.com/event.ng/Type=click&ProfileID=9688&RunID=14074&AdID=22584&GroupID 14 com/event.ng/Type=click&ProfileID=9688&RunID=14074&AdID=22584&GroupID=1&FamilyID 17 pe=click&ProfileID=9688&RunID=14074&AdID=22584&GroupID=1&FamilyID=2684&TagValues 20 " align="RIGHT"><a href="http://nsads.hotwired.com/event.ng/Type=click&ProfileID 23 GHT"><a href="http://nsads.hotwired.com/event.ng/Type=click&ProfileID=5597&RunID 26 f="http://nsads.hotwired.com/event.ng/Type=click&ProfileID=5597&RunID=17167&AdID 29 s.hotwired.com/event.ng/Type=click&ProfileID=5597&RunID=17167&AdID=22588&GroupID [all …]
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | MenuInflaterTest.java | 25 testMenuItem.click(); in canRetrieveMenuListAndFindMenuItemById() 29 testMenuItem.click(); in canRetrieveMenuListAndFindMenuItemById()
|
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/Windows/ |
D | README.txt | 9 Just click on the program "ssvnc.exe", and then enter the remote 10 VNC Server and click "Connect". Click on "Help" for more information 13 If you want that application to run in "SSH-ONLY" mode, click on 18 icon (dark green) on the System Tray and then click "Exit". Before that,
|
/external/clang/test/SemaCXX/ |
D | typo-correction-delayed.cpp | 167 …click.set_xpos(x); // expected-error {{use of undeclared identifier 'click'; did you mean 'Click'… in MovePointer() 168 …click.set_ypos(x); // expected-error {{use of undeclared identifier 'click'; did you mean 'Click'… in MovePointer()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/templateFiles/ |
D | index.html.template | 16 <p>To view the build notes for this build click <a href="buildNotes.php">here</a>. 17 <br> To view the test results and compile logs for this build click <a href="testResults.php">here<… 18 To view the map file entries for this build click click <A href="directory.txt">here</A>.<BR></td><…
|
/external/lldb/docs/ |
D | code-signing.txt | 32 - Double click on your new lldb_codesign certificate 42 - In the Keychain Access GUI, click and drag "lldb_codesign" in the "System" keychain 58 to use the "lldb_codesign" keychain. Be sure to click "Always Allow" on your first
|
/external/llvm/docs/ |
D | Phabricator.rst | 20 click the power icon in the top right. You can register with a GitHub account, 66 * Leave the drop down on *Create a new Revision...* and click *Continue*. 80 * Select the review you want to from the *Attach To* dropdown and click 91 click the Submit button. 94 When you're done, click the Submit button.
|