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

123456789

/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
H A DViewGroupCompatJellybeanMR2.java23 public static int getLayoutMode(ViewGroup group) { argument
24 return group.getLayoutMode();
27 public static void setLayoutMode(ViewGroup group, int mode) { argument
28 group.setLayoutMode(mode);
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewGroupCompatLollipop.java23 public static void setTransitionGroup(ViewGroup group, boolean isTransitionGroup) { argument
24 group.setTransitionGroup(isTransitionGroup);
27 public static boolean isTransitionGroup(ViewGroup group) { argument
28 return group.isTransitionGroup();
31 public static int getNestedScrollAxes(ViewGroup group) { argument
32 return group.getNestedScrollAxes();
/frameworks/support/v4/java/android/support/v4/view/
H A DViewGroupCompat.java47 boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
49 void setMotionEventSplittingEnabled(ViewGroup group, boolean split); argument
50 int getLayoutMode(ViewGroup group); argument
51 void setLayoutMode(ViewGroup group, int mode); argument
52 void setTransitionGroup(ViewGroup group, boolean isTransitionGroup); argument
53 boolean isTransitionGroup(ViewGroup group); argument
54 int getNestedScrollAxes(ViewGroup group); argument
59 ViewGroup group, View child, AccessibilityEvent event) {
63 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
68 public int getLayoutMode(ViewGroup group) { argument
58 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
73 setLayoutMode(ViewGroup group, int mode) argument
78 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
82 isTransitionGroup(ViewGroup group) argument
87 getNestedScrollAxes(ViewGroup group) argument
97 setMotionEventSplittingEnabled(ViewGroup group, boolean split) argument
104 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
112 getLayoutMode(ViewGroup group) argument
117 setLayoutMode(ViewGroup group, int mode) argument
124 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
129 isTransitionGroup(ViewGroup group) argument
134 getNestedScrollAxes(ViewGroup group) argument
175 onRequestSendAccessibilityEvent(ViewGroup group, View child, AccessibilityEvent event) argument
196 setMotionEventSplittingEnabled(ViewGroup group, boolean split) argument
212 getLayoutMode(ViewGroup group) argument
225 setLayoutMode(ViewGroup group, int mode) argument
237 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
246 isTransitionGroup(ViewGroup group) argument
262 getNestedScrollAxes(ViewGroup group) argument
[all...]
/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewGroupCompatHC.java26 public static void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
27 group.setMotionEventSplittingEnabled(split);
/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.java52 NotificationGroup group = mGroupMap.get(getGroupKey(sbn));
53 if (group == null) {
56 return group.expanded;
60 NotificationGroup group = mGroupMap.get(getGroupKey(sbn));
61 if (group == null) {
64 setGroupExpanded(group, expanded);
67 private void setGroupExpanded(NotificationGroup group, boolean expanded) { argument
68 group.expanded = expanded;
69 if (group.summary != null) {
70 mListener.onGroupExpansionChanged(group
152 updateSuppression(NotificationGroup group) argument
170 hasIsolatedChildren(NotificationGroup group) argument
498 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/v4/ics/android/support/v4/view/
H A DViewGroupCompatIcs.java27 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
29 return group.onRequestSendAccessibilityEvent(child, event);
/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/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/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.c22 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/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));
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DRadioGroupBindingAdapter.java45 public void onCheckedChanged(RadioGroup group, int checkedId) {
47 listener.onCheckedChanged(group, checkedId);

Completed in 572 milliseconds

123456789