HomeSort by relevance Sort by last modified time
    Searched refs:childId (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/java/android/widget/
BaseExpandableListAdapter.java 76 * <li> bit 32-63: Lower 32 bits of the childId.
80 public long getCombinedChildId(long groupId, long childId) {
81 return 0x8000000000000000L | ((groupId & 0x7FFFFFFF) << 32) | (childId & 0xFFFFFFFF);
91 * <li> bit 32-63: Lower 32 bits of the childId.
ExpandableListAdapter.java 190 * @param childId The ID of the child.
194 long getCombinedChildId(long groupId, long childId);
ExpandableListConnector.java 427 final long childId = mExpandableListAdapter.getChildId(posMetadata.position.groupPos,
429 retValue = mExpandableListAdapter.getCombinedChildId(groupId, childId);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
TextProgressBar.java 82 int childId = child.getId();
83 if (childId == CHRONOMETER_ID && child instanceof Chronometer) {
91 } else if (childId == PROGRESSBAR_ID && child instanceof ProgressBar) {
  /packages/apps/Browser/src/com/android/browser/
DateSortedExpandableListAdapter.java 166 * @param childId ID of the child view in question.
168 /* package */ int groupFromChildId(long childId) {
172 if (getLong(mIdIndex) == childId) {
336 public long getCombinedChildId(long groupId, long childId) {
337 return childId;
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DateSortedExpandableListAdapter.java 177 * @param childId ID of the child view in question.
179 /* package */ int groupFromChildId(long childId) {
183 if (getLong(mIdIndex) == childId) {
343 public long getCombinedChildId(long groupId, long childId) {
344 return childId;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.RelativeLayout.groovy 276 def childId = child.getStringAttr(ANDROID_URI, ATTR_ID);
277 childId = normalizeId(childId);
278 if (id == childId) {
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDelta.java 124 final Long childId = remoteEntry.getId();
127 final ValuesDelta localEntry = local.getEntry(childId);
247 public ValuesDelta getEntry(Long childId) {
248 if (childId == null) {
256 if (childId.equals(entry.getId())) {
  /packages/apps/Contacts/src/com/android/contacts/ui/
ContactsPreferencesActivity.java 757 final Long childId = child.getId();
758 return childId != null ? childId : Long.MIN_VALUE;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ExpandableListViewTest.java 703 public long getCombinedChildId(long groupId, long childId) {
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 108 milliseconds