HomeSort by relevance Sort by last modified time
    Searched full:childid (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/chromium_org/cc/test/
fake_delegated_renderer_layer_impl.h 23 int ChildId() const { return ChildIdForTesting(); }
  /cts/tests/tests/widget/src/android/widget/cts/
BaseExpandableListAdapterTest.java 37 long childID = adapter.getCombinedChildId(10, 100);
41 assertTrue(childID != groupID);
43 childID = adapter.getCombinedChildId(0, 0);
45 assertTrue(childID != groupID);
  /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);
  /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);
  /frameworks/base/core/java/com/android/internal/widget/
TextProgressBar.java 85 int childId = child.getId();
86 if (childId == CHRONOMETER_ID && child instanceof Chronometer) {
95 } 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;
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityWindowInfo.java 303 final int childId = (int) mChildIds.get(index);
305 return client.getWindow(mConnectionId, childId);
311 * @param childId The child window id.
315 public void addChild(int childId) {
319 mChildIds.add(childId);
422 final int childId = parcel.readInt();
423 mChildIds.add(childId);
  /external/chromium_org/testing/gtest/test/
gtest_xml_test_utils.py 135 childID = child.getAttribute(self.identifying_attribute[child.tagName])
136 self.assert_(childID not in children)
137 children[childID] = child
  /external/gtest/test/
gtest_xml_test_utils.py 135 childID = child.getAttribute(self.identifying_attribute[child.tagName])
136 self.assert_(childID not in children)
137 children[childID] = child
  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
sched-messaging.c 146 pthread_t childid; local
175 err = pthread_create(&childid, &attr, func, ctx);
181 return childid;
  /external/protobuf/gtest/test/
gtest_xml_test_utils.py 130 childID = child.getAttribute(self.identifying_attribute[child.tagName])
131 self.assert_(childID not in children)
132 children[childID] = child
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py 133 childID = child.getAttribute(self.identifying_attribute[child.tagName])
134 self.assert_(childID not in children)
135 children[childID] = child
  /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/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())) {
  /external/chromium_org/chrome/renderer/resources/extensions/automation/
automation_node.js 52 for (var i = 0, childID; childID = this.childIds[i]; i++)
53 children.push(this.rootImpl.get(childID));
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_delegated.cc 347 EXPECT_TRUE(delegated_impl->ChildId());
356 EXPECT_TRUE(delegated_impl->ChildId());
375 EXPECT_FALSE(delegated_impl->ChildId());
718 delegated_impl->ChildId());
758 delegated_impl->ChildId());
    [all...]
  /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())) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 344 int childID = adaptor.GetUniqueID(child);
345 Transmit("addChild\t" + rootID + "\t" + childID);
RemoteDebugEventSocketListener.cs 478 int childID = int.Parse(elements[2]);
480 ProxyTree child = new ProxyTree(childID);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 391 int childID = adaptor.GetUniqueID( child );
392 Transmit( "addChild\t" + rootID + "\t" + childID );
RemoteDebugEventSocketListener.cs 622 int childID = int.Parse( elements[2] );
624 ProxyTree child = new ProxyTree( childID );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventSocketProxy.java 310 int childID = adaptor.getUniqueID(child);
311 transmit("addChild\t"+rootID+"\t"+childID);
RemoteDebugEventSocketListener.java 415 int childID = Integer.parseInt(elements[2]);
417 ProxyTree child = new ProxyTree(childID);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MailboxUtilities.java 83 long childId = childCursor.getLong(Mailbox.ID_PROJECTION_COLUMN);
84 resolver.update(ContentUris.withAppendedId(Mailbox.CONTENT_URI, childId),

Completed in 1010 milliseconds

1 2 3 4