/third_party/openssl/include/openssl/ |
D | ui.h | 42 UI *UI_new(void); 43 UI *UI_new_method(const UI_METHOD *method); 44 void UI_free(UI *ui); 89 int UI_add_input_string(UI *ui, const char *prompt, int flags, 91 int UI_dup_input_string(UI *ui, const char *prompt, int flags, 93 int UI_add_verify_string(UI *ui, const char *prompt, int flags, 96 int UI_dup_verify_string(UI *ui, const char *prompt, int flags, 99 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc, 102 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc, 105 int UI_add_info_string(UI *ui, const char *text); [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | typeFromPropertyAssignment26.types | 2 var UI = {} 3 >UI : typeof UI 6 UI.TreeElement = class { 7 >UI.TreeElement = class { constructor() { this.treeOutline = 12 }} : typeof TreeElement 8 >UI.TreeElement : typeof TreeElement 9 >UI : typeof UI 22 UI.context = new UI.TreeElement() 23 >UI.context = new UI.TreeElement() : TreeElement 24 >UI.context : TreeElement 25 >UI : typeof UI [all …]
|
D | typeFromPropertyAssignment26.symbols | 2 var UI = {} 3 >UI : Symbol(UI, Decl(bug24730.js, 0, 3), Decl(bug24730.js, 0, 11), Decl(bug24730.js, 5, 2)) 5 UI.TreeElement = class { 6 >UI.TreeElement : Symbol(UI.TreeElement, Decl(bug24730.js, 0, 11)) 7 >UI : Symbol(UI, Decl(bug24730.js, 0, 3), Decl(bug24730.js, 0, 11), Decl(bug24730.js, 5, 2)) 8 >TreeElement : Symbol(UI.TreeElement, Decl(bug24730.js, 0, 11)) 17 UI.context = new UI.TreeElement() 18 >UI.context : Symbol(UI.context, Decl(bug24730.js, 5, 2)) 19 >UI : Symbol(UI, Decl(bug24730.js, 0, 3), Decl(bug24730.js, 0, 11), Decl(bug24730.js, 5, 2)) 20 >context : Symbol(UI.context, Decl(bug24730.js, 5, 2)) [all …]
|
D | typeFromPropertyAssignment26.errors.txt | 6 var UI = {} 7 UI.TreeElement = class { 12 UI.context = new UI.TreeElement() 14 class C extends UI.TreeElement {
|
D | parameterReferencesOtherParameter2.js | 6 class UI { class 18 var UI = /** @class */ (function () { 19 function UI(model, foo) { class in UI 22 return UI;
|
D | parameterReferencesOtherParameter1.js | 6 class UI { class 18 var UI = /** @class */ (function () { 19 function UI(model, foo) { class in UI 22 return UI;
|
/third_party/flutter/skia/third_party/externals/sdl/src/core/winrt/ |
D | SDL_winrtapp_direct3d.h | 32 virtual void SetWindow(Windows::UI::Core::CoreWindow^ window); 48 Windows::UI::ApplicationSettings::SettingsPane ^p, 49 Windows::UI::ApplicationSettings::SettingsPaneCommandsRequestedEventArgs ^args); 57 …void OnWindowSizeChanged(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::WindowSizeChang… 63 …void OnWindowActivated(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::WindowActivatedEv… 64 …void OnWindowClosed(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::CoreWindowEventArgs^… 65 …void OnVisibilityChanged(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::VisibilityChang… 66 …void OnPointerPressed(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::PointerEventArgs^ … 67 …void OnPointerReleased(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::PointerEventArgs^… 68 …void OnPointerWheelChanged(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::PointerEventA… [all …]
|
D | SDL_winrtapp_xaml.cpp | 57 WINRT_OnPointerPressedViaXAML(Platform::Object^ sender, Windows::UI::Xaml::Input::PointerRoutedEven… 63 WINRT_OnPointerMovedViaXAML(Platform::Object^ sender, Windows::UI::Xaml::Input::PointerRoutedEventA… 69 WINRT_OnPointerReleasedViaXAML(Platform::Object^ sender, Windows::UI::Xaml::Input::PointerRoutedEve… 75 WINRT_OnPointerWheelChangedViaXAML(Platform::Object^ sender, Windows::UI::Xaml::Input::PointerRoute… 110 using namespace Windows::UI::Core; in SDL_WinRTInitXAMLApp() 111 using namespace Windows::UI::Xaml; in SDL_WinRTInitXAMLApp() 112 using namespace Windows::UI::Xaml::Controls; in SDL_WinRTInitXAMLApp() 113 using namespace Windows::UI::Xaml::Input; in SDL_WinRTInitXAMLApp() 114 using namespace Windows::UI::Xaml::Media; in SDL_WinRTInitXAMLApp()
|
D | SDL_winrtapp_direct3d.cpp | 40 using namespace Windows::UI::Core; 41 using namespace Windows::UI::Input; 44 using namespace Windows::Phone::UI::Input; 387 Windows::UI::Core::SystemNavigationManager::GetForCurrentView()->BackRequested += 410 using namespace Windows::UI::ApplicationSettings; 501 Windows::UI::ApplicationSettings::SettingsPane ^p, 502 Windows::UI::ApplicationSettings::SettingsPaneCommandsRequestedEventArgs ^args) 505 using namespace Windows::UI::ApplicationSettings; 506 using namespace Windows::UI::Popups; 732 WINRT_LogPointerEvent(const char * header, Windows::UI::Core::PointerEventArgs ^ args, Windows::Fou… [all …]
|
/third_party/openssl/crypto/ui/ |
D | ui_lib.c | 18 UI *UI_new(void) in UI_new() 23 UI *UI_new_method(const UI_METHOD *method) in UI_new_method() 25 UI *ret = OPENSSL_zalloc(sizeof(*ret)); in UI_new_method() 73 void UI_free(UI *ui) in UI_free() 86 static int allocate_string_stack(UI *ui) in allocate_string_stack() 97 static UI_STRING *general_allocate_prompt(UI *ui, const char *prompt, in general_allocate_prompt() 119 static int general_allocate_string(UI *ui, const char *prompt, in general_allocate_string() 146 static int general_allocate_boolean(UI *ui, in general_allocate_boolean() 198 int UI_add_input_string(UI *ui, const char *prompt, int flags, in UI_add_input_string() 207 int UI_dup_input_string(UI *ui, const char *prompt, int flags, in UI_dup_input_string() [all …]
|
D | ui_local.h | 31 int (*ui_open_session) (UI *ui); 32 int (*ui_write_string) (UI *ui, UI_STRING *uis); 37 int (*ui_flush) (UI *ui); 38 int (*ui_read_string) (UI *ui, UI_STRING *uis); 39 int (*ui_close_session) (UI *ui); 44 void *(*ui_duplicate_data) (UI *ui, void *ui_data); 45 void (*ui_destroy_data) (UI *ui, void *ui_data); 53 char *(*ui_construct_prompt) (UI *ui, const char *object_desc,
|
D | ui_openssl.c | 193 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl); 195 static int read_string(UI *ui, UI_STRING *uis); 196 static int write_string(UI *ui, UI_STRING *uis); 198 static int open_console(UI *ui); 199 static int echo_console(UI *ui); 200 static int noecho_console(UI *ui); 201 static int close_console(UI *ui); 207 static int write_string(UI *ui, UI_STRING *uis) in write_string() 224 static int read_string(UI *ui, UI_STRING *uis) in read_string() 280 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) in read_string_inner() [all …]
|
/third_party/openssl/doc/man3/ |
D | UI_new.pod | 5 UI, 19 typedef struct ui_st UI; 21 UI *UI_new(void); 22 UI *UI_new_method(const UI_METHOD *method); 23 void UI_free(UI *ui); 25 int UI_add_input_string(UI *ui, const char *prompt, int flags, 27 int UI_dup_input_string(UI *ui, const char *prompt, int flags, 29 int UI_add_verify_string(UI *ui, const char *prompt, int flags, 32 int UI_dup_verify_string(UI *ui, const char *prompt, int flags, 35 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc, [all …]
|
D | UI_create_method.pod | 24 int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui)); 26 int (*writer) (UI *ui, UI_STRING *uis)); 27 int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui)); 29 int (*reader) (UI *ui, UI_STRING *uis)); 30 int UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui)); 32 void *(*duplicator) (UI *ui, void *ui_data), 33 void (*destructor)(UI *ui, void *ui_data)); 35 char *(*prompt_constructor) (UI *ui, 41 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *); 42 int (*UI_method_get_writer(const UI_METHOD *method)) (UI *, UI_STRING *); [all …]
|
D | UI_STRING.pod | 36 int UI_set_result(UI *ui, UI_STRING *uis, const char *result); 37 int UI_set_result_ex(UI *ui, UI_STRING *uis, const char *result, int len); 41 The B<UI_STRING> gets created internally and added to a B<UI> whenever 82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the 86 For B<UIT_BOOLEAN> type UI strings, this sets the first character of 102 UI_get_string_type() returns the UI string type. 104 UI_get_input_flags() returns the UI string flags. 106 UI_get0_output_string() returns the UI string output string. 108 UI_get0_action_string() returns the UI string action description 109 string for B<UIT_BOOLEAN> type UI strings, NULL for any other type. [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/winrt/ |
D | SDL_winrtevents_c.h | 56 extern Uint8 WINRT_GetSDLButtonForPointerPoint(Windows::UI::Input::PointerPoint ^pt); 57 extern void WINRT_ProcessPointerPressedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^… 58 extern void WINRT_ProcessPointerMovedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^po… 59 extern void WINRT_ProcessPointerReleasedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint … 60 extern void WINRT_ProcessPointerEnteredEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^… 61 extern void WINRT_ProcessPointerExitedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^p… 62 extern void WINRT_ProcessPointerWheelChangedEvent(SDL_Window *window, Windows::UI::Input::PointerPo… 66 extern void WINRT_ProcessKeyDownEvent(Windows::UI::Core::KeyEventArgs ^args); 67 extern void WINRT_ProcessKeyUpEvent(Windows::UI::Core::KeyEventArgs ^args); 68 extern void WINRT_ProcessCharacterReceivedEvent(Windows::UI::Core::CharacterReceivedEventArgs ^args…
|
D | SDL_winrtpointerinput.cpp | 59 using namespace Windows::UI::Core; in WINRT_TransformCursorPosition() 132 WINRT_GetSDLButtonForPointerPoint(Windows::UI::Input::PointerPoint ^pt) 134 using namespace Windows::UI::Input; 204 WINRT_IsTouchEvent(Windows::UI::Input::PointerPoint ^pointerPoint) 220 void WINRT_ProcessPointerPressedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^pointer… 254 WINRT_ProcessPointerMovedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^pointerPoint) 279 void WINRT_ProcessPointerReleasedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^pointe… 309 void WINRT_ProcessPointerEnteredEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^pointer… 320 void WINRT_ProcessPointerExitedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^pointerP… 332 WINRT_ProcessPointerWheelChangedEvent(SDL_Window *window, Windows::UI::Input::PointerPoint ^pointer…
|
D | SDL_winrtmouse.cpp | 30 using namespace Windows::UI::Core; 31 using Windows::UI::Core::CoreCursor; 174 …ABI::Windows::UI::Core::ICoreCursor * iblankCursor = reinterpret_cast<ABI::Windows::UI::Core::ICor… in WINRT_ShowCursor() 175 …ABI::Windows::UI::Core::ICoreWindow * icoreWindow = reinterpret_cast<ABI::Windows::UI::Core::ICore… in WINRT_ShowCursor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SpeculateAroundPHIs.cpp | 58 auto *UI = cast<Instruction>(U.getUser()); in isSafeToSpeculatePHIUsers() local 65 if (UI->getParent() != PhiBB) { in isSafeToSpeculatePHIUsers() 66 LLVM_DEBUG(dbgs() << " Unsafe: use in a different BB: " << *UI << "\n"); in isSafeToSpeculatePHIUsers() 70 if (auto CS = ImmutableCallSite(UI)) { in isSafeToSpeculatePHIUsers() 73 "callsite cannot de duplicated: " << *UI << '\n'); in isSafeToSpeculatePHIUsers() 84 if (mayBeMemoryDependent(*UI)) { in isSafeToSpeculatePHIUsers() 85 LLVM_DEBUG(dbgs() << " Unsafe: can't speculate use: " << *UI << "\n"); in isSafeToSpeculatePHIUsers() 92 Visited.insert(UI); in isSafeToSpeculatePHIUsers() 93 DFSStack.push_back({UI, UI->value_op_begin()}); in isSafeToSpeculatePHIUsers() 96 std::tie(UI, OpIt) = DFSStack.pop_back_val(); in isSafeToSpeculatePHIUsers() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonOptimizeSZextends.cpp | 77 for (auto UI = Arg.use_begin(); UI != Arg.use_end();) { in runOnFunction() local 78 if (isa<SExtInst>(*UI)) { in runOnFunction() 79 Instruction* Use = cast<Instruction>(*UI); in runOnFunction() 83 ++UI; in runOnFunction() 89 ++UI; in runOnFunction() 131 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end(); in runOnFunction() local 132 UI != UE; ++UI) { in runOnFunction() 133 const Use &TheUse = UI.getUse(); in runOnFunction()
|
/third_party/typescript/tests/cases/conformance/salsa/ |
D | typeFromPropertyAssignment26.ts | 6 var UI = {} variable 7 UI.TreeElement = class { 12 UI.context = new UI.TreeElement() 14 class C extends UI.TreeElement {
|
/third_party/node/deps/npm/node_modules/cliui/ |
D | index.js | 13 function UI (opts) { class 19 UI.prototype.span = function () { 24 UI.prototype.resetOutput = function () { 28 UI.prototype.div = function () { 45 UI.prototype._shouldApplyLayoutDSL = function () { 50 UI.prototype._applyLayoutDSL = function (str) { 86 UI.prototype._colFromString = function (str) { 93 UI.prototype._measurePadding = function (str) { 99 UI.prototype.toString = function () { 118 UI.prototype.rowToString = function (row, lines) { [all …]
|
/third_party/mesa3d/src/panfrost/lib/tests/ |
D | test-clear.c | 39 #define UI(r, g, b, a) { .ui = { r, g, b, a } } macro 118 { PIPE_FORMAT_R8G8B8A8_UINT, D, UI(0xCA, 0xFE, 0xBA, 0xBE), RRRR(0xBEBAFECA) }, 119 { PIPE_FORMAT_R8G8B8A8_UINT, _, UI(0xCA, 0xFE, 0xBA, 0xBE), RRRR(0xBEBAFECA) }, 121 { PIPE_FORMAT_B8G8R8A8_UINT, D, UI(0xCA, 0xFE, 0xBA, 0xBE), RRRR(0xBECAFEBA) }, 122 { PIPE_FORMAT_B8G8R8A8_UINT, _, UI(0xCA, 0xFE, 0xBA, 0xBE), RRRR(0xBECAFEBA) }, 126 { PIPE_FORMAT_R16G16B16A16_UINT, D, UI(0xCAFE, 0xBABE, 0xABAD, 0x1DEA), 129 { PIPE_FORMAT_R16G16B16A16_UINT, _, UI(0xCAFE, 0xBABE, 0xABAD, 0x1DEA), 133 UI(0xCAFEBABE, 0xABAD1DEA, 0xDEADBEEF, 0xABCDEF01), 137 UI(0xCAFEBABE, 0xABAD1DEA, 0xDEADBEEF, 0xABCDEF01),
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/winrt/ |
D | SwapChainPanelNativeWindow.h | 40 ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> mSwapChainPanel; 41 ComPtr<ABI::Windows::UI::Core::ICoreDispatcher> mSwapChainPanelDispatcher; 49 ABI::Windows::UI::Xaml::ISizeChangedEventHandler> 66 (IInspectable *sender, ABI::Windows::UI::Xaml::ISizeChangedEventArgs *sizeChangedEventArgs) in IFACEMETHOD() 92 const ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> &swapChainPanel, 93 const ComPtr<ABI::Windows::UI::Core::ICoreDispatcher> &dispatcher,
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/winrt/ |
D | SwapChainPanelNativeWindow.h | 40 ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> mSwapChainPanel; 41 ComPtr<ABI::Windows::UI::Core::ICoreDispatcher> mSwapChainPanelDispatcher; 49 ABI::Windows::UI::Xaml::ISizeChangedEventHandler> 66 (IInspectable *sender, ABI::Windows::UI::Xaml::ISizeChangedEventArgs *sizeChangedEventArgs) in IFACEMETHOD() 92 const ComPtr<ABI::Windows::UI::Xaml::Controls::ISwapChainPanel> &swapChainPanel, 93 const ComPtr<ABI::Windows::UI::Core::ICoreDispatcher> &dispatcher,
|