Searched refs:group (Results 51 - 75 of 315) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/net/
H A DWebAddress.java85 t = m.group(MATCH_GROUP_SCHEME);
87 t = m.group(MATCH_GROUP_AUTHORITY);
89 t = m.group(MATCH_GROUP_HOST);
91 t = m.group(MATCH_GROUP_PORT);
100 t = m.group(MATCH_GROUP_PATH);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DSupplicantP2pIfaceCallback.java224 * Used to indicate a successful formation of a P2P group.
233 * Used to indicate a failure to form a P2P group.
245 * Used to indicate the start of a P2P group.
247 * @param groupIfName Interface name of the group. (For ex: p2p-p2p0-1)
248 * @param isGo Whether this device is owner of the group.
249 * @param ssid SSID of the group.
250 * @param frequency Frequency on which this group is created.
251 * @param psk PSK used to secure the group.
252 * @param passphrase PSK passphrase used to secure the group.
253 * @param goDeviceAddress MAC Address of the owner of this group
[all...]
H A DWifiP2pMonitor.java299 * Broadcast group owner negotiation request event to all handlers registered for this event.
311 * Broadcast group owner negotiation success event to all handlers registered for this event.
320 * Broadcast group owner negotiation failure event to all handlers registered for this event.
330 * Broadcast group formation success event to all handlers registered for this event.
339 * Broadcast group formation failure event to all handlers registered for this event.
353 * Broadcast group started event to all handlers registered for this event.
356 * @param group Started group.
358 public void broadcastP2pGroupStarted(String iface, WifiP2pGroup group) { argument
359 if (group !
370 broadcastP2pGroupRemoved(String iface, WifiP2pGroup group) argument
382 broadcastP2pInvitationReceived(String iface, WifiP2pGroup group) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java198 deviceAddress = match.group(2);
205 deviceAddress = match.group(1);
213 deviceAddress = match.group(3);
214 primaryDeviceType = match.group(4);
215 deviceName = match.group(5);
216 wpsConfigMethodsSupported = parseHex(match.group(6));
217 deviceCapability = parseHex(match.group(7));
218 groupCapability = parseHex(match.group(8));
219 if (match.group(9) != null) {
220 String str = match.group(1
[all...]
H A DWifiP2pGroupList.java27 * A class representing a Wi-Fi P2p group list
71 * Return the list of p2p group.
73 * @return the list of p2p group.
80 * Add the specified group to this group list.
82 * @param group
85 public void add(WifiP2pGroup group) { argument
86 mGroups.put(group.getNetworkId(), group);
90 * Remove the group wit
[all...]
/frameworks/base/tools/split-select/
H A DGrouper_test.cpp147 const SortedVector<SplitDescription>& group = mGroups[i]; local
148 if (group.size() != splitCount) {
154 if (group.indexOf(splits[j]) >= 0) {
164 String8 errorMessage("Failed to find expected group [");
175 const SortedVector<SplitDescription>& group = mGroups[i]; local
176 for (size_t j = 0; j < group.size(); j++) {
178 errorMessage.append(group[j].toString());
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/menu/
H A DMenuWrapperICS.java118 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
119 mWrappedObject.setGroupCheckable(group, checkable, exclusive);
123 public void setGroupVisible(int group, boolean visible) { argument
124 mWrappedObject.setGroupVisible(group, visible);
128 public void setGroupEnabled(int group, boolean enabled) { argument
129 mWrappedObject.setGroupEnabled(group, enabled);
H A DMenuBuilder.java186 * Whether group dividers are enabled.
446 protected MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
449 final MenuItemImpl item = createNewMenuItem(group, id, categoryOrder, ordering, title,
464 private MenuItemImpl createNewMenuItem(int group, int id, int categoryOrder, int ordering, argument
466 return new MenuItemImpl(this, group, id, categoryOrder, ordering, title,
481 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
482 return addInternal(group, id, categoryOrder, title);
486 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
487 return addInternal(group, id, categoryOrder, mResources.getString(title));
501 public SubMenu addSubMenu(int group, in argument
510 addSubMenu(int group, int id, int categoryOrder, int title) argument
524 addIntentOptions(int group, int id, int categoryOrder, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
559 removeGroup(int group) argument
637 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
650 setGroupVisible(int group, boolean visible) argument
668 setGroupEnabled(int group, boolean enabled) argument
729 findGroupIndex(int group) argument
733 findGroupIndex(int group, int start) argument
[all...]
/frameworks/base/core/java/android/view/
H A DMenu.java85 * Value to use for group and item identifier integers when you don't care
91 * First value for group and item identifier integers.
126 * any existing menu items in the same group.
165 * @param groupId The group identifier that this item should be part of.
168 * group.
182 * @param groupId The group identifier that this item should be part of.
185 * group.
224 * @param groupId The group identifier that this item should be part of.
227 * group.
241 * @param groupId The group identifie
347 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
357 setGroupVisible(int group, boolean visible) argument
367 setGroupEnabled(int group, boolean enabled) argument
[all...]
/frameworks/base/tools/aapt2/tools/
H A Dextract_unicode_properties.py43 prop_type_str = result.group('prop')
44 first_char_str = result.group('first')
45 last_char_str = result.group('last')
/frameworks/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java271 VNativeObject group = VNativeObject.getDelegate(nodePtr);
272 group.setName(name);
278 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr);
282 properties.put(VGroup_Delegate.ROTATE_INDEX, group.getRotation());
283 properties.put(VGroup_Delegate.PIVOT_X_INDEX, group.getPivotX());
284 properties.put(VGroup_Delegate.PIVOT_Y_INDEX, group.getPivotY());
285 properties.put(VGroup_Delegate.SCALE_X_INDEX, group.getScaleX());
286 properties.put(VGroup_Delegate.SCALE_Y_INDEX, group.getScaleY());
287 properties.put(VGroup_Delegate.TRANSLATE_X_INDEX, group.getTranslateX());
288 properties.put(VGroup_Delegate.TRANSLATE_Y_INDEX, group
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A DUT_script_group2_pointwise.java64 ScriptGroup group = builder.create("AddDouble", c1.getReturn());
67 ((Allocation) group.execute(input)[0]).copyTo(a);
70 group.destroy();
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
H A DUT_script_group2_pointwise.java66 ScriptGroup group = builder.create("AddDouble", c1.getReturn());
69 ((Allocation) group.execute(input)[0]).copyTo(a);
72 group.destroy();
/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIslandFactory.h31 /// @param pMaxIslandSize - the group size to place stubs between sections
38 /// group - group fragments and create islands when needed
40 void group(Module& pModule);
/frameworks/native/cmds/installd/
H A DCacheItem.h35 * group.
49 bool group; member in class:android::installd::CacheItem
/frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/proguard/patterns/
H A DGroupsReplacer.kt23 * Applies replacements on a matched string using the given [pattern] and its groups. Each group is
24 * mapped using a lambda from [groupsMap]. If there is more results for each group it expands into
37 val start = matcher.group(0)
42 // For each group, apply the corresponding replacement. Iterate backwards over replacements
46 val groupVal = matcher.group(i + 1) ?: continue
50 // Call the corresponding replacer for this group
/frameworks/base/core/java/android/webkit/
H A DFindAddress.java272 int num = Integer.parseInt(suffixMatcher.group(1));
276 String suffix = suffixMatcher.group(2).toLowerCase(Locale.getDefault());
304 if (checkHouseNumber(matchResult.group(0))) return matchResult;
335 // Work out the index of the state, based on which group matched.
338 if (stateMatch.group(stateIndex--) != null) break;
375 for (; it < content.length(); lastWord = matcher.group(0), it = matcher.end()) {
409 if (isValidLocationName(matcher.group(0))) {
424 if (lastWord.equals("et") && stateMatch.group(0).equals("al")) {
433 if (isValidZipCode(zipMatcher.group(0), stateMatch)) {
466 if (checkHouseNumber(houseNumberMatcher.group(
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingMessageState.java46 public void setGroup(MessagingGroup group) { argument
47 mGroup = group;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/
H A DAbstractPreferenceController.java82 protected final void setVisible(PreferenceGroup group, String key, boolean isVisible) { argument
83 final Preference pref = group.findPreference(key);
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup2.h41 Batch(CpuScriptGroup2Impl* group, const char* name);
62 CpuScriptGroup2Impl(RsdCpuReferenceImpl *cpuRefImpl, const ScriptGroupBase* group);
/frameworks/rs/tests/lldb/java/ScriptGroup/src/com/android/rs/scriptgroup/
H A DMainActivity.java57 ScriptGroup group = builder.create("scriptgroup_test", c1.getReturn());
60 ((Allocation) group.execute(input)[0]).copyTo(a);
/frameworks/support/viewpager2/
H A Dbuild.gradle34 exclude group: 'androidx.viewpager2', module: 'viewpager2'
/frameworks/base/services/core/java/com/android/server/am/
H A DMemoryStatUtil.java124 memoryStat.pgfault = m.find() ? Long.valueOf(m.group(1)) : 0;
126 memoryStat.pgmajfault = m.find() ? Long.valueOf(m.group(1)) : 0;
128 memoryStat.rssInBytes = m.find() ? Long.valueOf(m.group(1)) : 0;
130 memoryStat.cacheInBytes = m.find() ? Long.valueOf(m.group(1)) : 0;
132 memoryStat.swapInBytes = m.find() ? Long.valueOf(m.group(1)) : 0;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuBuilder.java162 * Whether group dividers are enabled.
411 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
414 final MenuItemImpl item = createNewMenuItem(group, id, categoryOrder, ordering, title,
429 private MenuItemImpl createNewMenuItem(int group, int id, int categoryOrder, int ordering, argument
431 return new MenuItemImpl(this, group, id, categoryOrder, ordering, title,
443 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
444 return addInternal(group, id, categoryOrder, title);
447 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
448 return addInternal(group, id, categoryOrder, mResources.getString(title));
459 public SubMenu addSubMenu(int group, in argument
467 addSubMenu(int group, int id, int categoryOrder, int title) argument
480 addIntentOptions(int group, int id, int categoryOrder, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
513 removeGroup(int group) argument
586 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
598 setGroupVisible(int group, boolean visible) argument
615 setGroupEnabled(int group, boolean enabled) argument
670 findGroupIndex(int group) argument
674 findGroupIndex(int group, int start) argument
[all...]
/frameworks/support/compat/src/main/java/androidx/core/text/util/
H A DFindAddress.java281 int num = Integer.parseInt(suffixMatcher.group(1));
285 String suffix = suffixMatcher.group(2).toLowerCase(Locale.getDefault());
314 if (checkHouseNumber(matchResult.group(0))) return matchResult;
346 // Work out the index of the state, based on which group matched.
349 if (stateMatch.group(stateIndex--) != null) break;
412 for (; it < content.length(); lastWord = matcher.group(0), it = matcher.end()) {
446 if (isValidLocationName(matcher.group(0))) {
461 if (lastWord.equals("et") && stateMatch.group(0).equals("al")) {
470 if (isValidZipCode(zipMatcher.group(0), stateMatch)) {
503 if (checkHouseNumber(houseNumberMatcher.group(
[all...]

Completed in 577 milliseconds

1234567891011>>