HomeSort by relevance Sort by last modified time
    Searched refs:enabled (Results 151 - 175 of 3270) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_console.py 48 enabled = self._message_output_stream != None
49 if enabled == self._console_enabled:
52 if enabled:
59 self._console_enabled = enabled
  /external/chromium_org/ui/base/cocoa/
hover_button.h 28 // Tracking area for button mouseover states. Nil if not enabled.
35 - (void)setTrackingEnabled:(BOOL)enabled;
  /external/chromium_org/ui/wm/core/
native_cursor_manager_delegate.h 28 virtual void CommitMouseEventsEnabled(bool enabled) = 0;
  /external/llvm/test/MC/Mips/mips1/
invalid-mips32.s 9 sync 0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
10 sync 1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips3/
invalid-mips32.s 9 sync 0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
10 sync 1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips32/
invalid-mips64.s 8 dclo $s2,$a2 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 dclz $s0,$t9 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips32r2/
invalid-mips64r2.s 8 dsbh $v1,$t6 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 dshd $v0,$sp # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips32r6/
invalid-mips5.s 8 luxc1 $f19,$s6($s5) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 suxc1 $f12,$k1($13) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips4/
invalid-mips32.s 9 sync 0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
10 sync 1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
invalid-mips5.s 8 luxc1 $f19,$s6($s5) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
9 suxc1 $f12,$k1($t1) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips5/
invalid-mips32.s 9 sync 0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
10 sync 1 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/qemu/android/skin/
window.h 32 extern void skin_window_enable_touch( SkinWindow* window, int enabled );
33 extern void skin_window_enable_trackball( SkinWindow* window, int enabled );
34 extern void skin_window_enable_dpad( SkinWindow* window, int enabled );
35 extern void skin_window_enable_qwerty( SkinWindow* window, int enabled );
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_tveille.h 52 unsigned char enabled; /* 0=enabled, 0xff=disabled */ member in struct:__anon34228
  /frameworks/base/core/java/android/net/
NetworkStateTracker.java 168 public void setUserDataEnable(boolean enabled);
175 public void setPolicyDataEnable(boolean enabled);
192 public void privateDnsRouteSet(boolean enabled);
202 public void defaultRouteSet(boolean enabled);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
AccessibilityController.java 76 public void onAccessibilityStateChanged(boolean enabled) {
77 mAccessibilityEnabled = enabled;
82 public void onTouchExplorationStateChanged(boolean enabled) {
83 mTouchExplorationEnabled = enabled;
  /frameworks/native/services/surfaceflinger/DisplayHardware/
PowerHAL.h 33 status_t vsyncHint(bool enabled);
  /frameworks/native/services/surfaceflinger/
EventControlThread.h 35 void setVsyncEnabled(bool enabled);
  /hardware/intel/img/hwcomposer/ips/common/
SpritePlaneBase.h 41 virtual bool enablePlane(bool enabled) = 0;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
NotificationSetter.java 63 private boolean setNotificationsEnabled(boolean enabled) {
65 if (mNotificationsOn != enabled) {
68 mAppInfo.getPackageName(), mAppInfo.getUid(), enabled); local
69 mNotificationsOn = enabled;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlBar.java 114 public void setEnabled(boolean enabled) {
115 super.setEnabled(enabled);
117 mSecondLevelIcon.setVisibility(enabled ? View.VISIBLE : View.INVISIBLE);
120 enableZoom(enabled);
122 mSecondLevelIcon.setEnabled(enabled);
125 public void enableZoom(boolean enabled) {
126 if (mZoomControl != null) mZoomControl.setEnabled(enabled);
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionInputBuffer.java 78 if (this.wire.enabled() && l > 0) {
86 if (this.wire.enabled() && l > 0) {
94 if (this.wire.enabled() && l > 0) {
102 if (this.wire.enabled() && s != null) {
110 if (this.wire.enabled() && l > 0) {
  /external/chromium_org/chrome/browser/extensions/error_console/
error_console.h 34 // runtime Javascript errors. If FeatureSwitch::error_console() is enabled these
62 bool enabled);
67 bool enabled);
69 // Returns true if reporting for either manifest or runtime errors is enabled
88 // Returns whether or not the ErrorConsole is enabled for the
92 // enabled by default in ADT, but only Dev Channel for chrome:extensions (or
97 // Return whether or not the ErrorConsole is enabled.
98 bool enabled() const { return enabled_; } function in class:extensions::ErrorConsole
104 void set_default_reporting_for_test(ExtensionError::Type type, bool enabled) {
106 enabled ? default_mask_ | (1 << type) : default_mask_ & ~(1 << type)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLocationManager.java 19 * Shadow of {@code LocationManager} that provides for the simulation of different location providers being enabled and
61 * whether that provider should appear enabled
72 providerEntry.enabled = isEnabled;
139 * @param enabled
143 public String getBestProvider(Criteria criteria, boolean enabled) {
145 lastBestProviderEnabled = enabled;
148 return getBestProviderWithNoCriteria(enabled);
151 return getBestProviderWithCriteria(criteria, enabled);
154 private String getBestProviderWithCriteria(Criteria criteria, boolean enabled) {
155 List<String> providers = getProviders(enabled);
370 private Boolean enabled; field in class:ShadowLocationManager.LocationProviderEntry
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
EmergencyButton.java 110 boolean enabled = false;
112 enabled = true; // always show "return to call" if phone is off-hook
117 enabled = mLockPatternUtils.isEmergencyCallEnabledWhileSimLocked();
121 enabled = mLockPatternUtils.isSecure();
124 mLockPatternUtils.updateEmergencyCallButtonState(this, enabled, false);
  /hardware/intel/img/hwcomposer/common/observers/
SoftVsyncObserver.cpp 70 WLOGTRACE("soft vsync is still enabled");
95 bool SoftVsyncObserver::control(bool enabled)
97 if (enabled == mEnabled) {
98 WLOGTRACE("vsync state %d is not changed", enabled);
102 if (enabled) {
106 mEnabled = enabled;

Completed in 1101 milliseconds

1 2 3 4 5 67 8 91011>>