/third_party/skia/tools/viewer/ |
H A D | MSKPSlide.cpp | 46 ImGui::RadioButton( "1", &fFPS, 1); ImGui::SameLine(); in draw() 47 ImGui::RadioButton( "15", &fFPS, 15); ImGui::SameLine(); in draw() 48 ImGui::RadioButton( "30", &fFPS, 30); ImGui::SameLine(); in draw() 49 ImGui::RadioButton( "60", &fFPS, 60); ImGui::SameLine(); in draw() 50 ImGui::RadioButton("120", &fFPS, 120); ImGui::SameLine(); in draw() 51 ImGui::RadioButton("1:1", &fFPS, -1); // Draw one MSKP frame for each real viewer frame. in draw() 94 ImGui::RadioButton("root", &fDrawLayerID, -1); in draw() 99 ImGui::RadioButton(fLayerIDStrings[i].c_str(), &fDrawLayerID, layerIDs[i]); in draw()
|
H A D | SkSLSlide.cpp | 240 ImGui::RadioButton("Fill", &fGeometry, kFill); ImGui::SameLine(); in draw() 241 ImGui::RadioButton("Circle", &fGeometry, kCircle); ImGui::SameLine(); in draw() 242 ImGui::RadioButton("RoundRect", &fGeometry, kRoundRect); ImGui::SameLine(); in draw() 243 ImGui::RadioButton("Capsule", &fGeometry, kCapsule); ImGui::SameLine(); in draw() 244 ImGui::RadioButton("Text", &fGeometry, kText); in draw()
|
H A D | Viewer.cpp | 1898 ImGui::RadioButton("Raster", &newBackend, sk_app::Window::kRaster_BackendType); in drawImGui() 1900 ImGui::RadioButton("OpenGL", &newBackend, sk_app::Window::kNativeGL_BackendType); in drawImGui() 1903 ImGui::RadioButton("ANGLE", &newBackend, sk_app::Window::kANGLE_BackendType); in drawImGui() 1907 ImGui::RadioButton("Dawn", &newBackend, sk_app::Window::kDawn_BackendType); in drawImGui() 1911 ImGui::RadioButton("Vulkan", &newBackend, sk_app::Window::kVulkan_BackendType); in drawImGui() 1915 ImGui::RadioButton("Metal", &newBackend, sk_app::Window::kMetal_BackendType); in drawImGui() 1918 ImGui::RadioButton("Metal (Graphite)", &newBackend, in drawImGui() 1924 ImGui::RadioButton("Direct3D", &newBackend, sk_app::Window::kDirect3D_BackendType); in drawImGui() 1960 ImGui::RadioButton(SkStringPrintf("%d", curMSAA).c_str(), in drawImGui() 2007 if (ImGui::RadioButton(gPathRendererName in drawImGui() [all...] |
/third_party/python/Lib/msilib/ |
H A D | schema.py | 434 RadioButton = Table('RadioButton') variable 435 RadioButton.add_field(1,'Property',11592) 436 RadioButton.add_field(2,'Order',9474) 437 RadioButton.add_field(3,'Value',3392) 438 RadioButton.add_field(4,'X',1282) 439 RadioButton.add_field(5,'Y',1282) 440 RadioButton.add_field(6,'Width',1282) 441 RadioButton.add_field(7,'Height',1282) 442 RadioButton [all...] |
/third_party/skia/third_party/externals/oboe/samples/LiveEffect/src/main/java/com/google/oboe/samples/liveEffect/ |
H A D | MainActivity.java | 31 import android.widget.RadioButton; 107 findViewById(R.id.aaudioButton).setOnClickListener(new RadioButton.OnClickListener(){ in onCreate() 110 if (((RadioButton)v).isChecked()) { in onCreate() 115 findViewById(R.id.slesButton).setOnClickListener(new RadioButton.OnClickListener(){ in onCreate() 118 if (((RadioButton)v).isChecked()) { in onCreate()
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
H A D | TestInputActivity.java | 32 import android.widget.RadioButton; 247 RadioButton radioButton = (RadioButton) view; in onMarginBoxClicked()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 561 ImGui::RadioButton("radio a", &e, 0); ImGui::SameLine(); in ShowDemoWindowWidgets() 562 ImGui::RadioButton("radio b", &e, 1); ImGui::SameLine(); in ShowDemoWindowWidgets() 563 ImGui::RadioButton("radio c", &e, 2); in ShowDemoWindowWidgets() 2107 if (ImGui::RadioButton("Copy", mode == Mode_Copy)) { mode = Mode_Copy; } ImGui::SameLine(); in ShowDemoWindowWidgets() 2108 if (ImGui::RadioButton("Move", mode == Mode_Move)) { mode = Mode_Move; } ImGui::SameLine(); in ShowDemoWindowWidgets() 2109 if (ImGui::RadioButton("Swap", mode == Mode_Swap)) { mode = Mode_Swap; } in ShowDemoWindowWidgets() 3717 ImGui::SameLine(); ImGui::RadioButton("Text", &contents_type, CT_Text); 3718 ImGui::SameLine(); ImGui::RadioButton("FillButton", &contents_type, CT_FillButton); 5974 if (ImGui::RadioButton("Opaque", alpha_flags == ImGuiColorEditFlags_None)) { alpha_flags = ImGuiColorEditFlags_None; } ImGui::SameLine(); 5975 if (ImGui::RadioButton("Alph [all...] |
H A D | imgui_widgets.cpp | 10 // [SECTION] Widgets: Main (Button, Image, Checkbox, RadioButton, ProgressBar, Bullet, etc.) 432 // - RadioButton() 1176 bool ImGui::RadioButton(const char* label, bool active) in RadioButton() function in ImGui 1229 // FIXME: This would work nicely if it was a public template, e.g. 'template<T> RadioButton(const char* label, T* v, T v_button)', but I'm not sure how we would expose it.. 1230 bool ImGui::RadioButton(const char* label, int* v, int v_button) in RadioButton() function in ImGui 1232 const bool pressed = RadioButton(label, *v == v_button); in RadioButton() 5591 if (RadioButton("RGB", (opts & ImGuiColorEditFlags_DisplayRGB) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayRGB; 5592 if (RadioButton("HSV", (opts & ImGuiColorEditFlags_DisplayHSV) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayHSV; 5593 if (RadioButton("Hex", (opts & ImGuiColorEditFlags_DisplayHex) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayHex; 5598 if (RadioButton(" [all...] |
H A D | imgui.h | 511 IMGUI_API bool RadioButton(const char* label, bool active); // use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; } 512 IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_widgets.cpp | 10 // [SECTION] Widgets: Main (Button, Image, Checkbox, RadioButton, ProgressBar, Bullet, etc.) 383 // - RadioButton() 965 bool ImGui::RadioButton(const char* label, bool active) in RadioButton() function in ImGui 1016 bool ImGui::RadioButton(const char* label, int* v, int v_button) in RadioButton() function in ImGui 1018 const bool pressed = RadioButton(label, *v == v_button); in RadioButton() 4535 if (RadioButton("RGB", (opts & ImGuiColorEditFlags_RGB) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_RGB; 4536 if (RadioButton("HSV", (opts & ImGuiColorEditFlags_HSV) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_HSV; 4537 if (RadioButton("HEX", (opts & ImGuiColorEditFlags_HEX) != 0)) opts = (opts & ~ImGuiColorEditFlags__InputsMask) | ImGuiColorEditFlags_HEX; 4542 if (RadioButton("0..255", (opts & ImGuiColorEditFlags_Uint8) != 0)) opts = (opts & ~ImGuiColorEditFlags__DataTypeMask) | ImGuiColorEditFlags_Uint8; 4543 if (RadioButton("0.0 [all...] |
H A D | imgui.h | 394 IMGUI_API bool RadioButton(const char* label, bool active); // use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; } 395 IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer
|