Searched defs:group (Results 1 - 25 of 106) sorted by relevance

12345

/frameworks/support/transition/base/android/support/transition/
H A DViewGroupUtilsImpl.java26 ViewGroupOverlayImpl getOverlay(@NonNull ViewGroup group); argument
28 void suppressLayout(@NonNull ViewGroup group, boolean suppress); argument
/frameworks/support/transition/src/android/support/transition/
H A DViewGroupUtils.java41 static ViewGroupOverlayImpl getOverlay(@NonNull ViewGroup group) { argument
42 return IMPL.getOverlay(group);
48 static void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
49 IMPL.suppressLayout(group, suppress);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarIconControllerTest.java73 public TestDarkIconManager(LinearLayout group) { argument
74 super(group);
88 public TestIconManager(ViewGroup group) { argument
89 super(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,
H A DBridgeMenuItemImpl.java40 BridgeMenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, argument
42 super(menu, group, id, categoryOrder, ordering, title, showAsAction);
/frameworks/native/cmds/installd/
H A DCacheItem.h35 * group.
49 bool group; member in class:android::installd::CacheItem
/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/design/src/android/support/design/internal/
H A DBottomNavigationMenu.java40 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
45 protected MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
52 final MenuItem item = super.addInternal(group, id, categoryOrder, title);
H A DNavigationMenu.java42 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
43 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title);
/frameworks/support/transition/api18/android/support/transition/
H A DViewGroupOverlayApi18.java31 ViewGroupOverlayApi18(@NonNull ViewGroup group) { argument
32 mViewGroupOverlay = group.getOverlay();
H A DViewGroupUtilsApi18.java36 public ViewGroupOverlayImpl getOverlay(@NonNull ViewGroup group) { argument
37 return new ViewGroupOverlayApi18(group);
41 public void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
45 sSuppressLayoutMethod.invoke(group, suppress);
/frameworks/base/libs/hwui/tests/unit/
H A DRenderNodeTests.cpp308 VectorDrawable::Group* group = new VectorDrawable::Group(); local
309 sp<VectorDrawableRoot> vectorDrawable(new VectorDrawableRoot(group));
H A DVectorDrawableTests.cpp352 VectorDrawable::Group group; local
353 VectorDrawable::Group::GroupProperties* properties = group.mutateProperties();
/frameworks/base/tools/split-select/
H A DGrouper_test.cpp147 const SortedVector<SplitDescription>& group = mGroups[i]; local
148 if (group.size() != splitCount) {
154 if (group.indexOf(splits[j]) >= 0) {
164 String8 errorMessage("Failed to find expected group [");
175 const SortedVector<SplitDescription>& group = mGroups[i]; local
176 for (size_t j = 0; j < group.size(); j++) {
178 errorMessage.append(group[j].toString());
/frameworks/compile/mclinker/lib/LD/
H A DBranchIslandFactory.cpp38 /// group - group fragments and create islands when needed
40 void BranchIslandFactory::group(Module& pModule) { function in class:mcld::BranchIslandFactory
/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/support/transition/api14/android/support/transition/
H A DViewGroupUtilsApi14.java45 public ViewGroupOverlayImpl getOverlay(@NonNull ViewGroup group) { argument
46 return ViewGroupOverlayApi14.createFrom(group);
50 public void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
67 final LayoutTransition layoutTransition = group.getLayoutTransition();
73 group.setTag(R.id.transition_layout_save, layoutTransition);
77 group.setLayoutTransition(sEmptyLayoutTransition);
80 group.setLayoutTransition(null);
94 layoutSuppressed = sLayoutSuppressedField.getBoolean(group);
96 sLayoutSuppressedField.setBoolean(group, false);
103 group
[all...]
/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/base/core/java/android/hardware/display/
H A DWifiDisplaySessionInfo.java45 String group = in.readString();
49 return new WifiDisplaySessionInfo(client, session, group, pp, ip);
63 boolean client, int session, String group, String pp, String ip) {
66 mGroupId = group;
62 WifiDisplaySessionInfo( boolean client, int session, String group, String pp, String ip) argument
/frameworks/compile/mclinker/lib/Script/
H A DGroupCmd.cpp78 // --start-group
80 InputTree::iterator group = m_Builder.getCurrentNode(); local
163 // --end-group
166 // read the group
167 m_GroupReader.readGroup(group, m_InputTree.end(), m_Builder, m_Config);
/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/support/compat/java/android/support/v4/view/
H A DViewGroupCompat.java50 public int getLayoutMode(ViewGroup group) { argument
54 public void setLayoutMode(ViewGroup group, int mode) { argument
58 public void setTransitionGroup(ViewGroup group, boolean isTransitionGroup) { argument
59 group.setTag(R.id.tag_transition_group, isTransitionGroup);
62 public boolean isTransitionGroup(ViewGroup group) { argument
63 Boolean explicit = (Boolean) group.getTag(R.id.tag_transition_group);
65 || group.getBackground() != null
66 || ViewCompat.getTransitionName(group) != null;
69 public int getNestedScrollAxes(ViewGroup group) { argument
70 if (group instanceo
80 getLayoutMode(ViewGroup group) argument
85 setLayoutMode(ViewGroup group, int mode) argument
93 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
98 isTransitionGroup(ViewGroup group) argument
103 getNestedScrollAxes(ViewGroup group) argument
143 onRequestSendAccessibilityEvent(ViewGroup group, View child, AccessibilityEvent event) argument
167 setMotionEventSplittingEnabled(ViewGroup group, boolean split) argument
183 getLayoutMode(ViewGroup group) argument
196 setLayoutMode(ViewGroup group, int mode) argument
208 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
217 isTransitionGroup(ViewGroup group) argument
234 getNestedScrollAxes(@onNull ViewGroup group) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_slice_group_map.c103 Function to decode interleaved slice group map type, i.e. slice
104 group map type 0.
109 runLength run_length[] values for each slice group
113 map slice group map is stored here
129 u32 i,j, group; local
140 for (group = 0; group < numSliceGroups && i < picSize;
141 i += runLength[group++])
143 ASSERT(runLength[group] <= picSize);
144 for (j = 0; j < runLength[group]
237 u32 group; local
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DScreenPinningRequest.java248 private void swapChildrenIfRtlAndVertical(View group) { argument
253 LinearLayout linearLayout = (LinearLayout) group;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNearestTouchFrame.java69 private void addClickableChildren(ViewGroup group) { argument
70 final int N = group.getChildCount();
72 View child = group.getChildAt(i);

Completed in 1545 milliseconds

12345