Searched refs:group (Results 1 - 25 of 315) sorted by relevance

1234567891011>>

/frameworks/support/app-toolkit/buildSrc/
H A Ddependencies.gradle20 exclude group: 'androidx.annotation'
25 exclude group: 'net.bytebuddy'
29 exclude group: 'com.android.support'
30 exclude group: 'androidx.annotation'
35 exclude group: 'androidx.annotation'
36 exclude group: 'androidx.core'
37 exclude group: 'androidx.legacy'
38 exclude group: 'androidx.fragment'
39 exclude group: 'androidx.transition'
40 exclude group
[all...]
/frameworks/support/buildSrc/
H A Ddependencies.gradle20 exclude group: 'androidx.annotation'
25 exclude group: 'net.bytebuddy'
29 exclude group: 'com.android.support'
30 exclude group: 'androidx.annotation'
35 exclude group: 'androidx.annotation'
36 exclude group: 'androidx.core'
37 exclude group: 'androidx.legacy'
38 exclude group: 'androidx.fragment'
39 exclude group: 'androidx.transition'
40 exclude group
[all...]
/frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
H A DBatteryStatsParser.java55 if (lineMatcher.find() && lineMatcher.group(1) != null && lineMatcher.group(2) != null) {
56 if (lineMatcher.group(1).equals("0")) {
57 return "0," + lineMatcher.group(2) + "\n";
59 Matcher timeMatcher = TIME_PATTERN.matcher(lineMatcher.group(1));
61 Long time = getTime(lineMatcher.group(1));
63 return time + "," + lineMatcher.group(2) + "\n";
76 private Long getTime(String group) { argument
77 if ("0".equals(group)) {
80 Matcher timeMatcher = TIME_PATTERN.matcher(group);
[all...]
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DViewGroupCompat.java64 * @param group The group whose method to invoke.
73 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
75 return group.onRequestSendAccessibilityEvent(child, event);
89 * @param group ViewGroup to modify
97 public static void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
98 group.setMotionEventSplittingEnabled(split);
113 public static int getLayoutMode(@NonNull ViewGroup group) { argument
115 return group.getLayoutMode();
129 public static void setLayoutMode(@NonNull ViewGroup group, in argument
143 setTransitionGroup(@onNull ViewGroup group, boolean isTransitionGroup) argument
156 isTransitionGroup(@onNull ViewGroup group) argument
180 getNestedScrollAxes(@onNull ViewGroup group) argument
[all...]
/frameworks/support/transition/src/main/java/androidx/transition/
H A DViewGroupUtils.java32 static ViewGroupOverlayImpl getOverlay(@NonNull ViewGroup group) { argument
34 return new ViewGroupOverlayApi18(group);
36 return ViewGroupOverlayApi14.createFrom(group);
42 static void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
44 ViewGroupUtilsApi18.suppressLayout(group, suppress);
46 ViewGroupUtilsApi14.suppressLayout(group, suppress);
H A DViewGroupUtilsApi14.java43 static void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
60 final LayoutTransition layoutTransition = group.getLayoutTransition();
66 group.setTag(R.id.transition_layout_save, layoutTransition);
70 group.setLayoutTransition(sEmptyLayoutTransition);
73 group.setLayoutTransition(null);
87 layoutSuppressed = sLayoutSuppressedField.getBoolean(group);
89 sLayoutSuppressedField.setBoolean(group, false);
96 group.requestLayout();
100 (LayoutTransition) group.getTag(R.id.transition_layout_save);
102 group
[all...]
/frameworks/base/services/usage/java/com/android/server/usage/
H A DAppTimeLimitController.java82 /** Map of observerId to details of the time limit group */
94 * Listener interface for being informed when an app group's time limit is reached.
98 * Time limit for a group, keyed by the observerId, has been reached.
99 * @param observerId The observerId of the group whose limit was reached
102 * @param timeElapsed How much time was actually spent on apps in the group, in milliseconds
209 TimeLimitGroup group = new TimeLimitGroup();
210 group.observerId = observerId;
211 group.callbackIntent = callbackIntent;
212 group.packages = packages;
213 group
344 postInformListenerLocked(TimeLimitGroup group) argument
353 informListener(TimeLimitGroup group) argument
386 addGroupToPackageMapLocked(UserData user, String[] packages, TimeLimitGroup group) argument
402 removeGroupFromPackageMapLocked(UserData user, TimeLimitGroup group) argument
410 postCheckTimeoutLocked(TimeLimitGroup group, long timeout) argument
420 checkTimeout(TimeLimitGroup group) argument
[all...]
/frameworks/data-binding/samples/BindingDemo/app/src/main/java/com/android/example/bindingdemo/vo/
H A DUser.java21 private int group; field in class:User
25 public User(String name, String lastName, int photoResource, int group) { argument
29 this.group = group;
32 public void setGroup(int group) { argument
33 if (this.group == group) {
36 this.group = group;
37 notifyPropertyChanged(BR.group);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationGroupManager.java60 NotificationGroup group = mGroupMap.get(getGroupKey(sbn));
61 if (group == null) {
64 return group.expanded;
68 NotificationGroup group = mGroupMap.get(getGroupKey(sbn));
69 if (group == null) {
72 setGroupExpanded(group, expanded);
75 private void setGroupExpanded(NotificationGroup group, boolean expanded) { argument
76 group.expanded = expanded;
77 if (group.summary != null) {
78 mListener.onGroupExpansionChanged(group
172 cleanUpHeadsUpStatesOnAdd(NotificationGroup group, boolean addIsPending) argument
231 getPendingChildrenNotAlerting(NotificationGroup group) argument
261 updateSuppression(NotificationGroup group) argument
281 hasIsolatedChildren(NotificationGroup group) argument
571 pendingInflationsWillAddChildren(NotificationGroup group) argument
675 onGroupCreatedFromChildren(NotificationGroup group) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java111 * group.
120 * GROUP_SIZE) to make the odd-size group appear at the end instead
130 final int group = (int) (input & 0x1F);
133 encoded[--index] = alphabet[group];
146 final int group = input[i];
153 if ('A' <= group && group <= 'Z') {
154 value = group - 'A';
155 } else if ('2' <= group && group <
[all...]
H A DFeatureGroupInfo.java24 * AndroidManifest.xml's {@code <feature-group>} tag.
29 * The list of features that are required by this group.
55 FeatureGroupInfo group = new FeatureGroupInfo();
56 group.features = source.createTypedArray(FeatureInfo.CREATOR);
57 return group;
/frameworks/layoutlib/bridge/src/com/android/internal/view/menu/
H A DMenuBuilder_Delegate.java33 /*package*/ static MenuItemImpl createNewMenuItem(MenuBuilder thisMenu, int group, int id, argument
35 return new BridgeMenuItemImpl(thisMenu, group, id, categoryOrder, ordering, title,
/frameworks/support/jetifier/jetifier/preprocessor/
H A Dbuild.gradle26 compile group: 'commons-cli', name: 'commons-cli', version: '1.3.1'
/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioStream.java79 * Joins an {@link AudioGroup}. Each stream can join only one group at a
80 * time. The group can be changed by passing a different one or removed
83 * @param group The AudioGroup to join or {@code null} to leave.
87 public void join(AudioGroup group) { argument
89 if (mGroup == group) {
96 if (group != null) {
97 group.add(this);
98 mGroup = group;
/frameworks/rs/
H A DrsScriptGroup2.cpp25 ScriptGroup2* group = new ScriptGroup2(rsc, name, cacheDir, local
30 rsc->mHal.funcs.scriptgroup.init(rsc, group);
33 group->incUserRef();
35 return group;
/frameworks/support/frameworks/support/samples/SupportSliceDemos/
H A Dbuild.gradle32 exclude group: 'androidx.annotation'
33 exclude group: 'androidx.fragment'
/frameworks/support/samples/SupportSliceDemos/
H A Dbuild.gradle32 exclude group: 'androidx.annotation'
33 exclude group: 'androidx.fragment'
/frameworks/base/core/tests/coretests/src/android/widget/
H A DRadioGroupPreCheckedTest.java41 RadioGroup group = (RadioGroup) activity.findViewById(R.id.group);
43 group.getCheckedRadioButtonId());
58 RadioGroup group = (RadioGroup) activity.findViewById(R.id.group);
60 group.getCheckedRadioButtonId());
/frameworks/wilhelm/src/itf/
H A DI3DGrouping.cpp22 static SLresult I3DGrouping_Set3DGroup(SL3DGroupingItf self, SLObjectItf group) argument
27 C3DGroup *newGroup = (C3DGroup *) group;
30 // check that new group has the correct object ID and is realized, and acquire a strong
32 // specifies group as this audio player
34 // the new group is left unlocked, but it will be locked again below
47 // remove this object from the old group's set of objects
50 // note that we already have a strong reference to the old group
56 // add this object to the new group's set of objects
59 // we already have a strong reference to the new group, but we need to re-lock it
84 C3DGroup *group local
109 C3DGroup *group = thiz->mGroup; local
[all...]
/frameworks/support/preference/src/main/java/androidx/preference/
H A DCollapsiblePreferenceGroupController.java35 * avoid unnecessary preference tree rebuilds when no such group exists.
48 * @param group the root preference group to be processed
51 public List<Preference> createVisiblePreferencesList(PreferenceGroup group) { argument
52 return createInnerVisiblePreferencesList(group);
55 private List<Preference> createInnerVisiblePreferencesList(PreferenceGroup group) { argument
59 group.getInitialExpandedChildrenCount() != Integer.MAX_VALUE;
63 final int groupSize = group.getPreferenceCount();
65 final Preference preference = group.getPreference(i);
72 || visiblePreferenceCount < group
134 createExpandButton(final PreferenceGroup group, List<Preference> collapsedPreferences) argument
[all...]
/frameworks/support/app-toolkit/buildSrc/src/main/kotlin/androidx/build/gmaven/
H A DGMavenVersionChecker.kt30 * Due to the structure of maven.google.com, a new query is necessary for each group.
40 * @param group The project group on maven
45 fun isReleased(group: String, artifactName: String, version: String): Boolean {
46 return getVersions(group, artifactName)?.contains(Version(version)) ?: false
52 * @param group The group id of the artifact
57 private fun getVersions(group: String, artifactName: String): Set<Version>? {
58 val groupData = getVersionData(group)
63 * Returns the version data for each artifact in a given group
[all...]
/frameworks/support/buildSrc/src/main/kotlin/androidx/build/gmaven/
H A DGMavenVersionChecker.kt30 * Due to the structure of maven.google.com, a new query is necessary for each group.
40 * @param group The project group on maven
45 fun isReleased(group: String, artifactName: String, version: String): Boolean {
46 return getVersions(group, artifactName)?.contains(Version(version)) ?: false
52 * @param group The group id of the artifact
57 private fun getVersions(group: String, artifactName: String): Set<Version>? {
58 val groupData = getVersionData(group)
63 * Returns the version data for each artifact in a given group
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/
H A DZenRadioLayout.java73 ViewGroup group = (ViewGroup) content;
74 for (int i = 0; i < group.getChildCount(); i++) {
75 View v = findFirstClickable(group.getChildAt(i));
85 ViewGroup group = (ViewGroup) content;
86 for (int i = group.getChildCount() - 1; i >= 0; i--) {
87 View v = findLastClickable(group.getChildAt(i));
/frameworks/support/jetifier/jetifier/standalone/
H A Dbuild.gradle26 compile group: 'commons-cli', name: 'commons-cli', version: '1.3.1'
/frameworks/base/tools/split-select/
H A DRuleGenerator.cpp98 sp<Rule> RuleGenerator::generate(const SortedVector<SplitDescription>& group, size_t index) { argument
102 if (group[index].config.locale != 0) {
107 group[index].config.getBcp47Locale(str);
112 if (group[index].config.sdkVersion != 0) {
116 sdk->longArgs.add(group[index].config.sdkVersion - 1);
120 if (group[index].config.density != 0) {
123 allDensities.add(group[index].config.density);
125 const size_t groupSize = group.size();
127 if (group[i].config.density != group[inde
[all...]

Completed in 538 milliseconds

1234567891011>>