/external/clang/test/Sema/ |
D | attr-capabilities.c | 27 ThreadRole GUI, Worker; variable 28 void Func1(void) __attribute__((requires_capability(GUI))) {} in Func1() 37 void Func7(void) __attribute__((assert_capability(GUI))) {} in Func7() 38 void Func8(void) __attribute__((assert_shared_capability(GUI))) {} in Func8() 43 void Func11(void) __attribute__((acquire_capability(GUI))) {} in Func11() 44 void Func12(void) __attribute__((acquire_shared_capability(GUI))) {} in Func12() 46 void Func15(void) __attribute__((release_capability(GUI))) {} in Func15() 47 void Func16(void) __attribute__((release_shared_capability(GUI))) {} in Func16() 48 void Func17(void) __attribute__((release_generic_capability(GUI))) {} in Func17() 53 void Func23(void) __attribute__((try_acquire_capability(1, GUI))) {} in Func23() [all …]
|
/external/llvm-project/clang/test/Sema/ |
D | attr-capabilities.c | 27 ThreadRole GUI, Worker; variable 28 void Func1(void) __attribute__((requires_capability(GUI))) {} in Func1() 37 void Func7(void) __attribute__((assert_capability(GUI))) {} in Func7() 38 void Func8(void) __attribute__((assert_shared_capability(GUI))) {} in Func8() 43 void Func11(void) __attribute__((acquire_capability(GUI))) {} in Func11() 44 void Func12(void) __attribute__((acquire_shared_capability(GUI))) {} in Func12() 49 void Func15(void) __attribute__((release_capability(GUI))) {} in Func15() 50 void Func16(void) __attribute__((release_shared_capability(GUI))) {} in Func16() 51 void Func17(void) __attribute__((release_generic_capability(GUI))) {} in Func17() 60 void Func23(void) __attribute__((try_acquire_capability(1, GUI))) {} in Func23() [all …]
|
/external/python/cpython2/Doc/library/ |
D | othergui.rst | 6 Major cross-platform (Windows, Mac OS X, Unix-like) GUI toolkits are 21 extensive C++ GUI application development framework that is 25 book, `GUI Programming with Python: QT Edition 27 Rempt. The *PyQt4* bindings also have a book, `Rapid GUI Programming 32 wxPython is a cross-platform GUI toolkit for Python that is built around 46 widgets than Tkinter. In addition, there are many other GUI toolkits for 47 Python, both cross-platform, and platform-specific. See the `GUI Programming 50 different GUI toolkits are compared.
|
D | tk.rst | 8 single: GUI 30 GUI libraries that you could be interested in. For more information about
|
/external/python/cpython3/Doc/library/ |
D | othergui.rst | 6 Major cross-platform (Windows, Mac OS X, Unix-like) GUI toolkits are 28 extensive C++ GUI application development framework that is 40 wxPython is a cross-platform GUI toolkit for Python that is built around 52 widgets than Tkinter. In addition, there are many other GUI toolkits for 53 Python, both cross-platform, and platform-specific. See the `GUI Programming 56 different GUI toolkits are compared.
|
D | tk.rst | 8 single: GUI 30 GUI libraries that you could be interested in. For more information about
|
/external/python/setuptools/ |
D | msvc-build-launcher.cmd | 16 …cl /D "GUI=0" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x86 /SUBSYSTEM:CONSOLE /out:s… 17 …cl /D "GUI=1" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x86 /SUBSYSTEM:WINDOWS /out:s… 32 …cl /D "GUI=0" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /SUBSYSTEM:CONSOLE /out:s… 33 …cl /D "GUI=1" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /SUBSYSTEM:WINDOWS /out:s…
|
D | launcher.c | 266 strcat(script, (GUI ? "-script.pyw" : "-script.py")); in run() 329 return run(__argc, __argv, GUI); in WinMain() 333 return run(argc, argv, GUI); in main()
|
/external/python/cpython3/Tools/demo/ |
D | README | 11 redemo.py Regular Expressions: GUI script to test regexes. 14 sortvisu.py GUI programming: Visualization of different sort algorithms. 15 spreadsheet.py GUI/Application programming: A simple spreadsheet application.
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | README.txt | 43 2. GUI Tests 45 When run as part of the Python test suite, Idle GUI tests need to run 46 test.test_support.requires('gui') (test.support in 3.x). A test is a GUI test 49 either have no graphical environment available or are not allowed to use it, GUI 53 To avoid interfering with other GUI tests, all GUI objects must be destroyed and 93 Tests of non-GUI operations should avoid creating tk widgets. Incidental uses of 108 GUI tests, in test_xyz.py. (Both '-m idlelib' and '-m idlelib.idle' start
|
/external/python/cpython2/Tools/audiopy/ |
D | README | 12 script, or as a Tkinter based GUI application. 31 Running as a GUI 34 based GUI application. It will pop up a window with two sections: 49 Unsupported devices will appear dimmed out in the GUI. When run 50 as a GUI, audiopy monitors the audio device and automatically 62 line program and not display its GUI.
|
/external/proguard/examples/ |
D | proguardgui.pro | 2 # This ProGuard configuration file illustrates how to process the ProGuard GUI. 22 # additional GUI files instead of all files. 42 # class names. Notably, in this case, the GUI resource properties file will
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | TestDriver.dpr | 6 This project contains the DUnit test framework and the GUI/Console test runners. 8 to use the console test runner. Otherwise the GUI test runner will be used by
|
/external/proguard/examples/gradle/ |
D | proguardgui.gradle | 2 // This Gradle build file illustrates how to process the ProGuard GUI. 42 // additional GUI files instead of all files. 62 // class names. Notably, in this case, the GUI resource properties file will
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | README.txt | 42 2. GUI Tests 44 When run as part of the Python test suite, Idle GUI tests need to run 45 test.support.requires('gui'). A test is a GUI test if it creates a 47 instantiating a tkinter or idle class. GUI tests cannot run in test 51 To guard a module consisting entirely of GUI tests, start with 59 To avoid interfering with other GUI tests, all GUI objects must be 115 Tests of non-GUI operations should avoid creating tk widgets. Incidental 131 GUI tests, in test_xyz.py. (Both '-m idlelib' and '-m idlelib.idle'
|
/external/python/cpython3/Doc/using/ |
D | mac.rst | 87 Running scripts with a GUI 92 anything that has a GUI) need to be run in a special way. Use :program:`pythonw` 136 GUI Programming on the Mac 139 There are several options for building GUI applications on the Mac with Python. 145 The standard Python GUI toolkit is :mod:`tkinter`, based on the cross-platform 150 *wxPython* is another popular cross-platform GUI toolkit that runs natively on 153 *PyQt* is another popular cross-platform GUI toolkit that runs natively on Mac
|
/external/python/cpython2/Doc/using/ |
D | mac.rst | 95 Running scripts with a GUI 100 anything that has a GUI) need to be run in a special way. Use :program:`pythonw` 144 GUI Programming on the Mac 147 There are several options for building GUI applications on the Mac with Python. 153 The standard Python GUI toolkit is :mod:`Tkinter`, based on the cross-platform 158 *wxPython* is another popular cross-platform GUI toolkit that runs natively on 161 *PyQt* is another popular cross-platform GUI toolkit that runs natively on Mac
|
/external/lzma/CPP/7zip/Bundles/SFXWin/ |
D | resource.rc | 3 #include "../../UI/GUI/ExtractDialogRes.h" 45 #include "../../UI/GUI/Extract.rc"
|
/external/python/cpython3/Doc/faq/ |
D | gui.rst | 14 General GUI Questions 17 What platform-independent GUI toolkits exist for Python? 40 wxWidgets (https://www.wxwidgets.org) is a free, portable GUI class 83 `Kivy <https://kivy.org/>`_ is a cross-platform GUI library supporting both 103 What platform-specific GUI toolkits exist for Python?
|
/external/curl/docs/ |
D | INSTALL.cmake | 19 of CMake's GUI's. 75 CMake also comes with a Qt based GUI called cmake-gui. To configure with 87 GUI. Once you have selected all the options you want, click the
|
/external/glide/third_party/gif_encoder/ |
D | README.third_party | 1 URL: http://java2s.com/Code/Java/2D-Graphics-GUI/AnimatedGifEncoder.htm
|
/external/proguard/bin/ |
D | proguardgui.bat | 3 REM Start-up script for the GUI of ProGuard -- free class file shrinker,
|
/external/tensorflow/tensorflow/python/debug/ |
D | README.md | 41 build a browser-based graphical user interface (GUI) for TFDBG: the 47 * For information on the web GUI of TFDBG (TensorBoard Debugger Plugin), see
|
/external/mesa3d/src/gallium/auxiliary/rbug/ |
D | README | 19 for a GUI see:
|
/external/python/cpython3/Tools/unittestgui/ |
D | README.txt | 1 unittestgui.py is GUI framework and application for use with Python unit
|