Searched defs:template (Results 1 - 25 of 62) sorted by relevance

123

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
H A DMixin.java17 package com.android.setupwizardlib.template;
H A DColoredHeaderMixin.java17 package com.android.setupwizardlib.template;
H A DHeaderMixin.java17 package com.android.setupwizardlib.template;
H A DIconMixin.java17 package com.android.setupwizardlib.template;
29 * A {@link Mixin} for setting an icon on the template layout.
36 * @param layout The template layout that this Mixin is a part of.
H A DNavigationBarMixin.java17 package com.android.setupwizardlib.template;
H A DProgressBarMixin.java17 package com.android.setupwizardlib.template;
79 * @return The progress bar of this layout. May be null only if the template used doesn't have a
102 * not called before this, or if the template does not contain a progress bar.
H A DScrollViewScrollHandlingDelegate.java17 package com.android.setupwizardlib.template;
24 import com.android.setupwizardlib.template.RequireScrollMixin.ScrollHandlingDelegate;
/frameworks/base/packages/SystemUI/src/com/android/systemui/net/
H A DNetworkOverLimitActivity.java52 final NetworkTemplate template = getIntent().getParcelableExtra(EXTRA_NETWORK_TEMPLATE);
54 builder.setTitle(getLimitedDialogTitleForTemplate(template));
61 snoozePolicy(template);
76 private void snoozePolicy(NetworkTemplate template) { argument
80 policyService.snoozeLimit(template);
86 private static int getLimitedDialogTitleForTemplate(NetworkTemplate template) { argument
87 switch (template.getMatchRule()) {
/frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
H A DDataIdleTest.java56 NetworkTemplate template = NetworkTemplate.buildTemplateWifiWildcard();
57 fetchStats(template);
65 NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll(subscriberId);
66 fetchStats(template);
72 * @param template {@link NetworkTemplate} to match.
74 private void fetchStats(NetworkTemplate template) { argument
80 template, Long.MIN_VALUE, Long.MAX_VALUE, false);
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
H A DGlifPreferenceLayout.java27 import com.android.setupwizardlib.template.RecyclerMixin;
72 public GlifPreferenceLayout(Context context, int template, int containerId) { argument
73 super(context, template, containerId);
101 protected View onInflateTemplate(LayoutInflater inflater, int template) { argument
102 if (template == 0) {
103 template = R.layout.suw_glif_preference_template;
105 return super.onInflateTemplate(inflater, template);
H A DSetupWizardPreferenceLayout.java27 import com.android.setupwizardlib.template.RecyclerMixin;
71 public SetupWizardPreferenceLayout(Context context, int template, int containerId) { argument
72 super(context, template, containerId);
100 protected View onInflateTemplate(LayoutInflater inflater, int template) { argument
101 if (template == 0) {
102 template = R.layout.suw_preference_template;
104 return super.onInflateTemplate(inflater, template);
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/template/
H A DRecyclerViewScrollHandlingDelegate.java17 package com.android.setupwizardlib.template;
24 import com.android.setupwizardlib.template.RequireScrollMixin.ScrollHandlingDelegate;
/frameworks/opt/setupwizard/library/full-support/test/instrumentation/src/com/android/setupwizardlib/template/
H A DRecyclerMixinTest.java17 package com.android.setupwizardlib.template;
/frameworks/opt/setupwizard/library/full-support/test/robotest/src/com/android/setupwizardlib/template/
H A DRecyclerViewScrollHandlingDelegateTest.java17 package com.android.setupwizardlib.template;
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/template/
H A DColoredHeaderMixinTest.java17 package com.android.setupwizardlib.template;
H A DHeaderMixinTest.java17 package com.android.setupwizardlib.template;
H A DIconMixinTest.java17 package com.android.setupwizardlib.template;
H A DListMixinTest.java17 package com.android.setupwizardlib.template;
H A DNavigationBarMixinTest.java17 package com.android.setupwizardlib.template;
H A DProgressBarMixinTest.java17 package com.android.setupwizardlib.template;
H A DTemplateLayoutMixinTest.java17 package com.android.setupwizardlib.template;
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/template/
H A DListViewScrollHandlingDelegateTest.java17 package com.android.setupwizardlib.template;
H A DRequireScrollMixinTest.java17 package com.android.setupwizardlib.template;
40 import com.android.setupwizardlib.template.RequireScrollMixin.OnRequireScrollStateChangedListener;
41 import com.android.setupwizardlib.template.RequireScrollMixin.ScrollHandlingDelegate;
H A DScrollViewScrollHandlingDelegateTest.java17 package com.android.setupwizardlib.template;
/frameworks/base/core/java/android/net/
H A DDataUsageRequest.java47 public final NetworkTemplate template; field in class:DataUsageRequest
54 public DataUsageRequest(int requestId, NetworkTemplate template, long thresholdInBytes) { argument
56 this.template = template;
68 dest.writeParcelable(template, flags);
77 NetworkTemplate template = in.readParcelable(null);
79 DataUsageRequest result = new DataUsageRequest(requestId, template,
93 + ", networkTemplate=" + template
102 && Objects.equals(that.template, this.template)
[all...]

Completed in 1440 milliseconds

123