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

12345

/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/support/v4/java/android/support/v4/view/
H A DViewGroupCompat.java31 public boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
34 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split); argument
39 ViewGroup group, View child, AccessibilityEvent event) {
43 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
50 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { argument
51 ViewGroupCompatHC.setMotionEventSplittingEnabled(group, split);
58 ViewGroup group, View child, AccessibilityEvent event) {
59 return ViewGroupCompatIcs.onRequestSendAccessibilityEvent(group, child, event);
92 * @param group The group whos
38 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
57 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
97 onRequestSendAccessibilityEvent(ViewGroup group, View child, AccessibilityEvent event) argument
118 setMotionEventSplittingEnabled(ViewGroup group, boolean split) 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 DPermissionInfo.java93 * The group this permission is a part of, as per
96 public String group; field in class:PermissionInfo
166 group = orig.group;
209 dest.writeString(group);
228 group = source.readString();
/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/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/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java81 // SipProfile URI --> group
129 for (SipSessionGroupExt group : mSipGroups.values()) {
130 if (isCallerRadio || isCallerCreator(group)) {
131 profiles.add(group.getLocalProfile());
165 SipSessionGroupExt group = createGroup(localProfile,
168 group.openToReceiveCalls();
177 private boolean isCallerCreator(SipSessionGroupExt group) { argument
178 SipProfile profile = group.getLocalProfile();
182 private boolean isCallerCreatorOrRadio(SipSessionGroupExt group) { argument
183 return (isCallerRadio() || isCallerCreator(group));
791 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/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...]
H A DWifiP2pDevice.java189 deviceAddress = match.group(2);
196 deviceAddress = match.group(1);
204 deviceAddress = match.group(3);
205 primaryDeviceType = match.group(4);
206 deviceName = match.group(5);
207 wpsConfigMethodsSupported = parseHex(match.group(6));
208 deviceCapability = parseHex(match.group(7));
209 groupCapability = parseHex(match.group(8));
210 if (match.group(9) != null) {
211 String str = match.group(1
[all...]
H A DWifiP2pGroupList.java27 * A class representing a Wi-Fi P2p group list
69 * Return the list of p2p group.
71 * @return the list of p2p group.
78 * Add the specified group to this group list.
80 * @param group
82 void add(WifiP2pGroup group) { argument
83 mGroups.put(group.getNetworkId(), group);
87 * Remove the group wit
[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/compile/libbcc/tools/build/
H A Dgen-config-from-mk.py50 print '#define', match.group(1), match.group(2)
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DClipRegionActivity.java35 final RegionView group = new RegionView(this);
39 group.addView(text);
41 setContentView(group);
43 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
H A DClipRegion2Activity.java33 final RegionView group = new RegionView(this);
37 group.addView(text);
39 setContentView(group);
H A DClipRegion3Activity.java33 final RegionView group = new RegionView(this);
37 group.addView(text);
39 setContentView(group);
/frameworks/base/core/java/android/view/
H A DMenu.java77 * Value to use for group and item identifier integers when you don't care
83 * First value for group and item identifier integers.
118 * any existing menu items in the same group.
157 * @param groupId The group identifier that this item should be part of.
160 * group.
174 * @param groupId The group identifier that this item should be part of.
177 * group.
216 * @param groupId The group identifier that this item should be part of.
219 * group.
233 * @param groupId The group identifie
339 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
349 setGroupVisible(int group, boolean visible) argument
359 setGroupEnabled(int group, boolean enabled) argument
[all...]
/frameworks/base/core/java/android/net/
H A DWebAddress.java79 t = m.group(MATCH_GROUP_SCHEME);
81 t = m.group(MATCH_GROUP_AUTHORITY);
83 t = m.group(MATCH_GROUP_HOST);
85 t = m.group(MATCH_GROUP_PORT);
94 t = m.group(MATCH_GROUP_PATH);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuWrapperICS.java113 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
114 mWrappedObject.setGroupCheckable(group, checkable, exclusive);
118 public void setGroupVisible(int group, boolean visible) { argument
119 mWrappedObject.setGroupVisible(group, visible);
123 public void setGroupEnabled(int group, boolean enabled) { argument
124 mWrappedObject.setGroupEnabled(group, enabled);
/frameworks/base/core/java/android/util/
H A DPatterns.java192 String s = matcher.group(i);
216 String matchingRegion = matcher.group();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaMmiCode.java110 ret.mPoundString = makeEmptyNull(m.group(MATCH_GROUP_POUND_STRING));
111 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
112 ret.mSc = makeEmptyNull(m.group(MATCH_GROUP_SERVICE_CODE));
113 ret.mSia = makeEmptyNull(m.group(MATCH_GROUP_SIA));
114 ret.mSib = makeEmptyNull(m.group(MATCH_GROUP_SIB));
115 ret.mSic = makeEmptyNull(m.group(MATCH_GROUP_SIC));
116 ret.mPwd = makeEmptyNull(m.group(MATCH_GROUP_PWD_CONFIRM));
117 ret.mDialingNumber = makeEmptyNull(m.group(MATCH_GROUP_DIALING_NUMBER));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletTicker.java257 ViewGroup group;
266 group = (ViewGroup)inflater.inflate(R.layout.system_bar_ticker_panel, null, false);
267 ViewGroup content = (FrameLayout) group.findViewById(R.id.ticker_expanded);
287 group = (ViewGroup)inflater.inflate(R.layout.system_bar_ticker_compat, mWindow, false);
291 ImageView iv = (ImageView)group.findViewById(iconId);
294 TextView tv = (TextView)group.findViewById(R.id.text);
299 ImageView largeIcon = (ImageView)group.findViewById(R.id.large_icon);
322 group.setOnClickListener(new View.OnClickListener() {
329 group.setOnClickListener(null);
333 return group;
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuBuilder.java386 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
389 final MenuItemImpl item = new MenuItemImpl(this, group, id, categoryOrder,
411 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
412 return addInternal(group, id, categoryOrder, title);
415 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
416 return addInternal(group, id, categoryOrder, mResources.getString(title));
427 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
428 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title);
435 public SubMenu addSubMenu(int group, int id, int categoryOrder, int title) { argument
436 return addSubMenu(group, i
439 addIntentOptions(int group, int id, int categoryOrder, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
472 removeGroup(int group) argument
544 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
556 setGroupVisible(int group, boolean visible) argument
573 setGroupEnabled(int group, boolean enabled) argument
628 findGroupIndex(int group) argument
632 findGroupIndex(int group, int start) argument
[all...]

Completed in 2060 milliseconds

12345