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

1 2 3 4

  /packages/apps/Settings/src/com/android/settings/location/
LocationMode.java 81 private void updateRadioButtons(RadioButtonPreference activated) {
82 if (activated == null) {
86 } else if (activated == mHighAccuracy) {
90 } else if (activated == mBatterySaving) {
94 } else if (activated == mSensorsOnly) {
  /external/v8/src/
allocation-site-scopes.h 64 bool activated)
67 activated_(activated) { }
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
Views.java 47 public static View createTestView(boolean activated) {
49 Mockito.when(view.isActivated()).thenReturn(activated);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
NightDisplayTile.java 56 final boolean activated = !mState.value;
57 mController.setActivated(activated);
114 public void onActivated(boolean activated) {
UserDetailItemView.java 145 boolean activated = ArrayUtils.contains(getDrawableState(), android.R.attr.state_activated);
146 mName.setTypeface(activated ? mActivatedTypeface : mRegularTypeface);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ZoomControlBar.java 52 public void setActivated(boolean activated) {
53 super.setActivated(activated);
54 mBar.setActivated(activated);
ZoomControl.java 222 public void setActivated(boolean activated) {
223 super.setActivated(activated);
224 mZoomIn.setActivated(activated);
225 mZoomOut.setActivated(activated);
  /external/autotest/client/site_tests/network_CDMAActivate/files/
modems.py 19 home_network=modem_cdma.ModemCdma.CdmaNetwork(activated=False))
31 home_network=modem_cdma.ModemCdma.CdmaNetwork(activated=False))
  /external/skia/debugger/QT/
SkSettingsWidget.cpp 67 connect(&fGLMSAACombo, SIGNAL(activated(int)), this,
78 connect(&fFilterCombo, SIGNAL(activated(int)), this, SIGNAL(texFilterSettingsChanged()));
  /external/autotest/client/cros/cellular/pseudomodem/
modem_cdma.py 33 activated=True,
39 self.activated = activated
47 the carrier. If not activated, the first 6 digits will
51 if self.activated:
75 if self.home_network and self.home_network.activated:
233 self.home_network.activated = True
240 " to ACTIVATED until after the reset is "
270 if network.activated:
connect_cdma_machine.py 25 # Check here that the network is activated. The UI should prevent
29 if not network.activated:
30 logging.info('ConnectCdmaMachine: Service is not activated. Cannot'
33 'Service not activated.'))
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilterView.java 68 public void setActivated(boolean activated) {
69 super.setActivated(activated);
71 mRadioButton.setChecked(activated);
76 Log.wtf(TAG, "radio-button cannot be activated because it is null");
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
checkbce.go 8 // Useful to find regressions. checkbce is only activated when with
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
checkbce.go 8 // Useful to find regressions. checkbce is only activated when with
  /frameworks/base/services/core/java/com/android/server/display/
NightDisplayService.java 243 // Force the initialization current activated state.
274 public void onActivated(boolean activated) {
275 if (mIsActivated == null || mIsActivated != activated) {
276 Slog.i(TAG, activated ? "Turning on night display" : "Turning off night display");
278 mIsActivated = activated;
281 mAutoMode.onActivated(activated);
502 // Maintain the existing activated state if within the current period.
516 private void updateNextAlarm(@Nullable Boolean activated, @NonNull LocalDateTime now) {
517 if (activated != null) {
518 final LocalDateTime next = activated ? getDateTimeAfter(mEndTime, now
    [all...]
  /frameworks/base/core/java/android/widget/
YearPickerView.java 183 final boolean activated = mActivatedYear == year;
185 if (hasNewView || v.isActivated() != activated) {
187 if (activated && ITEM_TEXT_ACTIVATED_APPEARANCE != 0) {
193 v.setActivated(activated);
  /packages/apps/Nfc/nci/jni/
PowerSwitch.h 198 bool setModeOn (PowerActivity activated);
NativeNfcManager.cpp 146 static bool isPeerToPeer (tNFA_ACTIVATED& activated);
147 static bool isListenMode(tNFA_ACTIVATED& activated);
304 case NFA_ACTIVATED_EVT: // NFC link/protocol activated
306 if((eventData->activated.activate_ntf.protocol != NFA_PROTOCOL_NFC_DEP) && (!isListenMode (eventData->activated)))
308 nativeNfcTag_setRfInterface ((tNFA_INTF_TYPE) eventData->activated.activate_ntf.intf_param.type);
329 if (isPeerToPeer(eventData->activated))
357 // We know it is not activating for P2P. If it activated in
360 if (isListenMode(eventData->activated))
393 // If RF is activated for what we think is a Secure Element transactio
    [all...]
PowerSwitch.cpp 266 bool PowerSwitch::setModeOn (PowerActivity activated)
271 mCurrActivity |= activated;
273 ALOGV("PowerSwitch::setModeOn(activated=0x%x) : mCurrActivity=0x%x", activated, mCurrActivity);
  /packages/apps/Settings/src/com/android/settings/dashboard/conditional/
NightDisplayCondition.java 84 public void onActivated(boolean activated) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
Picker.java 51 * three items only on currently activated column. If the Picker has focus, it will intercept DPAD
52 * directions and select activated column.
262 // activated. Rebinding is necessary to update the alphas when the columns are expanded
263 // as a result of the picker getting activated, otherwise the cached views with the
563 final boolean activated = isActivated();
568 view.setFocusable(activated);
574 * Returns number of visible items showing in a column when it's activated. The default value
577 * @return Number of visible items showing in a column when it's activated.
584 * Changes number of visible items showing in a column when it's activated. The default value
587 * @param visiblePickerItems Number of visible items showing in a column when it's activated
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/drawer/
DrawerAdapter.java 261 final boolean activated = groupListItem.getGroupId() == mSelectedGroupId &&
263 updateSelectedStatus(title, icon, activated);
264 result.setActivated(activated);
280 final boolean activated = account.equals(mSelectedAccount)
282 textView.setTextAppearance(mActivity, activated
292 result.setActivated(activated);
317 private void updateSelectedStatus(TextView textView, ImageView imageView, boolean activated) {
318 textView.setTextAppearance(mActivity, activated
320 if (activated) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
AutoTileManager.java 145 public void onActivated(boolean activated) {
146 if (activated) {
  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
VvmAccountManager.java 42 * activated if it has valid connection information from the {@link StatusMessage} stored on the
154 Context context, PhoneAccountHandle phoneAccountHandle, boolean activated) {
158 .putBoolean(IS_ACCOUNT_ACTIVATED, activated)
  /frameworks/base/core/java/com/android/internal/app/
NightDisplayController.java 64 * Auto mode value to prevent Night display from being automatically activated. It can still
65 * be activated manually via {@link #setActivated(boolean)}.
139 * Returns {@code true} when Night display is activated (the display is tinted red).
147 * Sets whether Night display should be activated. This also sets the last activated time.
149 * @param activated {@code true} if Night display should be activated
150 * @return {@code true} if the activated value was set successfully
152 public boolean setActivated(boolean activated) {
153 if (isActivated() != activated) {
    [all...]

Completed in 469 milliseconds

1 2 3 4