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

1234567891011

/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
61 public boolean isTransitionGroup(ViewGroup group) { argument
65 public int getNestedScrollAxes(ViewGroup group) { argument
66 if (group instanceof NestedScrollingParent) {
67 return ((NestedScrollingParent) group).getNestedScrollAxes();
76 public int getLayoutMode(ViewGroup group) { argument
77 return group.getLayoutMode();
81 public void setLayoutMode(ViewGroup group, in argument
89 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
94 isTransitionGroup(ViewGroup group) argument
99 getNestedScrollAxes(ViewGroup group) argument
139 onRequestSendAccessibilityEvent(ViewGroup group, View child, AccessibilityEvent event) argument
163 setMotionEventSplittingEnabled(ViewGroup group, boolean split) argument
179 getLayoutMode(ViewGroup group) argument
192 setLayoutMode(ViewGroup group, int mode) argument
204 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
213 isTransitionGroup(ViewGroup group) argument
230 getNestedScrollAxes(@onNull ViewGroup group) argument
[all...]
/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/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.java53 NotificationGroup group = mGroupMap.get(getGroupKey(sbn));
54 if (group == null) {
57 return group.expanded;
61 NotificationGroup group = mGroupMap.get(getGroupKey(sbn));
62 if (group == null) {
65 setGroupExpanded(group, expanded);
68 private void setGroupExpanded(NotificationGroup group, boolean expanded) { argument
69 group.expanded = expanded;
70 if (group.summary != null) {
71 mListener.onGroupExpansionChanged(group
144 updateSuppression(NotificationGroup group) argument
164 hasIsolatedChildren(NotificationGroup group) argument
501 onGroupCreatedFromChildren(NotificationGroup group) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java108 * group.
117 * GROUP_SIZE) to make the odd-size group appear at the end instead
127 final int group = (int) (input & 0x1F);
130 encoded[--index] = alphabet[group];
143 final int group = input[i];
150 if ('A' <= group && group <= 'Z') {
151 value = group - 'A';
152 } 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/base/tools/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/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/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/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DObexTime.java45 * (except group 8 which is either + or -)
49 cal.set(Integer.parseInt(m.group(1)), Integer.parseInt(m.group(2)) - 1,
50 Integer.parseInt(m.group(3)), Integer.parseInt(m.group(4)),
51 Integer.parseInt(m.group(5)), Integer.parseInt(m.group(6)));
54 * if 7th group is matched then we have UTC offset information
57 if (m.group(7) != null) {
58 int ohh = Integer.parseInt(m.group(
[all...]
/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/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/transition/api18/android/support/transition/
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/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/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);
/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...]
/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/base/tests/TransitionTests/src/com/android/transitiontests/
H A DCrossfadeImage.java53 TransitionSet group = new TransitionSet();
54 group.setDuration(1500);
55 group.addTransition(mCrossfade).addTransition(new ChangeBounds());
56 mTransition = group;
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java85 // SipProfile URI --> group
137 for (SipSessionGroupExt group : mSipGroups.values()) {
138 if (isCallerRadio || isCallerCreator(group)) {
139 profiles.add(group.getLocalProfile());
176 SipSessionGroupExt group = createGroup(localProfile,
179 group.openToReceiveCalls();
188 private boolean isCallerCreator(SipSessionGroupExt group) { argument
189 SipProfile profile = group.getLocalProfile();
193 private boolean isCallerCreatorOrRadio(SipSessionGroupExt group) { argument
194 return (isCallerRadio() || isCallerCreator(group));
817 start(SipSessionGroup 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/core/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp89 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
91 group->addChild(child);
164 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
166 bool success = group->stagingProperties()->copyProperties(groupProperties, length);
173 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
174 group->mutateStagingProperties()->updateProperties(rotate, pivotX, pivotY, scaleX, scaleY,
197 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
198 return group->stagingProperties()->getRotation();
202 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
203 group
207 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
212 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
217 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
222 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
227 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
232 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
237 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
242 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
247 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
252 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
257 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
262 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pGroup.java30 * A class representing a Wi-Fi P2p group. A p2p group consists of a single group
31 * owner and one or more clients. In the case of a group with only two devices, one
32 * will be the group owner and the other will be a group client.
54 /** Device is group owner */
68 /** P2P group started string pattern */
115 mNetworkName = match.group(1);
117 //int freq = Integer.parseInt(match.group(
[all...]
/frameworks/base/core/java/com/android/internal/http/
H A DHttpDateTime.java95 date = getDate(rfcMatcher.group(1));
96 month = getMonth(rfcMatcher.group(2));
97 year = getYear(rfcMatcher.group(3));
98 timeOfDay = getTime(rfcMatcher.group(4));
102 month = getMonth(ansicMatcher.group(1));
103 date = getDate(ansicMatcher.group(2));
104 timeOfDay = getTime(ansicMatcher.group(3));
105 year = getYear(ansicMatcher.group(4));

Completed in 470 milliseconds

1234567891011