Searched refs:CheckBox (Results 1 – 20 of 20) sorted by relevance
22 import android.widget.CheckBox;79 CheckBox cbEnableAecm = (CheckBox) v.findViewById(R.id.cbAecm); in onCreateView()83 CheckBox cbEnableAecm = (CheckBox) checkBox; in onCreateView()88 CheckBox cbEnableNs = (CheckBox) v.findViewById(R.id.cbNoiseSuppression); in onCreateView()92 CheckBox cbEnableNs = (CheckBox) checkBox; in onCreateView()97 CheckBox cbEnableAgc = (CheckBox) v.findViewById(R.id.cbAutoGainControl); in onCreateView()101 CheckBox cbEnableAgc = (CheckBox) checkBox; in onCreateView()106 CheckBox cbEnableSpeaker = (CheckBox) v.findViewById(R.id.cbSpeaker); in onCreateView()110 CheckBox cbEnableSpeaker = (CheckBox) checkBox; in onCreateView()115 CheckBox cbEnableDebugAPM = in onCreateView()[all …]
20 import android.widget.CheckBox;44 CheckBox cbVideoReceive = (CheckBox) v.findViewById(R.id.cbVideoReceive); in onCreateView()48 CheckBox cbVideoReceive = (CheckBox) checkBox; in onCreateView()53 CheckBox cbVideoSend = (CheckBox) v.findViewById(R.id.cbVideoSend); in onCreateView()57 CheckBox cbVideoSend = (CheckBox) checkBox; in onCreateView()62 CheckBox cbAudio = (CheckBox) v.findViewById(R.id.cbAudio); in onCreateView()66 CheckBox cbAudio = (CheckBox) checkBox; in onCreateView()73 CheckBox cbLoopback = (CheckBox) v.findViewById(R.id.cbLoopback); in onCreateView()77 loopbackChanged((CheckBox) checkBox); in onCreateView()120 private void loopbackChanged(CheckBox cbLoopback) { in loopbackChanged()
22 import android.widget.CheckBox;97 CheckBox cbEnableNack = (CheckBox) v.findViewById(R.id.cbNack); in onCreateView()101 CheckBox cbEnableNack = (CheckBox) checkBox; in onCreateView()106 CheckBox cbEnableVideoRTPDump = in onCreateView()107 (CheckBox) v.findViewById(R.id.cbVideoRTPDump); in onCreateView()111 CheckBox cbEnableVideoRTPDump = (CheckBox) checkBox; in onCreateView()
3 android.widget.CheckBox checkable clickable focusable name='Title0'4 android.widget.CheckBox checkable clickable focusable name='Title1'5 android.widget.CheckBox checkable clickable focusable name='AriaLabel2'6 android.widget.CheckBox checkable clickable focusable name='LabelledBy3'7 android.widget.CheckBox checkable clickable focusable name='LabelledBy4'8 android.widget.CheckBox checkable clickable focusable name='DescribedBy5'
9 android.widget.CheckBox checkable clickable focusable name='Checkbox: '
3 import android.widget.CheckBox;15 CheckBox checkBox = new CheckBox(null); in testWorks()
7 import android.widget.CheckBox;18 private CheckBox mUseAdditionalAuthenticationCheckbox;32 mUseAdditionalAuthenticationCheckbox = new CheckBox(getContext()); in createContent()
7 import android.widget.CheckBox;16 public class TranslateCheckBox extends CheckBox implements OnCheckedChangeListener {
14 import android.widget.CheckBox;223 CheckBox checkBox = (CheckBox) wrapper.findViewById(R.id.infobar_extra_check); in setControlsEnabled()
20 ASSERT(GetType() == CPDF_FormField::CheckBox || GetType() == CPDF_FormField::RadioButton); in GetOnStateName()41 ASSERT(GetType() == CPDF_FormField::CheckBox || GetType() == CPDF_FormField::RadioButton); in SetOnStateName()85 ASSERT(GetType() == CPDF_FormField::CheckBox || GetType() == CPDF_FormField::RadioButton); in GetCheckedAPState()87 if (GetType() == CPDF_FormField::RadioButton || GetType() == CPDF_FormField::CheckBox) { in GetCheckedAPState()101 ASSERT(GetType() == CPDF_FormField::CheckBox || GetType() == CPDF_FormField::RadioButton); in GetExportValue()103 if (GetType() == CPDF_FormField::RadioButton || GetType() == CPDF_FormField::CheckBox) { in GetExportValue()118 ASSERT(GetType() == CPDF_FormField::CheckBox || GetType() == CPDF_FormField::RadioButton); in IsChecked()125 ASSERT(GetType() == CPDF_FormField::CheckBox || GetType() == CPDF_FormField::RadioButton); in IsDefaultChecked()136 ASSERT(GetType() == CPDF_FormField::CheckBox || GetType() == CPDF_FormField::RadioButton); in CheckControl()
13 if (pField->GetType() == CPDF_FormField::CheckBox) { in PDF_FormField_IsUnison()59 m_Type = CheckBox; in SyncFieldFlags()106 case CPDF_FormField::CheckBox: in ResetField()235 case CheckBox: in GetFieldType()304 if (GetType() == CheckBox || GetType() == RadioButton) { in GetValue()343 case CheckBox: in SetValue()727 if (m_Type == RadioButton || m_Type == CheckBox) { in UpdateAP()799 ASSERT(GetType() == CheckBox || GetType() == RadioButton); in CheckControl()863 ASSERT(GetType() == CheckBox || GetType() == RadioButton); in GetCheckValue()883 ASSERT(GetType() == CheckBox || GetType() == RadioButton); in SetCheckValue()
1391 …if (iType == CPDF_FormField::PushButton || iType == CPDF_FormField::CheckBox || iType == CPDF_Form… in CheckRequiredFields()1471 …if (pField->GetType() == CPDF_FormField::CheckBox || pField->GetType() == CPDF_FormField::RadioBut… in ExportToFDF()
15 import android.widget.CheckBox;33 private CheckBox mSuppressCheckBox;86 mSuppressCheckBox = (CheckBox) layout.findViewById(R.id.suppress_js_modal_dialogs); in showJavascriptAppModalDialog()
13 import android.widget.CheckBox;255 final CheckBox suppress = (CheckBox) dialog.findViewById( in testDisableRepeatedDialogs()
19 import android.widget.CheckBox;226 final CheckBox pinCheckBox = (CheckBox)pinEntry.findViewById(R.id.pin_dialog_check); in displayAuthenticationPrompt()
63 class JetCheckBox(wx.CheckBox):66 wx.CheckBox.__init__(self, parent, id=id, label=label, pos=pos, size=size)75 wx.CheckBox.SetValue(self, val)77 wx.CheckBox.SetValue(self, val)79 wx.CheckBox.SetValue(self, False)
226 self.chkGraphLabels = wx.CheckBox(pnlGraph, -1, JetDefs.GRAPH_LBLS)227 self.chkGraphClips = wx.CheckBox(pnlGraph, -1, JetDefs.GRAPH_TRIGGER)228 self.chkGraphAppEvts = wx.CheckBox(pnlGraph, -1, JetDefs.GRAPH_APP)
46 this.checkBoxOnlyChrome = new System.Windows.Forms.CheckBox(); in InitializeComponent()199 private System.Windows.Forms.CheckBox checkBoxOnlyChrome;
278 … assertThat(((CheckBox) mediaView.findViewById(R.id.true_checkbox)).isChecked(), equalTo(true)); in testCheckBoxCheckedIsSet()279 … assertThat(((CheckBox) mediaView.findViewById(R.id.false_checkbox)).isChecked(), equalTo(false)); in testCheckBoxCheckedIsSet()280 …assertThat(((CheckBox) mediaView.findViewById(R.id.default_checkbox)).isChecked(), equalTo(false)); in testCheckBoxCheckedIsSet()
1079 CheckBox, enumerator