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

12345

/frameworks/support/v4/java/android/support/v4/view/
H A DViewGroupCompat.java31 public boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
37 ViewGroup group, View child, AccessibilityEvent event) {
45 ViewGroup group, View child, AccessibilityEvent event) {
46 return ViewGroupCompatIcs.onRequestSendAccessibilityEvent(group, child, event);
76 * @param group The group whose method to invoke.
81 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
83 return IMPL.onRequestSendAccessibilityEvent(group, child, event);
36 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
44 onRequestSendAccessibilityEvent( ViewGroup group, View child, AccessibilityEvent event) argument
/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.java58 * The group this permission is a part of, as per
61 public String group; field in class:PermissionInfo
91 group = orig.group;
133 dest.writeString(group);
151 group = source.readString();
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dms_map_mask.h78 Int *group,
H A Dps_stereo_processing.cpp160 Int32 group; local
197 for (group = 0; group < SUBQMF_GROUPS; group++) /* SUBQMF_GROUPS == 10 */
200 temp1 = pms->deltaH11[group];
201 temp2 = pms->deltaH12[group];
203 pms->H11[group] += temp1;
204 h11 = (Int16)(pms->H11[group] >> 16);
205 pms->H12[group] += temp2;
206 h12 = (Int16)(pms->H12[group] >> 1
[all...]
H A Dps_init_stereo_mixing.cpp222 Int32 group; local
279 for (group = 0; group < NO_IID_GROUPS; group++) /* == 22 */
281 bin = bins2groupMap[group];
358 ptr_tmp = &pms->h11Prev[group];
359 pms->H11[group] = *ptr_tmp;
360 pms->deltaH11[group] = (h11 - *ptr_tmp) >> 5;
363 ptr_tmp = &pms->h12Prev[group];
364 pms->H12[group]
[all...]
H A Dgetgroup.cpp33 (3) Modified UChar -> Int on data types of group
48 group[] = array that holds the index of the first window in each
49 group. Type Int
61 group contains the index of first windows in each group
75 set of short windows form a group then they share scalefactors, intensity
76 positions and PNS information. The first short window is always a new group
78 group if the associated grouping bit is 1. A new group is started if the
81 of next group
217 getgroup( Int group[], BITS *pInputStream) argument
[all...]
H A Ddeinterleave.cpp73 each group
122 FOR (group = ngroups; group > 0; group--)
128 FOR (sfb = pSfbPerWin[ngroups-group]; sfb > 0; sfb--)
132 FOR (win = pGroupLen[ngroups-group]; win > 0; win--)
153 ENDFOR (group)
228 Int group; /* group index */ local
252 for (group
[all...]
H A Dcalc_gsfb_table.cpp43 group[] = array that contains the grouping information of short
44 windows (stop index of windows in each group).
58 scalefactor bands in each group
71 scalefactor band in each group.
72 All windows within one group share the same scalefactors and are interleaved
73 on a scalefactor band basis. Within each group, the actual length of one
81 with the cumulative bandwidth of each scalefactor band in each group
119 pFrameInfo->group_len[group_idx] = group[group_idx] - offset;
120 offset = group[group_idx];
213 Int group[])
211 calc_gsfb_table( FrameInfo *pFrameInfo, Int group[]) argument
[all...]
H A Dapply_ms_synt.h81 const Int group[],
H A Dget_ics_info.h95 Int group[],
H A Dpns_left.h89 const Int group[],
H A Dhuffdecode.cpp227 pChVars[leftCh]->group,
232 MODIFYING(pInputStream, wnd, wnd_shape_this_bk,group,
244 pChVars[rightCh]->group,
245 pChVars[leftCh]->group,
246 NSHORT*sizeof(pChVars[leftCh]->group[0]));
251 pChVars[leftCh]->group,
285 pChVars[ch]->group,
292 MODIFYING(pInputStream,pVarsp,ChVars[ch],group,
457 pChLeftShare->group,
471 pChRightShare->group,
[all...]
H A Dpns_intensity_right.h88 const Int group[],
H A Dget_ics_info.cpp82 group = array that holds the index of the first window in each
83 group. Data type array of Int, eight elements.
118 group[] contents will be modified to grouping information. See getgroup
211 group = group,
213 MODIFYING(group)
220 group[0] = 1;
313 MODIFY(group[])
409 Int group[],
456 group,
403 get_ics_info( const tMP4AudioObjectType audioObjectType, BITS *pInputStream, const Bool common_window, WINDOW_SEQUENCE *pWindowSequence, WINDOW_SHAPE *pWindowShape, Int group[], Int *p_max_sfb, FrameInfo *p_winmap[], LT_PRED_STATUS *pFirstLTPStatus, LT_PRED_STATUS *pSecondLTPStatus) argument
[all...]
/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/base/voip/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, mCodec, mDtmfType);
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/base/voip/java/com/android/server/sip/
H A DSipService.java90 // SipProfile URI --> group
137 for (SipSessionGroupExt group : mSipGroups.values()) {
138 if (isCallerRadio || isCallerCreator(group)) {
139 profiles.add(group.getLocalProfile());
174 SipSessionGroupExt group = createGroup(localProfile,
178 group.openToReceiveCalls();
186 private boolean isCallerCreator(SipSessionGroupExt group) { argument
187 SipProfile profile = group.getLocalProfile();
191 private boolean isCallerCreatorOrRadio(SipSessionGroupExt group) { argument
192 return (isCallerRadio() || isCallerCreator(group));
807 start(SipSessionGroup group) argument
[all...]
/frameworks/base/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/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/wifi/java/android/net/wifi/p2p/
H A DWifiP2pGroup.java28 * A class representing a Wi-Fi P2p group
40 /** Device is group owner */
120 * Get the network name (SSID) of the group. Legacy Wi-Fi clients will discover
121 * the p2p group using the network name.
132 /** Check whether this device is the group owner of the created p2p group */
142 /** Get the details of the group owner as a {@link WifiP2pDevice} object */
175 /** Get the list of clients currently part of the p2p group */
186 * Get the passphrase of the group. This function will return a valid passphrase only
187 * at the group owne
[all...]
/frameworks/compile/libbcc/tools/
H A Dgen-config-from-mk.py31 print '#define', match.group(1), match.group(2)
/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);

Completed in 641 milliseconds

12345