HomeSort by relevance Sort by last modified time
    Searched refs:RADIO (Results 1 - 25 of 61) sorted by null

1 2 3

  /device/common/
clear-factory-images-variables.sh 24 unset RADIO
generate-factory-images-common.sh 26 RADIOSRC=radio.img
37 # Extract the bootloader(s) and radio(s) as necessary
40 unzip -d tmp ${SRCPREFIX}$PRODUCT-target_files-$BUILD.zip RADIO/$XLOADERSRC
44 unzip -d tmp ${SRCPREFIX}$PRODUCT-target_files-$BUILD.zip RADIO/$BOOTLOADERSRC
46 if test "$RADIO" != "" -a "$RADIOFILE" = ""
48 unzip -d tmp ${SRCPREFIX}$PRODUCT-target_files-$BUILD.zip RADIO/$RADIOSRC
52 unzip -d tmp ${SRCPREFIX}$PRODUCT-target_files-$BUILD.zip RADIO/radio-cdma.img
59 cp tmp/RADIO/$XLOADERSRC tmp/$PRODUCT-$VERSION/xloader-$DEVICE-$XLOADER.img
63 cp tmp/RADIO/$BOOTLOADERSRC tmp/$PRODUCT-$VERSION/bootloader-$DEVICE-$BOOTLOADER.im
    [all...]
  /device/asus/deb/factory-images/
generate-factory-images-package.sh 35 RADIO=deb-g00_1.23.0_0720
  /device/lge/hammerhead/factory-images/
generate-factory-images-package.sh 28 RADIO=m8974a-0.0.19.0.05
  /device/lge/mako/factory-images/
generate-factory-images-package.sh 44 RADIO=m9615a-cefwmazm-2.0.1700.84
  /device/asus/tilapia/factory-images/
generate-factory-images-package.sh 45 RADIOFILE=radio.img
46 RADIO=1231_0.18.0_0409
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationMenuListener.java 170 DEFAULT), SWT.RADIO, mode == DEFAULT);
173 SCREENS), SWT.RADIO, mode == SCREENS);
177 LOCALES), SWT.RADIO, mode == LOCALES);
194 INCLUDES), SWT.RADIO, mode == INCLUDES);
203 VARIATIONS), SWT.RADIO, mode == VARIATIONS);
210 CUSTOM), SWT.RADIO, mode == CUSTOM);
213 NONE), SWT.RADIO, mode == NONE);
  /external/libpcap/
tokdefs.h 122 RADIO = 348,
226 #define RADIO 348
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
UsagePermissionPage.java 77 mYesRadio = new Button(container, SWT.RADIO);
81 mNoRadio = new Button(container, SWT.RADIO);
124 // Radio buttons selected
WelcomeWizardPage.java 80 mInstallNewRadio = new Button(container, SWT.RADIO);
128 mUseExistingRadio = new Button(container, SWT.RADIO);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
LogCatMonitorDialog.java 73 final Button disableButton = new Button(c, SWT.RADIO);
77 final Button enableButton = new Button(c, SWT.RADIO);
  /external/chromium_org/chrome/browser/extensions/
context_menu_matcher.cc 55 // (and it can't be a radio or checkbox item because we are going to put the
203 // If last item was of type radio but the current one isn't, auto-insert
205 if (last_type == MenuItem::RADIO &&
206 item->type() != MenuItem::RADIO) {
231 } else if (item->type() == MenuItem::RADIO) {
233 last_type != MenuItem::RADIO) {
menu_manager.cc 178 if (type_ != CHECKBOX && type_ != RADIO)
199 if (type_ == CHECKBOX || type_ == RADIO)
232 if ((type == CHECKBOX || type == RADIO) &&
344 if (item->type() == MenuItem::RADIO) {
369 if (child->type() == MenuItem::RADIO)
561 // Iterate backwards from |item| and uncheck any adjacent radio items.
567 if ((*i)->type() != MenuItem::RADIO)
573 // Now iterate forwards from |item| and uncheck any adjacent radio items.
575 if ((*i)->type() != MenuItem::RADIO)
606 if (item->type() == MenuItem::RADIO)
    [all...]
  /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);
494 * Returns the version string for the radio firmware. May return
495 * 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) {
  /external/chromium_org/chrome/browser/extensions/api/context_menus/
context_menus_api.cc 31 "Only items with type \"radio\" or \"checkbox\" can be checked";
104 return extensions::MenuItem::RADIO;
276 if (type == MenuItem::RADIO || item->type() == MenuItem::RADIO)
296 item->type() != MenuItem::RADIO) {
  /external/chromium_org/ui/views/controls/menu/
menu.h 116 RADIO,
menu_model_adapter_unittest.cc 183 items_.push_back(Item(TYPE_RADIO, "radio 4", NULL));
240 EXPECT_EQ(views::MenuItemView::RADIO, item->GetType());
287 EXPECT_EQ(views::MenuItemView::RADIO, item->GetType());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeySelectionPage.java 78 mUseExistingKey = new Button(composite, SWT.RADIO);
100 mCreateKey = new Button(composite, SWT.RADIO);
KeystoreSelectionPage.java 71 mUseExistingKeystore = new Button(composite, SWT.RADIO);
77 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 78 mCurrentRadioButton = new Button(container, SWT.RADIO);
83 mExistingRadioButton = new Button(container, SWT.RADIO);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
MainLaunchConfigTab.java 144 mDefaultActionButton = new Button(group, SWT.RADIO);
162 mActivityActionButton = new Button(group, SWT.RADIO);
189 mDoNothingActionButton = new Button(group, SWT.RADIO);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
NewItemSelectionDialog.java 265 * First add a radio area, which may be either 2 radio controls or
283 // We don't want the builtin message area label (we use a radio control
342 Button radio1 = new Button(content, SWT.RADIO);
346 Button radio2 = new Button(content, SWT.RADIO);

Completed in 645 milliseconds

1 2 3