Searched defs:template (Results 1 - 25 of 68) 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;
31 * A {@link Mixin} for setting an icon on the template layout.
38 * @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;
H A DListViewScrollHandlingDelegate.java17 package com.android.setupwizardlib.template;
26 import com.android.setupwizardlib.template.RequireScrollMixin.ScrollHandlingDelegate;
/frameworks/base/core/java/android/service/autofill/
H A DInternalTransformation.java42 * presentation template}.
45 * @param template the {@link RemoteViews presentation template}.
46 * @param childViewId resource id of the child view inside the template.
50 abstract void apply(@NonNull ValueFinder finder, @NonNull RemoteViews template, argument
55 * {@link android.widget.RemoteViews presentation template}.
58 * @param template the {@link RemoteViews presentation template}.
59 * @param transformations map of resource id of the child view inside the template to
64 public static boolean batchApply(@NonNull ValueFinder finder, @NonNull RemoteViews template, argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/net/
H A DNetworkOverLimitActivity.java50 final NetworkTemplate template = getIntent().getParcelableExtra(EXTRA_NETWORK_TEMPLATE);
52 builder.setTitle(getLimitedDialogTitleForTemplate(template));
59 snoozePolicy(template);
74 private void snoozePolicy(NetworkTemplate template) { argument
78 policyService.snoozeLimit(template);
84 private static int getLimitedDialogTitleForTemplate(NetworkTemplate template) { argument
85 switch (template.getMatchRule()) {
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsManagerInternal.java23 /** Return network layer usage total for traffic that matches template. */
24 public abstract long getNetworkTotalBytes(NetworkTemplate template, long start, long end); argument
26 /** Return network layer usage per-UID for traffic that matches template. */
27 public abstract NetworkStats getNetworkUidBytes(NetworkTemplate template, long start, long end); argument
/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/recyclerview/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;
70 public SetupWizardPreferenceLayout(Context context, int template, int containerId) { argument
71 super(context, template, containerId);
99 protected View onInflateTemplate(LayoutInflater inflater, int template) { argument
100 if (template == 0) {
101 template = R.layout.suw_preference_template;
103 return super.onInflateTemplate(inflater, template);
/frameworks/opt/setupwizard/library/recyclerview/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/recyclerview/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 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;
39 import com.android.setupwizardlib.template.RequireScrollMixin.OnRequireScrollStateChangedListener;
40 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 3297 milliseconds

123