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

1234567

/frameworks/support/v4/api21/android/support/v4/view/
H A DViewGroupCompatApi21.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();
/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/java/android/support/v4/view/
H A DViewGroupCompat.java47 public boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
50 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split); argument
51 public int getLayoutMode(ViewGroup group); argument
52 public void setLayoutMode(ViewGroup group, int mode); argument
53 public void setTransitionGroup(ViewGroup group, boolean isTransitionGroup); argument
54 public boolean isTransitionGroup(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
73 public void setLayoutMode(ViewGroup group, in argument
58 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
78 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
82 isTransitionGroup(ViewGroup group) argument
89 setMotionEventSplittingEnabled(ViewGroup group, boolean split) argument
96 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
104 getLayoutMode(ViewGroup group) argument
109 setLayoutMode(ViewGroup group, int mode) argument
116 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
121 isTransitionGroup(ViewGroup group) argument
164 onRequestSendAccessibilityEvent(ViewGroup group, View child, AccessibilityEvent event) argument
185 setMotionEventSplittingEnabled(ViewGroup group, boolean split) argument
201 getLayoutMode(ViewGroup group) argument
214 setLayoutMode(ViewGroup group, int mode) argument
226 setTransitionGroup(ViewGroup group, boolean isTransitionGroup) argument
235 isTransitionGroup(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/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.java41 BridgeMenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, argument
43 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/opt/bluetooth/src/android/bluetooth/client/pbap/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/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/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java166 /** A pair of indices representing the group and task positions in the stack and group. */
169 public int taskIndex; // Index in the group
179 // The task offset to apply to a task id as a group affiliation
206 // Remove it from the group as well, and if it is empty, remove the group
207 TaskGrouping group = t.group;
208 group.removeTask(t);
209 if (group
324 addGroup(TaskGrouping group) argument
329 removeGroup(TaskGrouping group) argument
[all...]
H A DTask.java114 public TaskGrouping group; field in class:Task
176 public void setGroup(TaskGrouping group) { argument
177 if (group != null && this.group != null) {
178 throw new RuntimeException("This task is already assigned to a group.");
180 this.group = group;
210 String groupAffiliation = "no group";
211 if (group != null) {
212 groupAffiliation = Integer.toString(group
[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/native/services/surfaceflinger/RenderEngine/
H A DGLES20RenderEngine.cpp263 Group group; local
264 group.texture = tname;
265 group.fbo = name;
266 group.width = mVpWidth;
267 group.height = mVpHeight;
268 group.colorTransform = colorTransform;
270 mGroupStack.push(group);
275 const Group group(mGroupStack.top());
286 Texture texture(Texture::TEXTURE_2D, group.texture);
287 texture.setDimensions(group
[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...]
/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/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DClipOutlineActivity.java38 final RegionView group = new RegionView(this);
42 group.addView(text);
44 setContentView(group);
46 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
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);

Completed in 915 milliseconds

1234567