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

1 2 3

  /packages/apps/Dialer/java/com/android/incallui/baseui/
Ui.java 19 /** Base class for all presenter ui. */
20 public interface Ui {}
Presenter.java 22 public abstract class Presenter<U extends Ui> {
24 private U ui; field in class:Presenter
27 * Called after the UI view has been created. That is when fragment.onViewCreated() is called.
29 * @param ui The Ui implementation that is now ready to be used.
31 public void onUiReady(U ui) {
32 this.ui = ui;
35 /** Called when the UI view is destroyed in Fragment.onDestroyView(). */
36 public final void onUiDestroy(U ui) {
    [all...]
BaseFragment.java 22 /** Parent for all fragments that use Presenters and Ui design. */
23 public abstract class BaseFragment<T extends Presenter<U>, U extends Ui> extends Fragment {
  /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
  /packages/apps/Dialer/java/com/android/dialer/common/concurrent/
Annotations.java 23 /** Annotation for retrieving the UI thread. */
25 public @interface Ui {}
27 /** Annotation for retrieving the non-UI thread pool. */
31 /** Annotation for retrieving the non-UI serial executor. */
35 /** Annotation for retrieving the UI thread pool. */
39 /** Annotation for retrieving the UI serial executor. */
DialerExecutorComponent.java 24 import com.android.dialer.common.concurrent.Annotations.Ui;
39 @Ui
DialerExecutorModule.java 24 import com.android.dialer.common.concurrent.Annotations.Ui;
48 @Ui
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
init.c 113 EFI_UNICODE_COLLATION_INTERFACE *Ui;
134 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handles[Index], &UnicodeCollationProtocol, (VOID*)&Ui);
143 Languages = Ui->SupportedLanguages;
152 UnicodeInterface = Ui;
  /frameworks/support/wear/src/main/java/androidx/wear/internal/widget/drawer/
MultiPagePresenter.java 34 private final Ui mUi;
42 public interface Ui {
45 * Initializes the {@code Ui}.
61 * Associates the given {@code adapter} with this {@link Ui}.
71 public MultiPagePresenter(WearableNavigationDrawerView drawer, Ui ui,
76 if (ui == null) {
77 throw new IllegalArgumentException("Received null ui.");
80 mUi = ui;
SinglePagePresenter.java 38 private final Ui mUi;
48 public interface Ui {
51 * Associates a {@link WearableNavigationDrawerPresenter} with this {@link Ui}.
56 * Initializes the {@link Ui} with {@code count} items.
67 * item is selected. When the {@link Ui} doesn't have space, it should show a {@link
93 public SinglePagePresenter(Ui ui, boolean isAccessibilityEnabled) {
94 if (ui == null) {
95 throw new IllegalArgumentException("Received null ui.");
99 mUi = ui;
    [all...]
  /external/tensorflow/tensorflow/contrib/specs/python/
params_ops.py 28 --params "n=Li(5,500); d=Ui(1,5)" --spec "(Cr(n) | Mp([2, 2])) ** d | Fm"
66 def Ui(lo, hi):
  /packages/apps/Dialer/java/com/android/incallui/
DialpadPresenter.java 22 import com.android.incallui.baseui.Ui;
34 public void onUiReady(DialpadUi ui) {
35 super.onUiReady(ui);
41 public void onUiUnready(DialpadUi ui) {
42 super.onUiUnready(ui);
85 public interface DialpadUi extends Ui {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/UnitTest/
InfBinarySectionTest.py 177 #-------------start of UI type binary item test input-------------------------#
180 # Test only one UI section can exist
184 UI | Test/Test.ui | * | TRUE
185 UI | Test/Test2.ui | * | TRUE
190 UI | Test/Test.ui | * | TRUE
191 SEC_UI | Test/Test2.ui | * | TRUE
196 UI | Test/Test.ui | * | TRUE
    [all...]
  /packages/apps/Settings/src/com/android/settings/password/
SetNewPasswordController.java 48 interface Ui {
61 private final Ui mUi;
63 public static SetNewPasswordController create(Context context, Ui ui, Intent intent,
83 (DevicePolicyManager) context.getSystemService(Context.DEVICE_POLICY_SERVICE), ui);
92 Ui ui) {
97 mUi = checkNotNull(ui);
SetNewPasswordActivity.java 32 * {@link DevicePolicyManager#ACTION_SET_NEW_PARENT_PROFILE_PASSWORD} intent to the appropriate UI
35 public class SetNewPasswordActivity extends Activity implements SetNewPasswordController.Ui {
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/UiApp/
UiApp.inf 33 Ui.h
  /packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
LocationPresenter.java 27 import com.android.incallui.baseui.Ui;
47 public void onUiReady(LocationUi ui) {
49 super.onUiReady(ui);
54 public void onUiUnready(LocationUi ui) {
56 super.onUiUnready(ui);
77 LocationUi ui = getUi(); local
79 downloadMapTask = new DownloadMapImageTask(new WeakReference<>(ui)).execute(location);
80 reverseGeocodeTask = new ReverseGeocodeTask(new WeakReference<>(ui)).execute(location);
81 if (ui != null) {
82 ui.setLocation(location)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
UiSection.py 2 # process UI section generation
26 ## generate UI section
40 # Generate UI section
60 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get('UI'))
74 GenFdsGlobalVariable.GenerateSection(OutputFile, None, 'EFI_SECTION_USER_INTERFACE', Ui=NameString)
EfiSection.py 122 #Ui=StringData,
138 #Ui=VerString,
160 #Ui=VerString,
165 # If Section Type is 'UI'
167 elif SectionType == 'UI':
170 if FfsInf.Ui != None:
171 StringData = FfsInf.Ui
178 Ui=StringData)
190 Ui=UiString)
202 EdkLogger.error("GenFds", GENFDS_ERROR, "File: %s miss UI Section value" %InfFileName)
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_ui.cpp 36 constexpr wchar_t kName[] = L"ui";
45 XFA_Element::Ui,
  /packages/apps/Dialer/java/com/android/dialer/calllog/
ClearMissedCalls.java 27 import com.android.dialer.common.concurrent.Annotations.Ui;
54 @Ui ListeningExecutorService uiThreadExecutor) {

Completed in 218 milliseconds

1 2 3