Home
last modified time | relevance | path

Searched refs:group (Results 1 – 25 of 259) sorted by relevance

1234567891011

/frameworks/support/v4/java/android/support/v4/view/
DViewGroupCompat.java47 public boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, in onRequestSendAccessibilityEvent() argument
50 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split); in setMotionEventSplittingEnabled() argument
51 public int getLayoutMode(ViewGroup group); in getLayoutMode() argument
52 public void setLayoutMode(ViewGroup group, int mode); in setLayoutMode() argument
53 public void setTransitionGroup(ViewGroup group, boolean isTransitionGroup); in setTransitionGroup() argument
54 public boolean isTransitionGroup(ViewGroup group); in isTransitionGroup() argument
59 ViewGroup group, View child, AccessibilityEvent event) { in onRequestSendAccessibilityEvent() argument
63 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split) { in setMotionEventSplittingEnabled() argument
68 public int getLayoutMode(ViewGroup group) { in getLayoutMode() argument
73 public void setLayoutMode(ViewGroup group, int mode) { in setLayoutMode() argument
[all …]
/frameworks/base/core/java/android/content/pm/
DVerifierDeviceIdentity.java127 final int group = (int) (input & 0x1F); in encodeBase32() local
130 encoded[--index] = alphabet[group]; in encodeBase32()
143 final int group = input[i]; in decodeBase32() local
150 if ('A' <= group && group <= 'Z') { in decodeBase32()
151 value = group - 'A'; in decodeBase32()
152 } else if ('2' <= group && group <= '7') { in decodeBase32()
153 value = group - ('2' - 26); in decodeBase32()
154 } else if (group == SEPARATOR) { in decodeBase32()
156 } else if ('a' <= group && group <= 'z') { in decodeBase32()
158 value = group - 'a'; in decodeBase32()
[all …]
DPermissionInfo.java103 public String group; field in PermissionInfo
176 group = orig.group; in PermissionInfo()
219 dest.writeString(group); in writeToParcel()
238 group = source.readString(); in PermissionInfo()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
DTaskStack.java207 TaskGrouping group = t.group; in removeTask() local
208 group.removeTask(t); in removeTask()
209 if (group.getTaskCount() == 0) { in removeTask()
210 removeGroup(group); in removeTask()
234 TaskGrouping group = t.group; in setTasks() local
235 group.removeTask(t); in setTasks()
236 if (group.getTaskCount() == 0) { in setTasks()
237 removeGroup(group); in setTasks()
324 public void addGroup(TaskGrouping group) { in addGroup() argument
325 mGroups.add(group); in addGroup()
[all …]
DTask.java114 public TaskGrouping group; field in Task
176 public void setGroup(TaskGrouping group) { in setGroup() argument
177 if (group != null && this.group != null) { in setGroup()
180 this.group = group; in setGroup()
211 if (group != null) { in toString()
212 groupAffiliation = Integer.toString(group.affiliation); in toString()
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
DObexTime.java49 cal.set(Integer.parseInt(m.group(1)), Integer.parseInt(m.group(2)) - 1, in ObexTime()
50 Integer.parseInt(m.group(3)), Integer.parseInt(m.group(4)), in ObexTime()
51 Integer.parseInt(m.group(5)), Integer.parseInt(m.group(6))); in ObexTime()
57 if (m.group(7) != null) { in ObexTime()
58 int ohh = Integer.parseInt(m.group(9)); in ObexTime()
59 int omm = Integer.parseInt(m.group(10)); in ObexTime()
64 if (m.group(8).equals("-")) { in ObexTime()
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
DObexTime.java49 cal.set(Integer.parseInt(m.group(1)), Integer.parseInt(m.group(2)) - 1, in ObexTime()
50 Integer.parseInt(m.group(3)), Integer.parseInt(m.group(4)), in ObexTime()
51 Integer.parseInt(m.group(5)), Integer.parseInt(m.group(6))); in ObexTime()
57 if (m.group(7) != null) { in ObexTime()
58 int ohh = Integer.parseInt(m.group(9)); in ObexTime()
59 int omm = Integer.parseInt(m.group(10)); in ObexTime()
64 if (m.group(8).equals("-")) { in ObexTime()
/frameworks/wilhelm/src/itf/
DI3DGrouping.c22 static SLresult I3DGrouping_Set3DGroup(SL3DGroupingItf self, SLObjectItf group) in I3DGrouping_Set3DGroup() argument
27 C3DGroup *newGroup = (C3DGroup *) group; in I3DGrouping_Set3DGroup()
84 C3DGroup *group = thiz->mGroup; in I3DGrouping_Get3DGroup() local
85 *pGroup = (NULL != group) ? &group->mObject.mItf : NULL; in I3DGrouping_Get3DGroup()
109 C3DGroup *group = thiz->mGroup; in I3DGrouping_deinit() local
110 if (NULL != group) { in I3DGrouping_deinit()
112 IObject *groupObject = &group->mObject; in I3DGrouping_deinit()
114 assert(group->mMemberMask & mask); in I3DGrouping_deinit()
115 group->mMemberMask &= ~mask; in I3DGrouping_deinit()
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipService.java129 for (SipSessionGroupExt group : mSipGroups.values()) { in getListOfProfiles()
130 if (isCallerRadio || isCallerCreator(group)) { in getListOfProfiles()
131 profiles.add(group.getLocalProfile()); in getListOfProfiles()
165 SipSessionGroupExt group = createGroup(localProfile, in open3() local
168 group.openToReceiveCalls(); in open3()
177 private boolean isCallerCreator(SipSessionGroupExt group) { in isCallerCreator() argument
178 SipProfile profile = group.getLocalProfile(); in isCallerCreator()
182 private boolean isCallerCreatorOrRadio(SipSessionGroupExt group) { in isCallerCreatorOrRadio() argument
183 return (isCallerRadio() || isCallerCreator(group)); in isCallerCreatorOrRadio()
194 SipSessionGroupExt group = mSipGroups.get(localProfileUri); in close() local
[all …]
/frameworks/native/services/surfaceflinger/RenderEngine/
DGLES20RenderEngine.cpp263 Group group; in beginGroup() local
264 group.texture = tname; in beginGroup()
265 group.fbo = name; in beginGroup()
266 group.width = mVpWidth; in beginGroup()
267 group.height = mVpHeight; in beginGroup()
268 group.colorTransform = colorTransform; in beginGroup()
270 mGroupStack.push(group); in beginGroup()
275 const Group group(mGroupStack.top()); in endGroup() local
286 Texture texture(Texture::TEXTURE_2D, group.texture); in endGroup()
287 texture.setDimensions(group.width, group.height); in endGroup()
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_slice_group_map.c129 u32 i,j, group; in DecodeInterleavedMap() local
140 for (group = 0; group < numSliceGroups && i < picSize; in DecodeInterleavedMap()
141 i += runLength[group++]) in DecodeInterleavedMap()
143 ASSERT(runLength[group] <= picSize); in DecodeInterleavedMap()
144 for (j = 0; j < runLength[group] && i + j < picSize; j++) in DecodeInterleavedMap()
145 map[i+j] = group; in DecodeInterleavedMap()
237 u32 group; in DecodeForegroundLeftOverMap() local
253 for (group = numSliceGroups - 1; group--; ) in DecodeForegroundLeftOverMap()
255 ASSERT( topLeft[group] <= bottomRight[group] && in DecodeForegroundLeftOverMap()
256 bottomRight[group] < picSize ); in DecodeForegroundLeftOverMap()
[all …]
/frameworks/base/wifi/java/android/net/wifi/p2p/
DWifiP2pGroup.java115 mNetworkName = match.group(1); in WifiP2pGroup()
119 mPassphrase = match.group(4); in WifiP2pGroup()
120 mOwner = new WifiP2pDevice(match.group(5)); in WifiP2pGroup()
121 if (match.group(6) != null) { in WifiP2pGroup()
314 WifiP2pGroup group = new WifiP2pGroup();
315 group.setNetworkName(in.readString());
316 group.setOwner((WifiP2pDevice)in.readParcelable(null));
317 group.setIsGroupOwner(in.readByte() == (byte)1);
320 group.addClient((WifiP2pDevice) in.readParcelable(null));
322 group.setPassphrase(in.readString());
[all …]
DWifiP2pDevice.java189 deviceAddress = match.group(2); in WifiP2pDevice()
196 deviceAddress = match.group(1); in WifiP2pDevice()
204 deviceAddress = match.group(3); in WifiP2pDevice()
205 primaryDeviceType = match.group(4); in WifiP2pDevice()
206 deviceName = match.group(5); in WifiP2pDevice()
207 wpsConfigMethodsSupported = parseHex(match.group(6)); in WifiP2pDevice()
208 deviceCapability = parseHex(match.group(7)); in WifiP2pDevice()
209 groupCapability = parseHex(match.group(8)); in WifiP2pDevice()
210 if (match.group(9) != null) { in WifiP2pDevice()
211 String str = match.group(10); in WifiP2pDevice()
/frameworks/base/core/tests/coretests/src/android/widget/
DRadioGroupPreCheckedTest.java41 RadioGroup group = (RadioGroup) activity.findViewById(R.id.group); in testRadioButtonPreChecked() local
43 group.getCheckedRadioButtonId()); in testRadioButtonPreChecked()
58 RadioGroup group = (RadioGroup) activity.findViewById(R.id.group); in testRadioButtonChangePreChecked() local
60 group.getCheckedRadioButtonId()); in testRadioButtonChangePreChecked()
/frameworks/support/v4/api21/android/support/v4/view/
DViewGroupCompatApi21.java23 public static void setTransitionGroup(ViewGroup group, boolean isTransitionGroup) { in setTransitionGroup() argument
24 group.setTransitionGroup(isTransitionGroup); in setTransitionGroup()
27 public static boolean isTransitionGroup(ViewGroup group) { in isTransitionGroup() argument
28 return group.isTransitionGroup(); in isTransitionGroup()
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
DViewGroupCompatJellybeanMR2.java23 public static int getLayoutMode(ViewGroup group) { in getLayoutMode() argument
24 return group.getLayoutMode(); in getLayoutMode()
27 public static void setLayoutMode(ViewGroup group, int mode) { in setLayoutMode() argument
28 group.setLayoutMode(mode); in setLayoutMode()
/frameworks/opt/net/voip/src/java/android/net/rtp/
DAudioStream.java87 public void join(AudioGroup group) { in join() argument
89 if (mGroup == group) { in join()
96 if (group != null) { in join()
97 group.add(this); in join()
98 mGroup = group; in join()
/frameworks/base/core/java/com/android/internal/http/
DHttpDateTime.java95 date = getDate(rfcMatcher.group(1)); in parse()
96 month = getMonth(rfcMatcher.group(2)); in parse()
97 year = getYear(rfcMatcher.group(3)); in parse()
98 timeOfDay = getTime(rfcMatcher.group(4)); in parse()
102 month = getMonth(ansicMatcher.group(1)); in parse()
103 date = getDate(ansicMatcher.group(2)); in parse()
104 timeOfDay = getTime(ansicMatcher.group(3)); in parse()
105 year = getYear(ansicMatcher.group(4)); in parse()
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
DMenuBuilder.java427 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { in addInternal() argument
430 final MenuItemImpl item = createNewMenuItem(group, id, categoryOrder, ordering, title, in addInternal()
445 private MenuItemImpl createNewMenuItem(int group, int id, int categoryOrder, int ordering, in createNewMenuItem() argument
447 return new MenuItemImpl(this, group, id, categoryOrder, ordering, title, in createNewMenuItem()
461 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { in add() argument
462 return addInternal(group, id, categoryOrder, title); in add()
466 public MenuItem add(int group, int id, int categoryOrder, int title) { in add() argument
467 return addInternal(group, id, categoryOrder, mResources.getString(title)); in add()
481 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { in addSubMenu() argument
482 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title); in addSubMenu()
[all …]
/frameworks/base/core/java/com/android/internal/view/menu/
DMenuBuilder.java405 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { in addInternal() argument
408 final MenuItemImpl item = createNewMenuItem(group, id, categoryOrder, ordering, title, in addInternal()
423 private MenuItemImpl createNewMenuItem(int group, int id, int categoryOrder, int ordering, in createNewMenuItem() argument
425 return new MenuItemImpl(this, group, id, categoryOrder, ordering, title, in createNewMenuItem()
437 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { in add() argument
438 return addInternal(group, id, categoryOrder, title); in add()
441 public MenuItem add(int group, int id, int categoryOrder, int title) { in add() argument
442 return addInternal(group, id, categoryOrder, mResources.getString(title)); in add()
453 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { in addSubMenu() argument
454 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title); in addSubMenu()
[all …]
/frameworks/opt/net/voip/src/jni/rtp/
DAudioGroup.cpp508 NetworkThread(AudioGroup *group) : Thread(false), mGroup(group) {} in NetworkThread() argument
528 DeviceThread(AudioGroup *group) : Thread(false), mGroup(group) {} in DeviceThread() argument
945 AudioGroup *group = NULL; in add() local
995 group = (AudioGroup *)env->GetLongField(thiz, gNative); in add()
996 if (!group) { in add()
998 group = new AudioGroup; in add()
999 if (!group->set(8000, 256) || !group->setMode(mode)) { in add()
1007 if (!group->add(stream)) { in add()
1014 env->SetLongField(thiz, gNative, (jlong)group); in add()
1018 delete group; in add()
[all …]
/frameworks/base/core/java/android/widget/
DAppSecurityPermissions.java388 final String origGroupName = tmpPermInfo.group; in extractPerms()
392 tmpPermInfo.group = groupName; in extractPerms()
394 MyPermissionGroupInfo group = mPermGroups.get(groupName); in extractPerms() local
395 if (group == null) { in extractPerms()
401 group = new MyPermissionGroupInfo(grp); in extractPerms()
407 tmpPermInfo.group = tmpPermInfo.packageName; in extractPerms()
408 group = mPermGroups.get(tmpPermInfo.group); in extractPerms()
409 if (group == null) { in extractPerms()
410 group = new MyPermissionGroupInfo(tmpPermInfo); in extractPerms()
412 group = new MyPermissionGroupInfo(tmpPermInfo); in extractPerms()
[all …]
/frameworks/base/core/java/android/net/
DWebAddress.java80 t = m.group(MATCH_GROUP_SCHEME); in WebAddress()
82 t = m.group(MATCH_GROUP_AUTHORITY); in WebAddress()
84 t = m.group(MATCH_GROUP_HOST); in WebAddress()
86 t = m.group(MATCH_GROUP_PORT); in WebAddress()
95 t = m.group(MATCH_GROUP_PATH); in WebAddress()
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
DCrossfadeImage.java53 TransitionSet group = new TransitionSet(); in onCreate() local
54 group.setDuration(1500); in onCreate()
55 group.addTransition(mCrossfade).addTransition(new ChangeBounds()); in onCreate()
56 mTransition = group; in onCreate()
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DClipRegionActivity.java35 final RegionView group = new RegionView(this); in onCreate() local
39 group.addView(text); in onCreate()
41 setContentView(group); in onCreate()
43 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f); in onCreate()

1234567891011