Home
last modified time | relevance | path

Searched refs:RadioButton (Results 1 – 23 of 23) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowRadioButtonTest.java10 import android.widget.RadioButton;
23 private RadioButton radioButton;
28 radioButton = new RadioButton(context); in setUp()
66 RadioButton radioButton1 = new RadioButton(context); in shouldInformRadioGroupThatItIsChecked()
68 RadioButton radioButton2 = new RadioButton(context); in shouldInformRadioGroupThatItIsChecked()
/external/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DBufferSizeView.java25 import android.widget.RadioButton;
39 private RadioButton mBufferSizeRadio1;
40 private RadioButton mBufferSizeRadio2;
41 private RadioButton mBufferSizeRadio3;
100 mBufferSizeRadio1 = (RadioButton) findViewById(R.id.bufferSize1); in initializeViews()
107 mBufferSizeRadio2 = (RadioButton) findViewById(R.id.bufferSize2); in initializeViews()
114 mBufferSizeRadio3 = (RadioButton) findViewById(R.id.bufferSize3); in initializeViews()
135 boolean checked = ((RadioButton) view).isChecked(); in onSizeRadioButtonClicked()
DTestInputActivity.java31 import android.widget.RadioButton;
242 RadioButton radioButton = (RadioButton) view; in onMarginBoxClicked()
/external/autotest/frontend/client/src/autotest/common/table/
DRadioButtonSetFilter.java7 import com.google.gwt.user.client.ui.RadioButton;
15 private Vector<RadioButton> buttons;
34 RadioButton radioButton = new RadioButton(name, label); in addRadioButon()
58 selected = Integer.parseInt(((RadioButton) event.getSource()).getFormValue()); in onValueChange()
/external/skia/tools/viewer/
DMSKPSlide.cpp46 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()
DSkSLSlide.cpp240 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()
DViewer.cpp1818 ImGui::RadioButton("Raster", &newBackend, sk_app::Window::kRaster_BackendType); in drawImGui()
1820 ImGui::RadioButton("OpenGL", &newBackend, sk_app::Window::kNativeGL_BackendType); in drawImGui()
1823 ImGui::RadioButton("ANGLE", &newBackend, sk_app::Window::kANGLE_BackendType); in drawImGui()
1827 ImGui::RadioButton("Dawn", &newBackend, sk_app::Window::kDawn_BackendType); in drawImGui()
1831 ImGui::RadioButton("Vulkan", &newBackend, sk_app::Window::kVulkan_BackendType); in drawImGui()
1835 ImGui::RadioButton("Metal", &newBackend, sk_app::Window::kMetal_BackendType); in drawImGui()
1839 ImGui::RadioButton("Direct3D", &newBackend, sk_app::Window::kDirect3D_BackendType); in drawImGui()
1875 ImGui::RadioButton(SkStringPrintf("%d", curMSAA).c_str(), in drawImGui()
1922 if (ImGui::RadioButton(gPathRendererNames[x].c_str(), prevPr == x)) { in drawImGui()
1931 ImGui::RadioButton("Software", true); in drawImGui()
[all …]
/external/autotest/frontend/client/src/autotest/afe/
DJobOwnerFilter.java17 import com.google.gwt.user.client.ui.RadioButton;
27 private RadioButton allUsersRadio, selectUserRadio;
33 allUsersRadio = new RadioButton(radioGroupName, "All users"); in JobOwnerFilter()
34 selectUserRadio = new RadioButton(radioGroupName); in JobOwnerFilter()
DIRadioButton.java5 import com.google.gwt.user.client.ui.RadioButton;
10 public static class RadioButtonImpl extends RadioButton implements IRadioButton {
/external/python/cpython3/Lib/msilib/
Dschema.py434 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.add_field(8,'Text',8000)
443 RadioButton.add_field(9,'Help',7986)
[all …]
/external/oboe/samples/LiveEffect/src/main/java/com/google/oboe/samples/liveEffect/
DMainActivity.java31 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()
/external/autotest/frontend/client/src/autotest/tko/
DFilterSelector.java17 import com.google.gwt.user.client.ui.RadioButton;
76 private RadioButton all;
77 private RadioButton any;
89 all = new RadioButton("booleanOp" + id, "all of"); in FilterSelector()
90 any = new RadioButton("booleanOp" + id, "any of"); in FilterSelector()
/external/skqp/tools/viewer/
DNIMASlide.cpp149 ImGui::RadioButton("Skia Backend", &useImmediate, 0); in renderGUI()
150 ImGui::RadioButton("Immediate Backend", &useImmediate, 1); in renderGUI()
DViewer.cpp1503 ImGui::RadioButton("Raster", &newBackend, sk_app::Window::kRaster_BackendType); in drawImGui()
1505 ImGui::RadioButton("OpenGL", &newBackend, sk_app::Window::kNativeGL_BackendType); in drawImGui()
1508 ImGui::RadioButton("ANGLE", &newBackend, sk_app::Window::kANGLE_BackendType); in drawImGui()
1512 ImGui::RadioButton("Vulkan", &newBackend, sk_app::Window::kVulkan_BackendType); in drawImGui()
1529 ImGui::RadioButton("1", &sampleCount, 1); ImGui::SameLine(); in drawImGui()
1530 ImGui::RadioButton("4", &sampleCount, 4); ImGui::SameLine(); in drawImGui()
1531 ImGui::RadioButton("8", &sampleCount, 8); ImGui::SameLine(); in drawImGui()
1532 ImGui::RadioButton("16", &sampleCount, 16); in drawImGui()
1575 if (ImGui::RadioButton(gPathRendererNames[x].c_str(), prevPr == x)) { in drawImGui()
1584 ImGui::RadioButton("Software", true); in drawImGui()
[all …]
/external/python/cpython2/Tools/msi/
Dschema.py434 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.add_field(8,'Text',8000)
443 RadioButton.add_field(9,'Help',7986)
[all …]
Duisample.py748 RadioButton = [ variable
/external/python/cpython2/Lib/msilib/
Dschema.py434 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.add_field(8,'Text',8000)
443 RadioButton.add_field(9,'Help',7986)
[all …]
/external/sonivox/jet_tools/JetCreator/
DJetCtrls.py81 class JetRadioButton(wx.RadioButton):
84 wx.RadioButton.__init__(self, parent, id=id, label=label, pos=pos, size=size)
93 wx.RadioButton.SetValue(self, val)
95 wx.RadioButton.SetValue(self, val)
97 wx.RadioButton.SetValue(self, False)
/external/autotest/frontend/client/src/autotest/public/
Dafeclient.css339 .radio-chooser .gwt-RadioButton {
/external/mesa3d/src/imgui/
Dimgui_widgets.cpp965 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… in ColorEditOptionsPopup()
4536 …if (RadioButton("HSV", (opts & ImGuiColorEditFlags_HSV) != 0)) opts = (opts & ~ImGuiColorEditFlags… in ColorEditOptionsPopup()
4537 …if (RadioButton("HEX", (opts & ImGuiColorEditFlags_HEX) != 0)) opts = (opts & ~ImGuiColorEditFlags… in ColorEditOptionsPopup()
4542 …if (RadioButton("0..255", (opts & ImGuiColorEditFlags_Uint8) != 0)) opts = (opts & ~ImGuiColor… in ColorEditOptionsPopup()
4543 …if (RadioButton("0.00..1.00", (opts & ImGuiColorEditFlags_Float) != 0)) opts = (opts & ~ImGuiColor… in ColorEditOptionsPopup()
Dimgui.h394 …IMGUI_API bool RadioButton(const char* label, bool active); // use wit…
395 …IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcu…
/external/python/cpython2/Doc/library/
Dmsilib.rst528 …`RadioButton Table <https://msdn.microsoft.com/library?url=/library/en-us/msi/setup/radiobutton_ta…
/external/python/cpython3/Doc/library/
Dmsilib.rst535 `RadioButton Table <https://msdn.microsoft.com/en-us/library/windows/desktop/aa370962.aspx>`_