/external/libpcap/ |
tokdefs.h | 122 RADIO = 348, 226 #define RADIO 348
|
grammar.c | 157 RADIO = 348, 261 #define RADIO 348 793 "METACONNECT", "VPI", "VCI", "RADIO", "FISU", "LSSU", "MSU", "SIO", [all...] |
grammar.y | 191 %token RADIO 375 | RADIO { $$ = Q_RADIO; }
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
UsagePermissionPage.java | 76 mYesRadio = new Button(container, SWT.RADIO); 80 mNoRadio = new Button(container, SWT.RADIO); 122 // Radio buttons selected
|
WelcomeWizardPage.java | 78 mInstallNewRadio = new Button(container, SWT.RADIO); 126 mUseExistingRadio = new Button(container, SWT.RADIO);
|
/frameworks/base/core/java/android/os/ |
Build.java | 62 * The radio firmware version number. 64 * @deprecated The radio firmware version is frequently not 70 public static final String RADIO = getString(TelephonyProperties.PROPERTY_BASEBAND_VERSION); 329 * Returns the version string for the radio firmware. May return 330 * null (if, for instance, the radio is not currently on).
|
/external/chromium/chrome/browser/extensions/ |
extension_menu_manager.cc | 83 if (type_ != CHECKBOX && type_ != RADIO) 141 if (item->type() == ExtensionMenuItem::RADIO && item->checked()) 349 // Iterate backwards from |item| and uncheck any adjacent radio items. 355 if ((*i)->type() != ExtensionMenuItem::RADIO) 361 // Now iterate forwards from |item| and uncheck any adjacent radio items. 363 if ((*i)->type() != ExtensionMenuItem::RADIO) 388 if (item->type() == ExtensionMenuItem::RADIO) 431 item->type() == ExtensionMenuItem::RADIO) { 435 // RADIO items always get set to true when you click on them, but CHECKBOX 438 (item->type() == ExtensionMenuItem::RADIO) ? true : !was_checked [all...] |
extension_menu_manager.h | 68 RADIO, 169 // This should only be true for items of type CHECKBOX or RADIO. 264 // This is a helper function which takes care of de-selecting any other radio
|
extension_context_menu_api.cc | 27 "Only items with type \"radio\" or \"checkbox\" can be checked"; 97 } else if (type_string == "radio") { 98 *result = ExtensionMenuItem::RADIO; 121 type != ExtensionMenuItem::RADIO) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/ |
KeySelectionPage.java | 77 mUseExistingKey = new Button(composite, SWT.RADIO); 99 mCreateKey = new Button(composite, SWT.RADIO);
|
KeystoreSelectionPage.java | 70 mUseExistingKeystore = new Button(composite, SWT.RADIO); 76 mCreateKeystore = new Button(composite, SWT.RADIO);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
TestTargetPage.java | 76 mCurrentRadioButton = new Button(container, SWT.RADIO); 81 mExistingRadioButton = new Button(container, SWT.RADIO);
|
ProjectNamePage.java | 122 mCreateNewButton = new Button(container, SWT.RADIO); 127 mCreateExistingRadioButton = new Button(container, SWT.RADIO); 136 mCreateSampleRadioButton = new Button(container, SWT.RADIO);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
MainLaunchConfigTab.java | 136 mDefaultActionButton = new Button(group, SWT.RADIO); 154 mActivityActionButton = new Button(group, SWT.RADIO); 181 mDoNothingActionButton = new Button(group, SWT.RADIO);
|
EmulatorConfigTab.java | 156 // radio button for the target mode 166 mManualTargetButton = new Button(targetModeGroup, SWT.RADIO); 168 // Since there are only 2 radio buttons, we can put a listener on only one (they 171 // add the radio button 172 mAutoTargetButton = new Button(targetModeGroup, SWT.RADIO);
|
DeviceChooserDialog.java | 294 mDeviceRadioButton = new Button(top, SWT.RADIO); 316 // offset the selector from the radio button 382 Button radio2 = new Button(top, SWT.RADIO); 385 // offset the selector from the radio button
|
/frameworks/base/services/java/com/android/server/ |
BootReceiver.java | 91 .append("Radio: ").append(Build.RADIO).append("\n")
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
NewItemSelectionDialog.java | 261 * First add a radio area, which may be either 2 radio controls or 329 Button radio1 = new Button(content, SWT.RADIO); 333 Button radio2 = new Button(content, SWT.RADIO);
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
SdkUpdaterChooserDialog.java | 194 mLicenseRadioAccept = new Button(mPackageRootComposite, SWT.RADIO);
203 mLicenseRadioReject = new Button(mPackageRootComposite, SWT.RADIO);
215 mLicenseRadioAcceptAll = new Button(mPackageRootComposite, SWT.RADIO);
624 * Callback invoked when one of the radio license buttons is selected.
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
PackagesPage.java | 108 SORT_API_LEVEL (SWT.RADIO, "Sort by API Level"), 109 SORT_SOURCE (SWT.RADIO, "Sort by Repository") 327 mCheckSortApi = new Button(mGroupOptions, SWT.RADIO); 342 mCheckSortSource = new Button(mGroupOptions, SWT.RADIO); 441 // Toggle this button (radio or checkbox) 445 // SWT doesn't automatically switch radio buttons when using the 447 if (!value && (button.getStyle() & SWT.RADIO) != 0) { 448 // we'll be selecting this radio button, so deselect all ther other ones 453 (child.getStyle() & SWT.RADIO) != 0) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
ChooseAssetTypePage.java | 73 Button button = new Button(container, SWT.RADIO);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
ResourceChooser.java | 192 * Creates the radio button to switch between project and system resources. 196 mProjectButton = new Button(top, SWT.RADIO); 209 mSystemButton = new Button(top, SWT.RADIO);
|
/external/chromium/chrome/browser/tab_contents/ |
render_view_context_menu.cc | 314 // Extensions are only allowed one top-level slot (and it can't be a radio or 357 // If last item was of type radio but the current one isn't, auto-insert 359 if (last_type == ExtensionMenuItem::RADIO && 360 item->type() != ExtensionMenuItem::RADIO) { 386 } else if (item->type() == ExtensionMenuItem::RADIO) { 388 last_type != ExtensionMenuItem::RADIO) { [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
EmulatorControlPanel.java | 291 * Create Radio (on/off/roaming, for voice/data) controls. 414 mVoiceButton = new Button(phoneComp, SWT.RADIO); 435 mSmsButton = new Button(phoneComp, SWT.RADIO); 441 // Since there are only 2 radio buttons, we can put a listener on only one (they 563 mDecimalButton = new Button(manualLocationComp, SWT.RADIO); 566 mSexagesimalButton = new Button(manualLocationComp, SWT.RADIO); [all...] |
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
AvdCreationDialog.java | 335 mSdCardSizeRadio = new Button(sdCardGroup, SWT.RADIO); 362 mSdCardFileRadio = new Button(sdCardGroup, SWT.RADIO); 411 mSkinListRadio = new Button(skinGroup, SWT.RADIO); 434 mSkinSizeRadio = new Button(skinGroup, SWT.RADIO); [all...] |