/third_party/typescript/tests/baselines/reference/ |
H A D | typeFromPropertyAssignment30.js | 2 interface Combo { 6 const c: Combo = () => 1 7 // should not be an expando object, but contextually typed by Combo.p 14 // should not be an expando object, but contextually typed by Combo.p
|
/third_party/skia/tools/viewer/ |
H A D | Viewer.cpp | 1975 if (ImGui::Combo("Pixel Geometry", &pixelGeometryIdx, in drawImGui() 2079 if (ImGui::Combo("Perspective", &perspectiveMode, "Off\0Real\0Fake\0\0")) { in drawImGui() 2095 if (ImGui::Combo("Anti-Alias", &aliasIdx, in drawImGui() 2133 if (ImGui::Combo(label, &itemIndex, items)) { in drawImGui() 2153 if (ImGui::Combo("Style", &styleIdx, in drawImGui() 2190 if (ImGui::Combo("Cap Type", &capIdx, in drawImGui() 2207 if (ImGui::Combo("Join Type", &joinIdx, in drawImGui() 2226 if (ImGui::Combo("Hinting", &hintingIdx, in drawImGui() 2248 if (ImGui::Combo(label, &itemIndex, items)) { in drawImGui() 2293 if (ImGui::Combo("Edgin in drawImGui() [all...] |
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 617 // Using the _simplified_ one-liner Combo() api here in ShowDemoWindowWidgets() 618 // See "Combo" section for examples of how to use the more flexible BeginCombo()/EndCombo() api. in ShowDemoWindowWidgets() 621 ImGui::Combo("combo", &item_current, items, IM_ARRAYSIZE(items)); in ShowDemoWindowWidgets() 623 "Using the simplified one-liner Combo API here.\nRefer to the \"Combo\" section below for an explanation of how to use the more flexible and general BeginCombo/EndCombo API."); in ShowDemoWindowWidgets() 1026 if (ImGui::TreeNode("Combo")) in ShowDemoWindowWidgets() 1058 // Simplified one-liner Combo() API, using values packed in a single constant string in ShowDemoWindowWidgets() 1061 ImGui::Combo("combo 2 (one-liner)", &item_current_2, "aaaa\0bbbb\0cccc\0dddd\0eeee\0\0"); in ShowDemoWindowWidgets() 1063 // Simplified one-liner Combo() using an array of const char* in ShowDemoWindowWidgets() 1065 static int item_current_3 = -1; // If the selection isn't within 0..count, Combo wo in ShowDemoWindowWidgets() [all...] |
H A D | imgui.h | 516 // Widgets: Combo Box 518 // - The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose. This is analogous to how ListBox are created. 521 IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1); 522 IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \0 within a string, end item-list with \0\0. e.g. "One\0Two\0Three\0" 523 IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1); 845 IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).
|
H A D | imgui_widgets.cpp | 1549 // - Combo() 1750 // Getter for the old Combo() API: const char*[] 1759 // Getter for the old Combo() API: "item1\0item2\0item3\0" 1781 bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int popup_max_height_in_items) in Combo() function in ImGui 1790 // The old Combo() API exposed "popup_max_height_in_items". The new more general BeginCombo() API doesn't have/need it, but we emulate it here. in Combo() 1825 // Combo box helper allowing to pass an array of strings. 1826 bool ImGui::Combo(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items) in Combo() function in ImGui 1828 const bool value_changed = Combo(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_in_items); in Combo() 1832 // Combo box helper allowing to pass all items in a single string literal holding multiple zero-terminated items "item1\0item2\0" 1833 bool ImGui::Combo(cons function in ImGui [all...] |
H A D | imgui.cpp | 8659 // Combo Box policy (we want a connecting edge) in FindBestWindowPosForPopupEx() 11340 cfg->ShowWindowsRects |= Combo("##show_windows_rect_type", &cfg->ShowWindowsRectsType, wrt_rects_names, WRT_Count, WRT_Count); in ShowMetricsWindow() 11356 cfg->ShowTablesRects |= Combo("##show_table_rects_type", &cfg->ShowTablesRectsType, trt_rects_names, TRT_Count, TRT_Count); in ShowMetricsWindow()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 399 // Widgets: Combo Box 401 // - The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose. 404 IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1); 405 IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \0 within a string, end item-list with \0\0. e.g. "One\0Two\0Three\0" 406 IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1); 612 IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).
|
H A D | imgui_memory_editor.h | 512 ImGui::Combo("##combo_endianess", &PreviewEndianess, "LE\0BE\0\0"); in DrawContents()
|
H A D | imgui_widgets.cpp | 1269 // - Combo() 1387 // Getter for the old Combo() API: const char*[] 1396 // Getter for the old Combo() API: "item1\0item2\0item3\0" 1418 bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int popup_max_height_in_items) in Combo() function in ImGui 1427 // The old Combo() API exposed "popup_max_height_in_items". The new more general BeginCombo() API doesn't have/need it, but we emulate it here. in Combo() 1458 // Combo box helper allowing to pass an array of strings. 1459 bool ImGui::Combo(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items) in Combo() function in ImGui 1461 const bool value_changed = Combo(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_in_items); in Combo() 1465 // Combo box helper allowing to pass all items in a single string literal holding multiple zero-terminated items "item1\0item2\0" 1466 bool ImGui::Combo(cons function in ImGui [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 9155 SDValue Combo = NewLoad; in LowerMLOAD() local 9159 Combo = DAG.getNode(ISD::VSELECT, dl, VT, Mask, NewLoad, PassThru); in LowerMLOAD() 9160 return DAG.getMergeValues({Combo, NewLoad.getValue(1)}, dl); in LowerMLOAD()
|