/frameworks/support/compat/java/android/support/v4/view/ |
D | ViewGroupCompat.java | 50 public int getLayoutMode(ViewGroup group) { in getLayoutMode() argument 54 public void setLayoutMode(ViewGroup group, int mode) { in setLayoutMode() argument 58 public void setTransitionGroup(ViewGroup group, boolean isTransitionGroup) { in setTransitionGroup() argument 61 public boolean isTransitionGroup(ViewGroup group) { in isTransitionGroup() argument 65 public int getNestedScrollAxes(ViewGroup group) { in getNestedScrollAxes() argument 66 if (group instanceof NestedScrollingParent) { in getNestedScrollAxes() 67 return ((NestedScrollingParent) group).getNestedScrollAxes(); in getNestedScrollAxes() 76 public int getLayoutMode(ViewGroup group) { in getLayoutMode() argument 77 return group.getLayoutMode(); in getLayoutMode() 81 public void setLayoutMode(ViewGroup group, int mode) { in setLayoutMode() argument [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NotificationGroupManager.java | 53 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); in isGroupExpanded() local 54 if (group == null) { in isGroupExpanded() 57 return group.expanded; in isGroupExpanded() 61 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); in setGroupExpanded() local 62 if (group == null) { in setGroupExpanded() 65 setGroupExpanded(group, expanded); in setGroupExpanded() 68 private void setGroupExpanded(NotificationGroup group, boolean expanded) { in setGroupExpanded() argument 69 group.expanded = expanded; in setGroupExpanded() 70 if (group.summary != null) { in setGroupExpanded() 71 mListener.onGroupExpansionChanged(group.summary.row, expanded); in setGroupExpanded() [all …]
|
/frameworks/base/core/java/android/content/pm/ |
D | VerifierDeviceIdentity.java | 127 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 …]
|
/frameworks/data-binding/samples/BindingDemo/app/src/main/java/com/android/example/bindingdemo/vo/ |
D | User.java | 21 private int group; field in User 25 public User(String name, String lastName, int photoResource, int group) { in User() argument 29 this.group = group; in User() 32 public void setGroup(int group) { in setGroup() argument 33 if (this.group == group) { in setGroup() 36 this.group = group; in setGroup() 37 notifyPropertyChanged(BR.group); in setGroup() 41 return group; in getGroup()
|
/frameworks/support/transition/api14/android/support/transition/ |
D | ViewGroupUtilsApi14.java | 45 public ViewGroupOverlayImpl getOverlay(@NonNull ViewGroup group) { in getOverlay() argument 46 return ViewGroupOverlayApi14.createFrom(group); in getOverlay() 50 public void suppressLayout(@NonNull ViewGroup group, boolean suppress) { in suppressLayout() argument 67 final LayoutTransition layoutTransition = group.getLayoutTransition(); in suppressLayout() 73 group.setTag(R.id.transition_layout_save, layoutTransition); in suppressLayout() 77 group.setLayoutTransition(sEmptyLayoutTransition); in suppressLayout() 80 group.setLayoutTransition(null); in suppressLayout() 94 layoutSuppressed = sLayoutSuppressedField.getBoolean(group); in suppressLayout() 96 sLayoutSuppressedField.setBoolean(group, false); in suppressLayout() 103 group.requestLayout(); in suppressLayout() [all …]
|
/frameworks/base/tools/split-select/ |
D | RuleGenerator.cpp | 98 sp<Rule> RuleGenerator::generate(const SortedVector<SplitDescription>& group, size_t index) { in generate() argument 102 if (group[index].config.locale != 0) { in generate() 107 group[index].config.getBcp47Locale(str); in generate() 112 if (group[index].config.sdkVersion != 0) { in generate() 116 sdk->longArgs.add(group[index].config.sdkVersion - 1); in generate() 120 if (group[index].config.density != 0) { in generate() 123 allDensities.add(group[index].config.density); in generate() 125 const size_t groupSize = group.size(); in generate() 127 if (group[i].config.density != group[index].config.density) { in generate() 131 allDensities.add(group[j].config.density); in generate() [all …]
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/ |
D | ObexTime.java | 49 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/ |
D | I3DGrouping.cpp | 22 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/ |
D | SipService.java | 137 for (SipSessionGroupExt group : mSipGroups.values()) { in getListOfProfiles() 138 if (isCallerRadio || isCallerCreator(group)) { in getListOfProfiles() 139 profiles.add(group.getLocalProfile()); in getListOfProfiles() 176 SipSessionGroupExt group = createGroup(localProfile, in open3() local 179 group.openToReceiveCalls(); in open3() 188 private boolean isCallerCreator(SipSessionGroupExt group) { in isCallerCreator() argument 189 SipProfile profile = group.getLocalProfile(); in isCallerCreator() 193 private boolean isCallerCreatorOrRadio(SipSessionGroupExt group) { in isCallerCreatorOrRadio() argument 194 return (isCallerRadio() || isCallerCreator(group)); in isCallerCreatorOrRadio() 206 SipSessionGroupExt group = mSipGroups.get(localProfileUri); in close() local [all …]
|
/frameworks/base/core/jni/ |
D | android_graphics_drawable_VectorDrawable.cpp | 89 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in addChild() local 91 group->addChild(child); in addChild() 164 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in getGroupProperties() local 166 bool success = group->stagingProperties()->copyProperties(groupProperties, length); in getGroupProperties() 173 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in updateGroupProperties() local 174 group->mutateStagingProperties()->updateProperties(rotate, pivotX, pivotY, scaleX, scaleY, in updateGroupProperties() 197 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in getRotation() local 198 return group->stagingProperties()->getRotation(); in getRotation() 202 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in setRotation() local 203 group->mutateStagingProperties()->setRotation(rotation); in setRotation() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
D | h264bsd_slice_group_map.c | 129 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/ |
D | WifiP2pGroup.java | 115 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() 313 WifiP2pGroup group = new WifiP2pGroup(); 314 group.setNetworkName(in.readString()); 315 group.setOwner((WifiP2pDevice)in.readParcelable(null)); 316 group.setIsGroupOwner(in.readByte() == (byte)1); 319 group.addClient((WifiP2pDevice) in.readParcelable(null)); 321 group.setPassphrase(in.readString()); [all …]
|
D | WifiP2pDevice.java | 198 deviceAddress = match.group(2); in WifiP2pDevice() 205 deviceAddress = match.group(1); in WifiP2pDevice() 213 deviceAddress = match.group(3); in WifiP2pDevice() 214 primaryDeviceType = match.group(4); in WifiP2pDevice() 215 deviceName = match.group(5); in WifiP2pDevice() 216 wpsConfigMethodsSupported = parseHex(match.group(6)); in WifiP2pDevice() 217 deviceCapability = parseHex(match.group(7)); in WifiP2pDevice() 218 groupCapability = parseHex(match.group(8)); in WifiP2pDevice() 219 if (match.group(9) != null) { in WifiP2pDevice() 220 String str = match.group(10); in WifiP2pDevice()
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/ |
D | VectorDrawable_Delegate.java | 260 VNativeObject group = VNativeObject.getDelegate(nodePtr); in nSetName() local 261 group.setName(name); in nSetName() 267 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nGetGroupProperties() local 271 properties.put(VGroup_Delegate.ROTATE_INDEX, group.getRotation()); in nGetGroupProperties() 272 properties.put(VGroup_Delegate.PIVOT_X_INDEX, group.getPivotX()); in nGetGroupProperties() 273 properties.put(VGroup_Delegate.PIVOT_Y_INDEX, group.getPivotY()); in nGetGroupProperties() 274 properties.put(VGroup_Delegate.SCALE_X_INDEX, group.getScaleX()); in nGetGroupProperties() 275 properties.put(VGroup_Delegate.SCALE_Y_INDEX, group.getScaleY()); in nGetGroupProperties() 276 properties.put(VGroup_Delegate.TRANSLATE_X_INDEX, group.getTranslateX()); in nGetGroupProperties() 277 properties.put(VGroup_Delegate.TRANSLATE_Y_INDEX, group.getTranslateY()); in nGetGroupProperties() [all …]
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
D | RadioGroupPreCheckedTest.java | 41 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/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | SupplicantP2pIfaceCallback.java | 271 WifiP2pGroup group = new WifiP2pGroup(); in onGroupStarted() local 272 group.setInterface(groupIfName); in onGroupStarted() 276 group.setNetworkName(NativeUtil.removeEnclosingQuotes(quotedSsid)); in onGroupStarted() 282 group.setIsGroupOwner(isGo); in onGroupStarted() 283 group.setPassphrase(passphrase); in onGroupStarted() 286 group.setNetworkId(WifiP2pGroup.PERSISTENT_NET_ID); in onGroupStarted() 288 group.setNetworkId(WifiP2pGroup.TEMPORARY_NET_ID); in onGroupStarted() 300 group.setOwner(owner); in onGroupStarted() 301 mMonitor.broadcastP2pGroupStarted(mInterface, group); in onGroupStarted() 318 WifiP2pGroup group = new WifiP2pGroup(); in onGroupRemoved() local [all …]
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
D | AudioStream.java | 87 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/ex/common/java/com/android/common/ |
D | LegacyHttpDateTime.java | 95 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/base/core/java/com/android/internal/http/ |
D | HttpDateTime.java | 95 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/transition/src/android/support/transition/ |
D | ViewGroupUtils.java | 41 static ViewGroupOverlayImpl getOverlay(@NonNull ViewGroup group) { in getOverlay() argument 42 return IMPL.getOverlay(group); in getOverlay() 48 static void suppressLayout(@NonNull ViewGroup group, boolean suppress) { in suppressLayout() argument 49 IMPL.suppressLayout(group, suppress); in suppressLayout()
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
D | MenuBuilder.java | 405 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/rs/ |
D | rsScriptGroup2.cpp | 25 ScriptGroup2* group = new ScriptGroup2(rsc, name, cacheDir, in rsi_ScriptGroup2Create() local 30 rsc->mHal.funcs.scriptgroup.init(rsc, group); in rsi_ScriptGroup2Create() 33 group->incUserRef(); in rsi_ScriptGroup2Create() 35 return group; in rsi_ScriptGroup2Create()
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/ |
D | MenuBuilder.java | 439 protected MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { in addInternal() argument 442 final MenuItemImpl item = createNewMenuItem(group, id, categoryOrder, ordering, title, in addInternal() 457 private MenuItemImpl createNewMenuItem(int group, int id, int categoryOrder, int ordering, in createNewMenuItem() argument 459 return new MenuItemImpl(this, group, id, categoryOrder, ordering, title, in createNewMenuItem() 474 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { in add() argument 475 return addInternal(group, id, categoryOrder, title); in add() 479 public MenuItem add(int group, int id, int categoryOrder, int title) { in add() argument 480 return addInternal(group, id, categoryOrder, mResources.getString(title)); in add() 494 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { in addSubMenu() argument 495 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title); in addSubMenu() [all …]
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagLayouts.inc | 37 "There is no space left to place stubs. Current stub group size: %0\n" 38 "Use --stub-group-size option to increase the group size.", 39 "There is no space left to place stubs. Current stub group size: %0\n" 40 "Use --stub-group-size option to increase the group size.")
|
/frameworks/support/transition/api18/android/support/transition/ |
D | ViewGroupUtilsApi18.java | 36 public ViewGroupOverlayImpl getOverlay(@NonNull ViewGroup group) { in getOverlay() argument 37 return new ViewGroupOverlayApi18(group); in getOverlay() 41 public void suppressLayout(@NonNull ViewGroup group, boolean suppress) { in suppressLayout() argument 45 sSuppressLayoutMethod.invoke(group, suppress); in suppressLayout()
|