/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 | 428 final long childId = mExpandableListAdapter.getChildId(posMetadata.position.groupPos, 430 retValue = mExpandableListAdapter.getCombinedChildId(groupId, childId); [all...] |
/external/jmonkeyengine/engine/src/bullet-native/ |
com_jme3_bullet_collision_shapes_CompoundCollisionShape.cpp | 61 (JNIEnv *env, jobject object, jlong compoundId, jlong childId, jobject childLocation, jobject childRotation) { 68 btCollisionShape* child = reinterpret_cast<btCollisionShape*>(childId); 88 (JNIEnv * env, jobject object, jlong compoundId, jlong childId) { 95 btCollisionShape* child = reinterpret_cast<btCollisionShape*>(childId);
|
/frameworks/base/core/java/com/android/internal/widget/ |
TextProgressBar.java | 82 int childId = child.getId(); 83 if (childId == CHRONOMETER_ID && child instanceof Chronometer) { 92 } else if (childId == PROGRESSBAR_ID && child instanceof ProgressBar) {
|
/packages/apps/Browser/src/com/android/browser/ |
DateSortedExpandableListAdapter.java | 160 * @param childId ID of the child view in question. 162 /* package */ int groupFromChildId(long childId) { 167 if (getLong(mIdIndex) == childId) { 363 public long getCombinedChildId(long groupId, long childId) { 365 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/src/com/android/ide/common/layout/relative/ |
ResizeHandler.java | 190 String childId = child.getStringAttr(ANDROID_URI, ATTR_ID); 196 hEdge = new Segment(b.y, b.x, b.x2(), child, childId, mHorizontalEdgeType, NO_MARGIN); 198 hEdge = new Segment(b.y2(), b.x, b.x2(), child, childId, mHorizontalEdgeType, 205 vEdge = new Segment(b.x, b.y, b.y2(), child, childId, mVerticalEdgeType, NO_MARGIN); 207 vEdge = new Segment(b.x2(), b.y, b.y2(), child, childId, mVerticalEdgeType, NO_MARGIN);
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
CompoundCollisionShape.java | 132 private native long addChildShape(long objectId, long childId, Vector3f location, Matrix3f rotation); 134 private native long removeChildShape(long objectId, long childId);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
RawContactDelta.java | 127 final Long childId = remoteEntry.getId(); 130 final ValuesDelta localEntry = local.getEntry(childId); 297 public ValuesDelta getEntry(Long childId) { 298 if (childId == null) { 306 if (childId.equals(entry.getId())) {
|
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityNodeInfoCache.java | 307 final long childId = childIds.valueAt(i); 308 AccessibilityNodeInfo child = mCacheImpl.get(childId);
|
AccessibilityInteractionClient.java | 724 final long childId = childIds.valueAt(i); 727 if (child.getSourceNodeId() == childId) {
|
AccessibilityNodeInfo.java | 705 final long childId = mChildNodeIds.get(index); 708 childId, false, FLAG_PREFETCH_DESCENDANTS); [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/ |
FakeExpandableAdapter.java | 171 public long getCombinedChildId(long groupId, long childId) { 172 return groupId << 16 | childId;
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntityDelta.java | 122 final Long childId = remoteEntry.getId(); 125 final ValuesDelta localEntry = local.getEntry(childId); 245 public ValuesDelta getEntry(Long childId) { 246 if (childId == null) { 254 if (childId.equals(entry.getId())) {
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
MailboxUtilities.java | 82 long childId = childCursor.getLong(Mailbox.ID_PROJECTION_COLUMN); 83 resolver.update(ContentUris.withAppendedId(Mailbox.CONTENT_URI, childId),
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
PagedViewCellLayout.java | 101 public boolean addViewToCellLayout(View child, int index, int childId, 114 child.setId(childId);
|
CellLayout.java | 615 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params, 642 child.setId(childId); [all...] |
Workspace.java | 563 int childId = LauncherModel.getCellLayoutChildId(container, screen, x, y, spanX, spanY); 565 if (!layout.addViewToCellLayout(child, insert ? 0 : -1, childId, lp, markCellsAsOccupied)) { [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
PagedViewCellLayout.java | 95 public boolean addViewToCellLayout(View child, int index, int childId, 108 child.setId(childId);
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/ |
BrowserAccessibilityManager.java | 394 private void addAccessibilityNodeInfoChild(AccessibilityNodeInfo node, int childId) { 395 node.addChild(mView, childId);
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
FolderSyncParser.java | 666 final long childId = childCursor.getLong(FIXUP_CHILD_ID_COLUMN); 668 ContentUris.withAppendedId(Mailbox.CONTENT_URI, childId)). [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
CustomContactListFilterActivity.java | 641 final Long childId = child.getId(); 642 return childId != null ? childId : Long.MIN_VALUE; [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
ExpandableListViewTest.java | 472 public long getCombinedChildId(long groupId, long childId) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
ViewMetadataRepository.java | 173 String childId = child.getAttributeNS(ANDROID_URI, ATTR_ID); 174 if ("@+id/android_widget_TabWidget".equals(childId)) { [all...] |