/third_party/glfw/src/ |
D | win32_joystick.c | 335 int joy = 0; in deviceCallback() local 342 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) in deviceCallback() 344 if (memcmp(&_glfw.win32_js[joy].guid, &di->guidInstance, sizeof(GUID)) == 0) in deviceCallback() 348 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) in deviceCallback() 350 if (!_glfw.win32_js[joy].present) in deviceCallback() 354 if (joy > GLFW_JOYSTICK_LAST) in deviceCallback() 429 js = _glfw.win32_js + joy; in deviceCallback() 441 _glfwInputJoystickChange(joy, GLFW_CONNECTED); in deviceCallback() 450 int joy; in openXinputDevice() local 454 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) in openXinputDevice() [all …]
|
D | linux_joystick.c | 53 int joy, fd, version; in openJoystickDevice() local 56 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) in openJoystickDevice() 58 if (!_glfw.linux_js.js[joy].present) in openJoystickDevice() 61 if (strcmp(_glfw.linux_js.js[joy].path, path) == 0) in openJoystickDevice() 65 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) in openJoystickDevice() 67 if (!_glfw.linux_js.js[joy].present) in openJoystickDevice() 71 if (joy > GLFW_JOYSTICK_LAST) in openJoystickDevice() 90 js = _glfw.linux_js.js + joy; in openJoystickDevice() 104 _glfwInputJoystickChange(joy, GLFW_CONNECTED); in openJoystickDevice() 307 int _glfwPlatformJoystickPresent(int joy) in _glfwPlatformJoystickPresent() argument [all …]
|
D | cocoa_joystick.m | 275 int joy; 277 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) 279 if (_glfw.ns_js[joy].present && _glfw.ns_js[joy].deviceRef == deviceRef) 283 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) 285 if (!_glfw.ns_js[joy].present) 289 if (joy > GLFW_JOYSTICK_LAST) 292 js = _glfw.ns_js + joy; 327 _glfwInputJoystickChange(joy, GLFW_CONNECTED); 337 int joy; 339 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) [all …]
|
D | input.c | 127 void _glfwInputJoystickChange(int joy, int event) in _glfwInputJoystickChange() argument 130 _glfw.callbacks.joystick(joy, event); in _glfwInputJoystickChange() 543 GLFWAPI int glfwJoystickPresent(int joy) in glfwJoystickPresent() argument 547 if (joy < 0 || joy > GLFW_JOYSTICK_LAST) in glfwJoystickPresent() 549 _glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick %i", joy); in glfwJoystickPresent() 553 return _glfwPlatformJoystickPresent(joy); in glfwJoystickPresent() 556 GLFWAPI const float* glfwGetJoystickAxes(int joy, int* count) in glfwGetJoystickAxes() argument 563 if (joy < 0 || joy > GLFW_JOYSTICK_LAST) in glfwGetJoystickAxes() 565 _glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick %i", joy); in glfwGetJoystickAxes() 569 return _glfwPlatformGetJoystickAxes(joy, count); in glfwGetJoystickAxes() [all …]
|
D | internal.h | 601 int _glfwPlatformJoystickPresent(int joy); 606 const float* _glfwPlatformGetJoystickAxes(int joy, int* count); 611 const unsigned char* _glfwPlatformGetJoystickButtons(int joy, int* count); 616 const char* _glfwPlatformGetJoystickName(int joy); 950 void _glfwInputJoystickChange(int joy, int event);
|
/third_party/glfw/tests/ |
D | joysticks.c | 127 static void joystick_callback(int joy, int event) in joystick_callback() argument 133 glfwGetJoystickAxes(joy, &axis_count); in joystick_callback() 134 glfwGetJoystickButtons(joy, &button_count); in joystick_callback() 137 joy + 1, in joystick_callback() 138 glfwGetJoystickName(joy), in joystick_callback() 142 joysticks[joystick_count++] = joy; in joystick_callback() 150 if (joysticks[i] == joy) in joystick_callback() 157 printf("Lost joystick %i\n", joy + 1); in joystick_callback() 164 int joy; in find_joysticks() local 166 for (joy = GLFW_JOYSTICK_1; joy <= GLFW_JOYSTICK_LAST; joy++) in find_joysticks() [all …]
|
D | events.c | 454 static void joystick_callback(int joy, int event) in joystick_callback() argument 460 glfwGetJoystickAxes(joy, &axisCount); in joystick_callback() 461 glfwGetJoystickButtons(joy, &buttonCount); in joystick_callback() 465 joy, in joystick_callback() 466 glfwGetJoystickName(joy), in joystick_callback() 473 counter++, glfwGetTime(), joy); in joystick_callback()
|
/third_party/node/deps/npm/tap-snapshots/test/lib/utils/ |
D | explain-dep.js.test.cjs | 25 [1mbundle-of-joy[22m@[1m1.0.0[22m [1m[34mbundled[39m[22m[2m[22m 26 [2mnode_modules/bundle-of-joy[22m 31 bundle-of-joy@1.0.0 bundled 32 node_modules/bundle-of-joy 37 [1mbundle-of-joy[22m@[1m1.0.0[22m [1m[34mbundled[39m[22m[2m[22m 38 [2mnode_modules/bundle-of-joy[22m 42 bundle-of-joy@1.0.0 bundled 43 node_modules/bundle-of-joy
|
/third_party/glfw/include/GLFW/ |
D | glfw3.h | 3532 GLFWAPI int glfwJoystickPresent(int joy); 3566 GLFWAPI const float* glfwGetJoystickAxes(int joy, int* count); 3601 GLFWAPI const unsigned char* glfwGetJoystickButtons(int joy, int* count); 3633 GLFWAPI const char* glfwGetJoystickName(int joy);
|
/third_party/skia/third_party/externals/imgui/examples/libs/glfw/include/GLFW/ |
D | glfw3.h | 3517 GLFWAPI int glfwJoystickPresent(int joy); 3549 GLFWAPI const float* glfwGetJoystickAxes(int joy, int* count); 3582 GLFWAPI const unsigned char* glfwGetJoystickButtons(int joy, int* count); 3614 GLFWAPI const char* glfwGetJoystickName(int joy);
|
/third_party/skia/third_party/externals/brotli/tests/testdata/ |
D | plrabn12.txt | 193 Who now triumphs, and in th' excess of joy 320 Where joy for ever dwells! Hail, horrors! hail, 594 Obscure some glimpse of joy to have found their Chief 858 At once with joy and fear his heart rebounds. 1245 Common revenge, and interrupt his joy 1246 In our confusion, and our joy upraise 1261 Pleased highly those infernal States, and joy 1369 Attest their joy, that hill and valley rings. 1460 Forgets both joy and grief, pleasure and pain. 1639 Becam'st enamoured; and such joy thou took'st [all …]
|
D | asyoulik.txt | 2428 AUDREY Well, the gods give us joy! 2922 ORLANDO I take some joy to say you are, because I would be 4045 With measure heap'd in joy, to the measures fall.
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | uz.txt | 1048 format_whitespace{"formatlash va bo‘sh joy"} 1084 place{"joy"}
|
/third_party/rust/crates/memchr/bench/data/opensubtitles/ |
D | zh-medium.txt | 1184 你找到生命中的快樂了麼 Have you found joy in your life? 1192 回答問題 你找到生命中的快樂了麼 Answer the question, "have I found joy in my life?" 1194 你的生活給別人帶去快樂了麼 Has your life brought joy to others?
|
D | zh-huge.txt | 1184 你找到生命中的快樂了麼 Have you found joy in your life? 1192 回答問題 你找到生命中的快樂了麼 Answer the question, "have I found joy in my life?" 1194 你的生活給別人帶去快樂了麼 Has your life brought joy to others? 1677 找到你生命中的真諦 Find the joy in your life. 1688 找到你生命中的真諦 愛德華 Find the joy in your life, edward. 1719 我們給別人的生活帶去了快樂 we brought some joy to one another's lives.
|
D | en-huge.txt | 10112 - Your joy is encouraging me. 12765 The heart of every Soviet citizen sings with joy, the joy of victory! 13874 The heart of every Soviet citizen sings with joy, the joy of victory! 14981 The heart of every Soviet citizen sings with joy, the joy of victory! 16089 The heart of every Soviet citizen sings with joy, the joy of victory! 17181 The heart of every Soviet citizen sings with joy, the joy of victory! 18259 The heart of every Soviet citizen is filled with joy. 18261 It is victory that has brought us this joy. 19342 The heart of every Soviet citizen is filled with joy. 19344 It is victory that has brought us this joy. [all …]
|
/third_party/icu/icu4c/source/data/locales/ |
D | uz.txt | 1142 format_whitespace{"formatlash va bo‘sh joy"} 1178 place{"joy"}
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-fulltext-search/ |
D | the-picture-of-dorian-gray.txt | 735 believe that the world would gain such a fresh impulse of joy that we 910 never get back our youth. The pulse of joy that beats in us at twenty 988 flushed for a moment with pleasure. A look of joy came into his eyes, 1435 it were a subtle fluid or a strange perfume: there was a real joy in 1436 that--perhaps the most satisfying joy left to us in an age so limited 1588 the colour, the beauty, the joy of life. The less said about life's 2313 would do many times, and with joy. 2383 The girl laughed again. The joy of a caged bird was in her voice. Her 2688 communicate her joy. A faint smile curving that sullen mouth was all 2975 perfect point of rose-coloured joy. She trembled all over and shook [all …]
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-fts/ |
D | the-picture-of-dorian-gray.txt | 735 believe that the world would gain such a fresh impulse of joy that we 910 never get back our youth. The pulse of joy that beats in us at twenty 988 flushed for a moment with pleasure. A look of joy came into his eyes, 1435 it were a subtle fluid or a strange perfume: there was a real joy in 1436 that--perhaps the most satisfying joy left to us in an age so limited 1588 the colour, the beauty, the joy of life. The less said about life's 2313 would do many times, and with joy. 2383 The girl laughed again. The joy of a caged bird was in her voice. Her 2688 communicate her joy. A faint smile curving that sullen mouth was all 2975 perfect point of rose-coloured joy. She trembled all over and shook [all …]
|
/third_party/icu/icu4j/perf-tests/data/collation/ |
D | 2drvb10.txt | 1164 with joy with thy countenance: at thy right hand are delights even to 1509 20:2. In thy strength, O Lord, the king shall joy; and in thy salvation 2044 29:12. Thou hast turned for me my mourning into joy: thou hast cut my 2178 joy, deliver me from them that surround me. 2893 house of God: With the voice of joy and praise; the noise of one 2939 42:4. And I will go in to the altar of God: to God who giveth joy to my 3160 of joy, 3198 47:3. With the joy of the whole earth is mount Sion founded, on the 3461 50:10. To my hearing thou shalt give joy and gladness: and the bones 3472 50:14. Restore unto me the joy of thy salvation, and strengthen me with [all …]
|
D | vfear11a.txt | 722 Holmes had the impersonal joy of the true artist in his better 740 success, his own sole reward being the intellectual joy of the 2644 of grief had passed away from her. Her eyes shone with the joy 6241 For an instant he stood glaring. Then astonishment and joy took the 6357 The girl laughed with joy. "Six months!" she cried. "Is it a promise?"
|
/third_party/glfw/docs/ |
D | input.dox | 564 void joystick_callback(int joy, int event)
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_English.txt | 286 僖>'[joy]';
|
/third_party/icu/icu4c/source/test/testdata/ |
D | emoji-test.txt | 28 1F602 ; fully-qualified # face with tears of joy 138 1F639 ; fully-qualified # cat face with tears of joy
|
/third_party/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 1820 悲喜交集 < mixed\-feelings\-of\-grief\-and\-joy; 21269 僖 < joy; 22100 悲喜交集 > mixed\-feelings\-of\-grief\-and\-joy; 55387 僖 > joy; 55644 䜣 > joy; 55699 㦀 > joy; 55709 㤚 > joy; 55716 㗔 > joy; 55721 㑾 > joy;
|