/packages/apps/InCallUI/src/com/android/incallui/ |
Ui.java | 20 * Base class for all presenter ui. 22 public interface Ui {
|
Presenter.java | 24 public abstract class Presenter<U extends Ui> { 29 * Called after the UI view has been created. That is when fragment.onViewCreated() is called. 31 * @param ui The Ui implementation that is now ready to be used. 33 public void onUiReady(U ui) { 34 mUi = ui; 38 * Called when the UI view is destroyed in Fragment.onDestroyView(). 40 public final void onUiDestroy(U ui) { 41 onUiUnready(ui); 47 * destroyed but before ui is set to null [all...] |
BaseFragment.java | 24 * Parent for all fragments that use Presenters and Ui design. 26 public abstract class BaseFragment<T extends Presenter<U>, U extends Ui> extends Fragment {
|
DialpadPresenter.java | 30 public void onUiReady(DialpadUi ui) { 31 super.onUiReady(ui); 37 public void onUiUnready(DialpadUi ui) { 38 super.onUiUnready(ui); 80 public interface DialpadUi extends Ui {
|
ConferenceManagerPresenter.java | 41 public void onUiReady(ConferenceManagerUi ui) { 42 super.onUiReady(ui); 50 public void onUiUnready(ConferenceManagerUi ui) { 51 super.onUiUnready(ui); 98 // When incoming call exists, set conference ui invisible. 100 Log.d(this, "onIncomingCall()... Conference ui is showing, hide it."); 139 public interface ConferenceManagerUi extends Ui {
|
AnswerPresenter.java | 120 Log.d(this, "onUpgradeToVideo ui is null"); 179 AnswerUi ui = getUi(); local 181 if (ui == null) { 182 Log.e(this, "Ui is null. Can't process upgrade request"); 186 ui.showTargets(AnswerFragment.TARGET_SET_FOR_VIDEO_ACCEPT_REJECT_REQUEST, 295 interface AnswerUi extends Ui {
|
CallButtonPresenter.java | 55 public void onUiReady(CallButtonUi ui) { 56 super.onUiReady(ui); 74 public void onUiUnready(CallButtonUi ui) { 75 super.onUiUnready(ui); 87 CallButtonUi ui = getUi(); local 98 if (ui != null) { 100 if (CallerInfoUtils.isVoiceMailNumber(ui.getContext(), mCall)) { 101 ui.displayDialpad(true /* show */, true /* animate */); 106 if (ui != null) { 107 ui.displayDialpad(false /* show */, true /* animate */) 334 final CallButtonUi ui = getUi(); local 357 final CallButtonUi ui = getUi(); local [all...] |
CallCardPresenter.java | 136 public void onUiReady(CallCardUi ui) { 137 super.onUiReady(ui); 139 // Contact search may have completed before ui is ready. 152 public void onUiUnready(CallCardUi ui) { 153 super.onUiUnready(ui); 178 final CallCardUi ui = getUi(); local 179 if (ui == null) { 218 ui.isManageConferenceVisible() != shouldShowManageConference())) { 237 // Secondary call may have ended. Update the ui. 256 ui.setPrimaryCallElapsedTime(false, 0) 433 final CallCardUi ui = getUi(); local 557 final CallCardUi ui = getUi(); local 607 final CallCardUi ui = getUi(); local 788 final CallCardUi ui = getUi(); local [all...] |
VideoCallPresenter.java | 143 * Determines if the current UI state represents a video call. 180 * UI thread handler used for delayed task execution. 221 * @param ui The Ui implementation that is now ready to be used. 224 public void onUiReady(VideoCallUi ui) { 225 super.onUiReady(ui); 247 * @param ui The Ui implementation that is no longer ready to be used. 250 public void onUiUnready(VideoCallUi ui) { 251 super.onUiUnready(ui); 274 final VideoCallUi ui = getUi(); local 514 final VideoCallUi ui = getUi(); local 655 VideoCallUi ui = getUi(); local 768 VideoCallUi ui = getUi(); local 816 VideoCallUi ui = getUi(); local 855 VideoCallUi ui = getUi(); local 884 VideoCallUi ui = getUi(); local 1017 VideoCallUi ui = getUi(); local 1045 VideoCallUi ui = getUi(); local 1215 final VideoCallUi ui = getUi(); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/ |
plugin.properties | 11 Bundle-Name= Ui Performance Test Framework Plug-in
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
scanresults.h | 17 class ScanResults : public QDialog, public Ui::ScanResults
|
userdatarequest.h | 17 class UserDataRequest : public QDialog, public Ui::UserDataRequest
|
eventhistory.h | 37 class EventHistory : public QDialog, public Ui::EventHistory
|
networkconfig.h | 17 class NetworkConfig : public QDialog, public Ui::NetworkConfig
|
peers.h | 19 class Peers : public QDialog, public Ui::Peers
|
wpagui.h | 34 class WpaGui : public QMainWindow, public Ui::WpaGui
|
/external/eigen/Eigen/src/UmfPackSupport/ |
UmfPackSupport.h | 83 inline int umfpack_get_numeric(int Lp[], int Lj[], double Lx[], int Up[], int Ui[], double Ux[], 86 return umfpack_di_get_numeric(Lp,Lj,Lx,Up,Ui,Ux,P,Q,Dx,do_recip,Rs,Numeric); 89 inline int umfpack_get_numeric(int Lp[], int Lj[], std::complex<double> Lx[], int Up[], int Ui[], std::complex<double> Ux[], 95 return umfpack_zi_get_numeric(Lp,Lj,Lx?&lx0_real:0,0,Up,Ui,Ux?&ux0_real:0,0,P,Q,
|
/external/chromium-trace/trace-viewer/tracing/third_party/d3/ |
d3.min.js | [all...] |