/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
AvdDetailsDialog.java | 187 Shell child = mDialogShell; local 189 if (child != null && parent != null) { 200 Point childSize = sLastSize != null ? sLastSize : child.getSize(); 204 child.setLocation(px + (pw - cw) / 2, py + (ph - ch) / 2); 205 child.setSize(cw, ch);
|
/frameworks/base/core/java/android/widget/ |
AbsListView.java | 419 * The select child's view (from the adapter's getView) is enabled. 881 // Remember the position of the first child 1186 View child = getChildAt(0); local 1287 View child; local 1704 final View child = getChildAt(motionPosition - mFirstPosition); local 1847 final View child = getChildAt(i); local 1879 final View child = getChildAt(mMotionPosition - mFirstPosition); local 2097 final View child = getChildAt(motionPosition - mFirstPosition); local 2363 final View child = getChildAt(i); local 2907 final View child = getChildAt(i); local 3730 View child = getChildAt(i); local 3997 View child = getChildAt(i); local [all...] |
AdapterView.java | 57 * The position of the first child displayed 101 * Sync based on the selected child 106 * Sync based on the first child displayed 394 * The child view for which the context menu is being displayed. This 429 * @param child Ignored. 434 public void addView(View child) { 441 * @param child Ignored. 447 public void addView(View child, int index) { 454 * @param child Ignored. 460 public void addView(View child, LayoutParams params) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
DOMHelper.java | 357 * @param child1 Must be the child of parent and not equal to child2. 358 * @param child2 Must be the child of parent and not equal to child1. 359 * @return true if child 2 is after child1 in document order. 392 Node child = children.item(i); local 394 if (child1 == child || isNodeTheSame(child1, child)) 405 else if (child2 == child || isNodeTheSame(child2, child)) 431 Node child = parent.getFirstChild(); local 434 while (null != child) [all...] |
/external/qemu/ |
sys-tree.h | 536 SYS_TREE_STRUCT type *child, *parent, *old = elm; \ 539 child = RB_RIGHT(elm, field); \ 541 child = RB_LEFT(elm, field); \ 547 child = RB_RIGHT(elm, field); \ 550 if (child) \ 551 RB_PARENT(child, field) = parent; \ 554 RB_LEFT(parent, field) = child; \ 556 RB_RIGHT(parent, field) = child; \ 559 RB_ROOT(head) = child; \ 584 if (child) \ [all...] |
/external/dbus/dbus/ |
dbus-object-tree.c | 75 DBusObjectSubtree **subtrees; /**< Child nodes */ 76 int n_subtrees; /**< Number of child nodes */ 78 unsigned int invoke_as_fallback : 1; /**< Whether to invoke message_function when child nodes don't handle the message */ 258 DBusObjectSubtree* child; local 266 child = _dbus_object_subtree_new (path[0], 268 if (child == NULL) 282 _dbus_object_subtree_unref (child); 290 place the child should be inserted. */ 301 subtree->subtrees[child_pos] = child; 306 child->parent = subtree 517 DBusObjectSubtree *child; local [all...] |
/dalvik/libcore/prefs/src/main/java/java/util/prefs/ |
AbstractPreferences.java | 112 /** cached child nodes */ 171 * Returns an array of all cached child nodes. 173 * @return the array of cached child nodes. 180 * Returns the child node with the specified name or {@code null} if it 187 * the name of the desired child node. 188 * @return the child node with the given name or {@code null} if it doesn't 237 * Returns the names of all of the child nodes of this node or an empty 249 * Returns the child preference node with the given name, creating it 261 * the name of the child preference to be returned. 262 * @return the child preference node 742 AbstractPreferences child = childSpi(childrenNames[i]); local [all...] |
/external/webkit/WebCore/history/ |
HistoryItem.cpp | 411 void HistoryItem::addChildItem(PassRefPtr<HistoryItem> child) 413 ASSERT(!childItemWithTarget(child->target())); 414 m_children.append(child); 420 void HistoryItem::setChildItem(PassRefPtr<HistoryItem> child) 422 ASSERT(!child->isTargetItem()); 425 if (m_children[i]->target() == child->target()) { 426 child->setIsTargetItem(m_children[i]->isTargetItem()); 427 m_children[i] = child; 431 m_children.append(child);
|
/dalvik/libcore/xml/src/main/java/org/apache/xpath/patterns/ |
StepPattern.java | 437 for (int child = traverser.first(context); DTM.NULL != child; 438 child = traverser.next(context, child)) 442 xctxt.pushCurrentNode(child); 444 if (NodeTest.SCORE_NONE != super.execute(xctxt, child)) 534 DTMAxisTraverser traverser = dtm.getAxisTraverser(Axis.CHILD); 536 for (int child = traverser.first(parent); DTM.NULL != child; 537 child = traverser.next(parent, child) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutCanvas.java | 575 for (CanvasViewInfo child : vi.getChildren()) { 576 updateNodeProxies(child); 743 * Hover on top of a known child. 909 * Tries to find a child with the same view key in the view info sub-tree. 917 // try to find a matching child 918 for (CanvasViewInfo child : canvasViewInfo.getChildren()) { 919 CanvasViewInfo v = findViewInfoKey(viewKey, child); 930 * Tries to find the inner most child matching the given x,y coordinates in the view 945 * Tries to find the inner most child matching the given x,y coordinates in the vie [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
ViewGroupTest.java | 329 TextView child = new TextView(mContext); local 330 child.setFocusable(true); 331 vg.attachViewToParent(child, -1, param); 332 assertSame(vg, child.getParent()); 334 assertSame(child, vg.getChildAt(0)); 869 // test whether child's draw method is called. [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
DrawableContainerStateTest.java | 179 notes = "Dynamically changing a child's padding does not change this value", 219 notes = "Dynamically changing a child's height does not change this value", 225 notes = "Dynamically changing a child's width does not change this value", 231 notes = "Dynamically changing a child's minimum height does not change this value", 237 notes = "Dynamically changing a child's minimum width does not change this value", 288 notes = "Dynamically changing a child's opacity does not change this value",
|
/dalvik/libcore/luni-kernel/src/main/java/java/lang/ |
ProcessManager.java | 35 * Manages child processes. 44 * child died, but it was unable to determine the status 83 // Spawn a thread to listen for signals from child processes. 121 * Called by {@link #watchChildren()} when a child process exits. 148 * A new child was spawned just before we entered 239 * This will wake up the child monitor thread in case there
|
/dalvik/libcore/luni-kernel/src/main/native/ |
java_lang_ProcessManager.cpp | 49 #define WAIT_STATUS_UNKNOWN (-1) // unknown child status 110 * informed of another child coming to life. 165 #define PIPE_COUNT (4) // number of pipes used to communicate with child proc 181 /** Executes a command in a child process. */ 215 // If this is the child process... 268 // Close child's pipe ends.
|
/external/bluetooth/glib/tests/ |
gio-test.c | 357 _spawnl (_P_NOWAIT, argv[0], argv[0], "--child", cmdline, NULL); 359 cmdline = g_strdup_printf ("%s --child %d:%d &", argv[0], 387 /* Child */ 416 g_print ("gio-test: child writing %d+%d bytes to %d\n", 429 g_print ("gio-test: child posting message %d,%d,%d to %#x\n", 436 g_print ("gio-test: child exiting, closing %d\n", writefd);
|
/external/skia/src/animator/ |
SkDrawGroup.cpp | 60 bool SkGroup::add(SkAnimateMaker& , SkDisplayable* child) { 61 SkASSERT(child); 62 // SkASSERT(child->isDrawable()); 63 *fChildren.append() = (SkDrawable*) child; 64 if (child->isGroup()) { 65 SkGroup* groupie = (SkGroup*) child;
|
/external/webkit/WebCore/svg/ |
SVGFontFaceElement.cpp | 273 for (Node* child = firstChild(); child && !srcElement; child = child->nextSibling()) { 274 if (child->hasTagName(font_face_srcTag)) 275 srcElement = static_cast<SVGFontFaceSrcElement*>(child);
|
/frameworks/base/test-runner/src/android/test/ |
ActivityUnitTestCase.java | 69 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 266 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 311 public void startActivityFromChild(Activity child, Intent intent, int requestCode) { 320 * <li>{@link android.app.Activity#finishFromChild(Activity child)}</li> 324 public void finishFromChild(Activity child) { 335 public void finishActivityFromChild(Activity child, int requestCode) {
|
/packages/apps/Mms/src/com/android/mms/ui/ |
SlideshowActivity.java | 87 // The 'head' element should have only one child. 92 // The child is not layout element 97 // The 'layout' element has no child. 102 // The 'layout' element has no child. 108 // The 'layout' child is null. 145 // The 'layout' element has the child other than 'root-layout' or 'region'
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
CandidatesContainer.java | 282 int child = mFlipper.getDisplayedChild(); local 283 int childNext = (child + 1) % 2; 284 CandidateView cv = (CandidateView) mFlipper.getChildAt(child); 309 int child = mFlipper.getDisplayedChild(); local 310 int childNext = (child + 1) % 2; 311 CandidateView cv = (CandidateView) mFlipper.getChildAt(child);
|
/external/webkit/WebKit/android/nav/ |
CacheBuilder.cpp | 214 Frame* child = frame->tree()->firstChild(); local 215 bool hasChild = child != NULL; 218 while (child) { 219 Builder(child)->mDebug.frames(); 220 child = child->tree()->nextSibling(); 223 child = frame->tree()->firstChild(); 224 while (child) { 227 Builder(child)->mDebug.frameName(childNamePtr, childNamePtr + sizeof(childName) - 1); 229 if (child == frame->tree()->firstChild() 316 Frame* child = frame->tree()->firstChild(); local 725 Frame* child = frame->tree()->firstChild(); local 802 Node* child = node->firstChild(); local 987 Frame* child = HasFrame(node); local 1398 Frame* child = frame->tree()->firstChild(); local 2830 Frame* child = startFrame->tree()->firstChild(); local [all...] |
/external/webkit/WebCore/loader/ |
FrameLoader.cpp | 439 // completed() signal for the child by hand and mark the load as being 442 // it's being added to the child list. It would be a good idea to 443 // create the child first, then invoke the loader separately. 593 for (Frame* child = m_frame->tree()->firstChild(); child; child = child->tree()->nextSibling()) 594 child->loader()->stopLoading(unloadEventPolicy); 919 // We impose this condition because somebody can make a child frame [all...] |
/external/tinyxml/ |
xmltest.cpp | 160 // It is a child of the document, and can be selected by name. 182 // a particular child. 222 // And add the node to the existing list after the first child. 261 XmlTest( "First child exists & is a comment.", true, ( node != 0 && node->ToComment() ) ); 267 XmlTest ( "First child exists.", true, ( node != 0 && node->ToText() ) ); 522 TiXmlText* text = docH.FirstChildElement( "document" ).FirstChildElement( (const char*) russianElementName ).Child( 0 ).Text(); 530 TiXmlDeclaration* dec = docH.Child( 0 ).Node()->ToDeclaration(); 879 TiXmlUnknown* unknown = docH.Child( 1 ).Unknown(); 882 TiXmlNode* node = docH.Child( 2 ).Node(); 898 TiXmlComment* comment = docH.Child( 0 ).Node()->ToComment() [all...] |
/external/webkit/WebCore/editing/ |
DeleteSelectionCommand.cpp | 69 for (Node* child = row->firstChild(); child; child = child->nextSibling()) 70 if (isTableCell(child) && !isTableCellEmpty(child)) 334 RefPtr<Node> child = node->firstChild(); 335 while (child) { 336 RefPtr<Node> nextChild = child->nextSibling(); 337 removeNode(child.get()) 352 Node* child = node->firstChild(); local [all...] |
/external/webkit/WebCore/html/ |
HTMLElement.cpp | 300 // child of an element. 310 for (RefPtr<Node> child = firstChild; child; child = nextChild) { 311 nextChild = child->nextSibling(); 312 node->removeChild(child.get(), ignoredExceptionCode); 314 fragment->insertBefore(child, node.get(), ignoredExceptionCode); 954 const HTMLElement* child = static_cast<const HTMLElement*>(newChild); local 981 const HTMLElement* child = static_cast<const HTMLElement*>(newChild); local 996 const HTMLElement* child = static_cast<const HTMLElement*>(newChild); local [all...] |