Searched defs:listener (Results 176 - 200 of 787) sorted by last modified time

1234567891011>>

/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java332 * @param listener The Listener to provide feedback to the UI on loading
336 final VolumeLoader.ProgressListener listener) {
376 if (listener != null) {
377 listener.progress(0, v.mDimx);
443 if (listener != null) {
444 listener.progress(z, v.mDimx);
492 * @param listener used to feed back status to progress listeners
496 VolumeLoader.ProgressListener listener) {
535 if (listener != null) {
536 listener
335 buildRSVolume(final RenderScript rs, File dir, final VolumeLoader.ProgressListener listener) argument
495 buildRSVolume2(final RenderScript rs, File dir, VolumeLoader.ProgressListener listener) argument
[all...]
H A DLoaderRaw.java48 * @param listener To provide feedback
52 final VolumeLoader.ProgressListener listener) {
66 listener.progress(0, v.mDimz);
98 if (listener != null) {
99 listener.progress(0, v.mDimz);
137 if (listener != null) {
138 listener.progress(z, v.mDimz);
51 buildRSVolume(final RenderScript rs, File dir, Properties prop, final VolumeLoader.ProgressListener listener) argument
H A DMandelbulb.java54 final VolumeLoader.ProgressListener listener) {
79 listener.progress(z, v.mDimz);
53 buildRSVolume(RenderScript rs, final VolumeLoader.ProgressListener listener) argument
H A DVolumeLoader.java122 public void setProgressListener(ProgressListener listener){ argument
123 mListener = listener;
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DCameraOps.java252 * @param errorDisplayer listener for displaying error messages
253 * @param readyListener listener for notifying when camera is ready for requests
264 throw new IllegalArgumentException("Need valid displayer, listener, handler");
404 final CameraCaptureSession.CaptureCallback listener,
409 mCameraSession.setRepeatingRequest(request, listener, handler);
422 final CameraCaptureSession.CaptureCallback listener,
427 mCameraSession.setRepeatingBurst(requests, listener, handler);
457 * Main listener for camera session events
488 * Main listener for camera device events.
558 final CameraCaptureSession.CaptureCallback listener,
403 setRepeatingRequest(final CaptureRequest request, final CameraCaptureSession.CaptureCallback listener, final Handler handler) argument
421 setRepeatingBurst(final List<CaptureRequest> requests, final CameraCaptureSession.CaptureCallback listener, final Handler handler) argument
557 setRequest(final CaptureRequest request, final CameraCaptureSession.CaptureCallback listener, final Handler handler) argument
[all...]
H A DFixedAspectSurfaceView.java75 * Set a gesture listener to listen for touch events
77 public void setGestureListener(Context context, GestureDetector.OnGestureListener listener) { argument
78 if (listener == null) {
81 mGestureDetector = new GestureDetector(context, listener);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java107 * Base listener implementation.
494 public final void addPostDialListener(PostDialListener listener) { argument
495 if (!mPostDialListeners.contains(listener)) {
496 mPostDialListeners.add(listener);
500 public final void removePostDialListener(PostDialListener listener) { argument
501 mPostDialListeners.remove(listener);
512 for (PostDialListener listener : new ArrayList<>(mPostDialListeners)) {
513 listener.onPostDialWait();
519 for (PostDialListener listener : new ArrayList<>(mPostDialListeners)) {
520 listener
637 addListener(Listener listener) argument
646 removeListener(Listener listener) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsExternalConnection.java180 for (Listener listener : mListeners) {
181 listener.onPullExternalCall(this);
238 public void addListener(Listener listener) { argument
239 mListeners.add(listener);
242 public void removeListener(Listener listener) { argument
243 mListeners.remove(listener);
H A DImsPhoneCallTracker.java683 // Get the ECBM interface and set IMSPhone's listener object for notifications
3063 public void registerPhoneStateListener(PhoneStateListener listener) { argument
3064 mPhoneStateListeners.add(listener);
3067 public void unregisterPhoneStateListener(PhoneStateListener listener) { argument
3068 mPhoneStateListeners.remove(listener);
3080 for (PhoneStateListener listener : mPhoneStateListeners) {
3081 listener.onPhoneStateChanged(oldState, newState);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
H A DTestImsServiceControllerAdapter.java62 IImsRegistrationListener listener) throws RemoteException {
89 IImsRegistrationListener listener) throws RemoteException {
95 IImsRegistrationListener listener) throws RemoteException {
107 ImsCallProfile profile, IImsCallSessionListener listener) throws RemoteException {
61 startSession(int slotId, int featureType, PendingIntent incomingCallIntent, IImsRegistrationListener listener) argument
88 addRegistrationListener(int slotId, int featureType, IImsRegistrationListener listener) argument
94 removeRegistrationListener(int slotId, int featureType, IImsRegistrationListener listener) argument
106 createCallSession(int slotId, int featureType, int sessionId, ImsCallProfile profile, IImsCallSessionListener listener) argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DActionBarInterface.java27 public void addOnMenuVisibilityListener(OnMenuVisibilityListener listener); argument
H A DPhotoViewCallbacks.java70 public void addScreenListener(int position, OnScreenListener listener); argument
74 public void addCursorListener(CursorChangedListener listener); argument
76 public void removeCursorListener(CursorChangedListener listener); argument
H A DPhotoViewController.java520 public void addScreenListener(int position, OnScreenListener listener) { argument
521 mScreenListeners.put(position, listener);
530 public synchronized void addCursorListener(CursorChangedListener listener) { argument
531 mCursorListeners.add(listener);
535 public synchronized void removeCursorListener(CursorChangedListener listener) { argument
536 mCursorListeners.remove(listener);
675 for (CursorChangedListener listener : mCursorListeners) {
676 listener.onCursorChanged(data);
722 for (OnScreenListener listener : mScreenListeners.values()) {
724 interceptLeft = listener
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java133 /** An external click listener */
398 public void setOnClickListener(OnClickListener listener) { argument
399 mExternalClickListener = listener;
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/items/
H A DSwitchItem.java94 public void setOnCheckedChangeListener(OnCheckedChangeListener listener) { argument
95 mListener = listener;
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/items/
H A DRecyclerItemAdapter.java188 public void setOnItemSelectedListener(OnItemSelectedListener listener) { argument
189 mListener = listener;
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/gesture/
H A DConsecutiveTapsGestureDetector.java47 * @param listener The listener that responds to the gesture.
51 OnConsecutiveTapsListener listener,
53 mListener = listener;
50 ConsecutiveTapsGestureDetector( OnConsecutiveTapsListener listener, View view) argument
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DButtonItem.java61 public void setOnClickListener(OnClickListener listener) { argument
62 mListener = listener;
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
H A DNavigationBarMixin.java75 * Sets the listener to handle back and next button clicks in the navigation bar.
80 public void setNavigationBarListener(NavigationBarListener listener) { argument
81 getNavigationBar().setNavigationBarListener(listener);
H A DRequireScrollMixin.java110 @Nullable OnRequireScrollStateChangedListener listener) {
111 mListener = listener;
115 * @return The scroll state listener previously set, or {@code null} if none is registered.
123 * and if scrolling is not required, delegates to the wrapped {@code listener}. Note that you
126 * @param listener The listener to be invoked when scrolling is not needed and the user taps on
127 * the button. If {@code null}, the click listener will be a no-op when scroll
130 * given listener depending on the current require-scroll state.
132 public OnClickListener createOnClickListener(@Nullable final OnClickListener listener) { argument
138 } else if (listener !
109 setOnRequireScrollStateChangedListener( @ullable OnRequireScrollStateChangedListener listener) argument
[all...]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
H A DNavigationBar.java124 public void setNavigationBarListener(NavigationBarListener listener) { argument
125 mListener = listener;
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java207 * Sets the listener to listen to the audio call events. The method calls
208 * {@link #setListener setListener(listener, false)}.
210 * @param listener to listen to the audio call events of this object
213 public void setListener(SipAudioCall.Listener listener) { argument
214 setListener(listener, false);
218 * Sets the listener to listen to the audio call events. A
219 * {@link SipAudioCall} can only hold one listener at a time. Subsequent
220 * calls to this method override the previous listener.
222 * @param listener to listen to the audio call events of this object
226 public void setListener(SipAudioCall.Listener listener, argument
[all...]
H A DSipManager.java225 * @param listener to listen to registration events; can be null
238 SipRegistrationListener listener) throws SipException {
246 createRelay(listener, localProfile.getUriString()),
254 * Sets the listener to listen to registration events. No effect if the
259 * @param listener to listen to registration events; can be null
263 SipRegistrationListener listener) throws SipException {
267 localProfileUri, createRelay(listener, localProfileUri),
337 * @param listener to listen to the call events from {@link SipAudioCall};
348 SipProfile peerProfile, SipAudioCall.Listener listener, int timeout)
354 call.setListener(listener);
236 open(SipProfile localProfile, PendingIntent incomingCallPendingIntent, SipRegistrationListener listener) argument
262 setRegistrationListener(String localProfileUri, SipRegistrationListener listener) argument
347 makeAudioCall(SipProfile localProfile, SipProfile peerProfile, SipAudioCall.Listener listener, int timeout) argument
379 makeAudioCall(String localProfileUri, String peerProfileUri, SipAudioCall.Listener listener, int timeout) argument
407 takeAudioCall(Intent incomingCallIntent, SipAudioCall.Listener listener) argument
505 register(SipProfile localProfile, int expiryTime, SipRegistrationListener listener) argument
532 unregister(SipProfile localProfile, SipRegistrationListener listener) argument
572 createRelay( SipRegistrationListener listener, String uri) argument
585 createSipSession(SipProfile localProfile, SipSession.Listener listener) argument
620 ListenerRelay(SipRegistrationListener listener, String uri) argument
[all...]
H A DSipSession.java250 SipSession(ISipSession realSession, Listener listener) { argument
252 setListener(listener);
343 * Sets the listener to listen to the session events. A {@code SipSession}
344 * can only hold one listener at a time. Subsequent calls to this method
345 * override the previous listener.
347 * @param listener to listen to the session events of this object
349 public void setListener(Listener listener) { argument
350 mListener = listener;
356 * profile. The session listener is called back upon success or failure of
374 * expiration duration. The session listener i
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java162 ISipSessionListener listener,
174 + incomingCallPendingIntent + ": " + listener);
177 incomingCallPendingIntent, listener);
252 ISipSessionListener listener, String opPackageName) {
259 group.setListener(listener);
261 if (DBG) log("only creator can set listener on the profile");
267 ISipSessionListener listener, String opPackageName) {
279 return group.createSession(listener);
323 ISipSessionListener listener) throws SipException {
331 group.setListener(listener);
160 open3(SipProfile localProfile, PendingIntent incomingCallPendingIntent, ISipSessionListener listener, String opPackageName) argument
251 setRegistrationListener(String localProfileUri, ISipSessionListener listener, String opPackageName) argument
266 createSession(SipProfile localProfile, ISipSessionListener listener, String opPackageName) argument
321 createGroup(SipProfile localProfile, PendingIntent incomingCallPendingIntent, ISipSessionListener listener) argument
487 SipSessionGroupExt(SipProfile localProfile, PendingIntent incomingCallPendingIntent, ISipSessionListener listener) argument
524 setListener(ISipSessionListener listener) argument
566 createSession(ISipSessionListener listener) argument
942 setListener(ISipSessionListener listener) argument
[all...]

Completed in 313 milliseconds

1234567891011>>