Searched refs:group (Results 126 - 150 of 203) sorted by relevance

123456789

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImpl.java475 TaskGrouping group = task.group;
478 toTaskKey = group.getNextTaskInGroup(task);
483 toTaskKey = group.getPrevTaskInGroup(task);
491 numAffiliatedTasks = group.getTaskCount();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyboardShortcuts.java578 KeyboardShortcutGroup group = keyboardShortcutGroups.get(i);
581 categoryTitle.setText(group.getLabel());
582 categoryTitle.setTextColor(group.isSystemGroup()
589 final int itemsSize = group.getItems().size();
591 KeyboardShortcutInfo info = group.getItems().get(j);
/frameworks/base/tools/aapt/
H A DResource.cpp110 sp<AaptGroup> group; local
113 // Try to get next file in this current group.
115 group = mGroup;
116 file = group->getFiles().valueAt(mGroupPos++);
118 // Try to get the next group/file in this directory
120 mGroup = group = mSet->valueAt(mSetPos++);
121 if (group->getFiles().size() < 1) {
124 file = group->getFiles().valueAt(0);
134 String8 leaf(group->getLeaf());
139 group
398 const sp<AaptGroup>& group = groups.valueAt(i); local
3110 const sp<AaptGroup>& group = groups.valueAt(i); local
[all...]
/frameworks/native/cmds/installd/
H A Dutils.cpp438 static int _copy_dir_files(int sdfd, int ddfd, uid_t owner, gid_t group) argument
444 if (fchown(ddfd, owner, group) != 0) {
468 if (fchown(fdfd, owner, group) != 0) {
492 uid_t group)
515 res = _copy_dir_files(sdfd, ddfd, owner, group);
489 copy_dir_files(const char *srcname, const char *dstname, uid_t owner, uid_t group) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DGridLayoutManager.java446 throw new RuntimeException("Cannot find span group index for position "
946 * Returns the index of the group this position belongs.
948 * For example, if grid has 3 columns and each item occupies 1 span, span group index
953 * @return The index of the span group including the item at the given adapter position
957 int group = 0;
964 group++;
968 group++;
972 group++;
974 return group;
/frameworks/base/core/java/android/view/
H A DThreadedRenderer.java511 ViewGroup group = (ViewGroup) view;
513 int count = group.getChildCount();
515 destroyResources(group.getChildAt(i));
H A DLayoutInflater.java966 final ViewGroup group = (ViewGroup) parent;
984 params = group.generateLayoutParams(attrs);
989 params = group.generateLayoutParams(childAttrs);
1012 group.addView(view);
/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp316 Group::Group(const Group& group) : Node(group) { argument
317 mStagingProperties.syncProperties(group.mStagingProperties);
324 // Calculate current group's matrix by preConcat the parent's and
327 // Mi the local matrix at level i of the group tree.
333 // Save the current clip information, which is local to this group.
335 // Draw the group tree in the same order as the XML file.
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java64 * ,forms a p2p group or there is an explicit {@link #stopPeerDiscovery}.
75 * Wi-Fi devices that do not support p2p, an app can create a group using {@link #createGroup}
78 * <p> After a successful group formation through {@link #createGroup} or through {@link #connect},
80 * {@link WifiP2pInfo} contains the address of the group owner
82 * if the current device is a p2p group owner. A p2p client can thus communicate with
83 * the p2p group owner through a socket connection.
172 * the details of the group.
550 /** Interface for callback invocation when group info is available */
553 * The requested p2p group info is available
554 * @param group W
556 onGroupInfoAvailable(WifiP2pGroup group) argument
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DBottomSheetBehavior.java551 ViewGroup group = (ViewGroup) view;
552 for (int i = 0, count = group.getChildCount(); i < count; i++) {
553 View scrollingChild = findScrollingChild(group.getChildAt(i));
/frameworks/base/core/java/android/os/
H A DProcess.java87 * Defines the UID/GID for the log group.
111 * Defines the UID/GID for the group that controls VPN services.
129 * Defines the GID for the group that allows write access to the internal media storage.
330 * Default thread group -
332 * When used with setProcessGroup(), the group of each thread in the process
335 * are moved to foreground thread group. All other threads are left unchanged.
341 * Background thread group - All threads in
342 * this group are scheduled with a reduced share of the CPU.
350 * Foreground thread group - All threads in
351 * this group ar
968 setThreadGroup(int tid, int group) argument
989 setProcessGroup(int pid, int group) argument
[all...]
/frameworks/base/core/java/android/text/util/
H A DLinkify.java466 String url = makeUrl(m.group(0), schemesCopy, m, transformFilter);
521 String url = makeUrl(m.group(0), schemes, m, transformFilter);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuItemImpl.java107 * @param group Item ordering grouping control. The item will be added after
115 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, argument
134 mGroup = group;
444 // exclusive checkable group
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsTransitionHelper.java156 if (task.group != null && !task.group.isFrontMostTask(task)) {
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDex.java221 int major = Integer.parseInt(matcher.group(1));
222 int minor = Integer.parseInt(matcher.group(2));
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuItemImpl.java110 * @param group Item ordering grouping control. The item will be added after
118 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, argument
135 mGroup = group;
484 // exclusive checkable group
/frameworks/base/core/java/android/webkit/
H A DURLUtil.java404 return m.group(2);
/frameworks/base/core/java/android/widget/
H A DRadioGroup.java31 * buttons. Checking one radio button that belongs to a radio group unchecks
32 * any previously checked radio button within the same group.</p>
35 * to uncheck a particular radio button, the radio group can be cleared to
148 * @param id the unique id of the radio button to select in this group
185 * <p>Returns the identifier of the selected radio button in this group.
188 * @return the unique id of the selected radio button in this group
202 * in this group is selected and {@link #getCheckedRadioButtonId()} returns
214 * changes in this group.</p>
324 * radio button changed in this group.</p>
331 * @param group th
334 onCheckedChanged(RadioGroup group, @IdRes int checkedId) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/view/
H A DViewGroupChildrenTest.java46 mGroup = (ViewGroup) a.findViewById(R.id.group);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeParameters.java162 rt.mSchedule[i] = Integer.parseInt(m.group(1));
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DListenerBindingObject.java118 public void onCheckedChanged(RadioGroup group, int checkedId) { } argument
/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java2434 final ViewGroup group = (ViewGroup) v;
2437 final int count = group.getChildCount();
2441 final View child = group.getChildAt(i);
2571 final ViewGroup group = (ViewGroup) parent;
2572 outRect.left += group.getLeft();
2573 outRect.right += group.getRight();
2574 outRect.top += group.getTop();
2575 outRect.bottom += group.getBottom();
2577 parent = group.getParent();
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java2692 final ViewGroup group = (ViewGroup) v;
2695 final int count = group.getChildCount();
2700 final View child = group.getChildAt(i);
2834 final ViewGroup group = (ViewGroup) parent;
2835 outRect.left += group.getLeft();
2836 outRect.right += group.getRight();
2837 outRect.top += group.getTop();
2838 outRect.bottom += group.getBottom();
2840 parent = group.getParent();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DResourceHelper.java512 String f_str = m.group(1);
513 String end = m.group(2);
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
H A DLocalizeDependenciesTask.groovy99 return id.group + ":" + id.name + ":" + id.version;

Completed in 5195 milliseconds

123456789