Searched refs:group (Results 26 - 50 of 315) sorted by relevance

1234567891011>>

/frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
H A DMemInfoParser.java57 if (lineMatcher.find() && lineMatcher.group(1) != null && lineMatcher.group(2) != null) {
58 if (lineMatcher.group(2).equals("statsd")) {
60 return timeDeltaMillis + "," + convertToPss(lineMatcher.group(1));
/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/base/core/java/com/android/internal/widget/
H A DMessagingLayout.java204 MessagingGroup group = oldGroups.get(i);
205 if (!mGroups.contains(group)) {
206 List<MessagingMessage> messages = group.getMessages();
208 mMessagingLinearLayout.removeTransientView(group);
209 group.recycle();
212 boolean wasShown = group.isShown();
213 mMessagingLinearLayout.removeView(group);
214 if (wasShown && !MessagingLinearLayout.isGone(group)) {
215 mMessagingLinearLayout.addTransientView(group, 0);
216 group
[all...]
/frameworks/support/app-toolkit/buildSrc/
H A Drelease.gradle40 def group = it.project.group[0]
43 if (group == null || archiveName == null || version == null) {
47 def subFolder = group.replace('.', '/') + "/" + archiveName + "/" + version
55 if (rootProject.ext.versionChecker.isReleased(group, archiveName, version)) {
/frameworks/support/app-toolkit/buildSrc/src/main/kotlin/androidx/build/
H A DVersion.kt34 Integer.parseInt(checkedMatcher(versionString).group(1)),
35 Integer.parseInt(checkedMatcher(versionString).group(2)),
36 Integer.parseInt(checkedMatcher(versionString).group(3)),
38 versionString).group(4) else null)
78 return if (matcher.matches()) Version(matcher.group(1)) else null
/frameworks/support/buildSrc/
H A Drelease.gradle40 def group = it.project.group[0]
43 if (group == null || archiveName == null || version == null) {
47 def subFolder = group.replace('.', '/') + "/" + archiveName + "/" + version
55 if (rootProject.ext.versionChecker.isReleased(group, archiveName, version)) {
/frameworks/support/buildSrc/src/main/kotlin/androidx/build/
H A DVersion.kt34 Integer.parseInt(checkedMatcher(versionString).group(1)),
35 Integer.parseInt(checkedMatcher(versionString).group(2)),
36 Integer.parseInt(checkedMatcher(versionString).group(3)),
38 versionString).group(4) else null)
78 return if (matcher.matches()) Version(matcher.group(1)) else null
/frameworks/base/tools/aapt2/configuration/
H A DConfigurationParser_test.cpp85 <abi-group label="other" version-code-order="2">
88 </abi-group>
89 <abi-group label="arm" version-code-order="1">
92 </abi-group>
95 <screen-density-group label="large" version-code-order="2">
99 </screen-density-group>
100 <screen-density-group label="alldpi" version-code-order="1">
107 </screen-density-group>
110 <locale-group label="europe" version-code-order="1">
115 </locale-group>
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java85 // SipProfile URI --> group
137 for (SipSessionGroupExt group : mSipGroups.values()) {
138 if (isCallerRadio || isCallerCreator(group)) {
139 profiles.add(group.getLocalProfile());
176 SipSessionGroupExt group = createGroup(localProfile,
179 group.openToReceiveCalls();
188 private boolean isCallerCreator(SipSessionGroupExt group) { argument
189 SipProfile profile = group.getLocalProfile();
193 private boolean isCallerCreatorOrRadio(SipSessionGroupExt group) { argument
194 return (isCallerRadio() || isCallerCreator(group));
817 start(SipSessionGroup group) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp89 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
91 group->addChild(child);
169 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
171 bool success = group->stagingProperties()->copyProperties(groupProperties, length);
178 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
179 group->mutateStagingProperties()->updateProperties(rotate, pivotX, pivotY, scaleX, scaleY,
202 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
203 return group->stagingProperties()->getRotation();
207 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
208 group
212 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
217 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
222 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
227 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
232 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
237 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
242 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
247 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
252 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
257 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
262 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); local
267 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); 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/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DRadioGroupBindingAdapter.java45 public void onCheckedChanged(RadioGroup group, int checkedId) {
47 listener.onCheckedChanged(group, checkedId);
/frameworks/ex/common/java/com/android/common/
H A DLegacyHttpDateTime.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/layoutlib/bridge/src/com/android/internal/view/menu/
H A DBridgeMenuItemImpl.java40 BridgeMenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, argument
42 super(menu, group, id, categoryOrder, ordering, title, showAsAction);
/frameworks/support/transition/src/main/java/androidx/transition/
H A DViewGroupOverlayApi18.java32 ViewGroupOverlayApi18(@NonNull ViewGroup group) { argument
33 mViewGroupOverlay = group.getOverlay();
H A DViewGroupUtilsApi18.java36 static void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
40 sSuppressLayoutMethod.invoke(group, suppress);
/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);
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/tools/split-select/
H A DRuleGenerator.h30 // Generate rules for a Split given the group of mutually exclusive splits it belongs to
31 static android::sp<Rule> generate(const android::SortedVector<SplitDescription>& group, size_t index);
/frameworks/data-binding/extensions/
H A Dbuild.gradle28 group = dataBindingConfig.group
/frameworks/base/core/tests/coretests/src/android/database/
H A Dprocess_newdb_perf_test_logs.py41 test_name = matches.group(1)
42 duration = int(matches.group(2))
62 max_write_bytes = max(max_write_bytes, int(matches.group(1)))

Completed in 447 milliseconds

1234567891011>>