Searched defs:on (Results 1 - 18 of 18) sorted by relevance

/packages/apps/InCallUI/src/com/android/incallui/
H A DDialpadPresenter.java11 * distributed under the License is distributed on an "AS IS" BASIS,
71 * Stops the local tone based on the phone type.
81 void setVisible(boolean on); argument
H A DDialpadFragment.java11 * distributed under the License is distributed on an "AS IS" BASIS,
310 // When accessibility is on, simulate press and release to preserve the
329 // When touch exploration is turned on, lifting a finger while inside
399 // stop the tone on ANY other event, except for MOVE.
490 public void setVisible(boolean on) { argument
491 if (on) {
516 // complicated than just setting focusable="false" on it,
H A DCallButtonPresenter.java11 * distributed under the License is distributed on an "AS IS" BASIS,
96 // OUTGOING. We may want to do that once we start showing "Voice mail" label on
199 // if speakerphone is already on, change to wired/earpiece
208 Log.d(this, "turning on mute: " + checked);
217 Log.i(this, "Putting the call on hold: " + mCall);
242 // Simulate a click on the mute button
427 void setEnabled(boolean on); argument
428 void setMute(boolean on); argument
429 void setHold(boolean on); argument
434 void displayDialpad(boolean on, boolea argument
[all...]
H A DCallCardFragment.java11 * distributed under the License is distributed on an "AS IS" BASIS,
287 public void setVisible(boolean on) { argument
288 if (on) {
578 // needed because the pulse animation operates on the view alpha.
599 // needed because the pulse animation operates on the view alpha.
739 * Gets the call state label based on the state of the call or cause of disconnect.
1092 * Adds a global layout listener to update the FAB's positioning on the next layout. This allows
H A DCallCardPresenter.java11 * distributed under the License is distributed on an "AS IS" BASIS,
384 * Determines if the manage conference button should be visible, based on the current primary
456 * Handles click on the contact photo by toggling fullscreen mode if the current call is a video
516 * Goes through the calls and chooses which to return based on priority of which type of call
544 // Then we go to background call (calls on hold)
693 // Return the label for the gateway app on outgoing calls.
852 void setVisible(boolean on); argument
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DHighPowerDetail.java11 * distributed under the License is distributed on an "AS IS" BASIS,
66 public Checkable setup(View view, boolean on) { argument
67 ((TextView) view.findViewById(android.R.id.title)).setText(on
69 ((TextView) view.findViewById(android.R.id.summary)).setText(on
73 if (!on && mBackend.isSysWhitelisted(mPackageName)) {
/packages/apps/Dialer/src/com/android/dialer/voicemail/
H A DVoicemailPlaybackLayout.java11 * distributed under the License is distributed on an "AS IS" BASIS,
54 * details on the voicemail playback implementation.
57 * methods on this class are expected to come from the main ui thread.
286 public void onSpeakerphoneOn(boolean on) { argument
288 mPresenter.setSpeakerphoneOn(on);
291 if (on) {
293 // Speaker is now on, tapping button will turn it off.
298 // Speaker is now off, tapping button will turn it on.
H A DVoicemailPlaybackPresenter.java11 * distributed under the License is distributed on an "AS IS" BASIS,
87 void onSpeakerphoneOn(boolean on); argument
118 // If present in the saved instance bundle, we should not resume playback on create.
142 // MediaPlayer crashes on some method calls if not prepared but does not have a method which
155 * This variable is thread-contained, accessed only on the ui thread.
389 * This method <b>must be called on the ui thread</b>.
706 public void setSpeakerphoneOn(boolean on) { argument
707 mAudioManager.setSpeakerphoneOn(on);
709 if (on) {
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
H A DDateTimeActivity.java11 * distributed under the License is distributed on an "AS IS" BASIS,
282 private void setAutoDateTime(boolean on) { argument
283 Settings.Global.putInt(getContentResolver(), Settings.Global.AUTO_TIME, on ? 1 : 0);
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DSplitter.java11 * distributed under the License is distributed on an "AS IS" BASIS,
41 * Splitter.on(',').split("foo,bar")}</pre>
48 * Splitter.on(',').split("foo,,bar, quux")}</pre>
55 * private static final Splitter MY_SPLITTER = Splitter.on(',')
67 * method such as {@code omitEmptyStrings} has no effect on the instance it
68 * is invoked on! You must store and use the new splitter instance returned by
73 * Splitter splitter = Splitter.on('/');
79 * #on(String)}, {@link #on(Pattern)} and {@link #on(CharMatche
117 public static Splitter on(char separator) { method in class:Splitter
131 public static Splitter on(final CharMatcher separatorMatcher) { method in class:Splitter
158 public static Splitter on(final String separator) { method in class:Splitter
202 public static Splitter on(final Pattern separatorPattern) { method in class:Splitter
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditor.java11 * distributed under the License is distributed on an "AS IS" BASIS,
286 protected void setMenuIcon(boolean on) { argument
288 0, 0, on ? R.drawable.filtershow_menu_marker_rtl : 0, 0);
/packages/apps/Settings/src/com/android/settings/widget/
H A DSettingsAppWidgetProvider.java11 * distributed under the License is distributed on an "AS IS" BASIS,
115 * (turning on &amp; off radio drivers), compared to user's
155 // easier, and is probably nicer on lower levels.
186 * the on-vs-off state.
188 public abstract int getButtonImageId(boolean on); argument
196 * Updates the remote views depending on the state (off, on,
197 * turning off, turning on) of the setting.
221 // shows the tri-state (on, off, transitioning), but
321 // service state accessor has coarse locking on it
359 getButtonImageId(boolean on) argument
444 getButtonImageId(boolean on) argument
519 getButtonImageId(boolean on) argument
601 getButtonImageId(boolean on) argument
[all...]
/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallAudioManager.java11 * distributed under the License is distributed on an "AS IS" BASIS,
74 boolean on = (msg.arg1 != 0);
76 if (mAudioManager.isSpeakerphoneOn() != on) {
77 Log.i(this, "turning speaker phone %s", on);
78 mAudioManager.setSpeakerphoneOn(on);
210 // (1) If this is the first call, then we can to turn on bluetooth if available.
325 shouldMute ? "on" : "off");
364 * Sets the audio stream and mode based on whether a call is ringing.
483 private void turnOnSpeaker(boolean on) { argument
484 mAudioManagerHandler.obtainMessage(MSG_AUDIO_MANAGER_TURN_ON_SPEAKER, on
488 turnOnBluetooth(boolean on) argument
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboard.java11 * distributed under the License is distributed on an "AS IS" BASIS,
132 * Total width of the keyboard, including left side gaps and keys, but not any gaps on the
250 /** If this is a sticky key, is it on? */
251 public boolean on; field in class:Keyboard.Key
408 on = !on;
487 * Returns the drawable state for the key, based on the current state and type of the key.
494 if (on) {
556 * @param characters the list of characters to display on the keyboard. One key will be created
674 mShiftKey.on
[all...]
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java11 * distributed under the License is distributed on an "AS IS" BASIS,
208 SoundPool mSoundPool; // playback synchronized on this
439 * Manages tasks that involve turning on/off the NFC controller.
441 * <p>All work that might turn the NFC adapter on or off must be done
446 * <p>These tasks are all done on the same AsyncTask background
454 * cases like turning airplane mode on while TASK_ENABLE is in progress.
482 * problem only occurs on I2C platforms using PN544
494 Log.d(TAG, "checking on firmware download");
498 Log.d(TAG, "NFC is on. Doing normal stuff");
626 void saveNfcOnSetting(boolean on) { argument
[all...]
/packages/apps/FMRadio/src/com/android/fmradio/
H A DFmService.java11 * distributed under the License is distributed on an "AS IS" BASIS,
263 // screen on, if FM play, open rds
874 * @param on true, enable RDS; false, disable RDS.
876 public void setRdsAsync(boolean on) { argument
880 bundle.putBoolean(OPTION, on);
886 private int setRds(boolean on) { argument
892 ret = FmNative.setRds(on);
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 6405 milliseconds