HomeSort by relevance Sort by last modified time
    Searched full:child (Results 476 - 500 of 3947) sorted by null

<<11121314151617181920>>

  /sdk/rule_api/src/com/android/ide/common/api/
IViewRule.java 118 * Returns a list of strings that will be displayed when a single child is being
120 * to describe the child's layout attributes or other relevant information.
126 * @param childNode The child node that was selected. Never null.
136 * @param childNodes the child nodes selected in the parent layout
253 * node in its child list)
260 * Called when a child for this view has been created and is being inserted into the
266 * @param child the newly created node
268 * newly created node in its child list)
272 void onChildInserted(INode child, INode parent, InsertType insertType);
290 * Called by the IDE on the parent layout when a child widget is being resized. Thi
    [all...]
  /external/tinyxml/
tinyxml.cpp 785 // 2) An element with only a text child is printed as <foo> text </foo>
884 const TiXmlNode* child = this->FirstChild(); local
885 if ( child ) {
886 const TiXmlText* childText = child->ToText();
1621 TiXmlNode* child = node->FirstChild(); local
1622 if ( child )
1623 return TiXmlHandle( child );
1633 TiXmlNode* child = node->FirstChild( value ); local
1634 if ( child )
1635 return TiXmlHandle( child );
1645 TiXmlElement* child = node->FirstChildElement(); local
1657 TiXmlElement* child = node->FirstChildElement( value ); local
1670 TiXmlNode* child = node->FirstChild(); local
1689 TiXmlNode* child = node->FirstChild( value ); local
1708 TiXmlElement* child = node->FirstChildElement(); local
1727 TiXmlElement* child = node->FirstChildElement( value ); local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
SdkSource.java 705 for (Node child = doc.getFirstChild(); child != null; child = child.getNextSibling()) {
706 if (child.getNodeType() == Node.ELEMENT_NODE) {
708 String name = child.getNodeName();
715 NamedNodeMap attrs = child.getAttributes();
792 for (Node child = root.getFirstChild();
793 child != null;
794 child = child.getNextSibling()) {
    [all...]
  /external/gtest/src/
gtest-death-test.cc 79 "Indicates how to run a death test in a forked child process: "
80 "\"threadsafe\" (child process re-executes the test binary "
82 "\"fast\" (child process runs the death test immediately "
196 // exec-style death test child process, in which case the error
202 // death test child process, which operates on a very small stack. Use
358 // True if the death test child process has been successfully spawned.
360 // The exit status of the child process.
376 // implementation uses pipes for child-to-parent communication. But due to
381 // 2. The parent starts the child and provides it with the information
383 // 3. The child acquires the write end of the pipe and signals the paren
    [all...]
  /cts/tests/src/android/widget/cts/
MyScrollView.java 64 protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed,
66 super.measureChildWithMargins(child, parentWidthMeasureSpec, widthUsed,
  /external/bluetooth/glib/gio/inotify/
inotify-helper.c 149 GFile* child; local
158 child = g_file_new_for_path (fullpath);
162 child, NULL, eflags);
164 g_object_unref (child);
175 GFile* child; local
197 child = g_file_new_for_path (fullpath);
201 child, NULL, eflags);
203 g_object_unref (child);
  /external/chromium/chrome/browser/net/
url_request_tracking.h 21 // If you make a request on behalf of a child process other than a renderer,
23 // child ID). For requests originating in a renderer or the browser itself,
  /external/chromium/chrome/browser/resources/options/
browser_options_page.css 1 #startupPageManagement.settings-list > :last-child {
24 #customHomePageGroup > :last-child {
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
cookie_tree_node.mm 45 CookieTreeNode* child = treeNode_->GetChild(i);
47 [[CocoaCookieTreeNode alloc] initWithNode:child]);
  /external/chromium/chrome/browser/ui/touch/frame/
keyboard_container_view.cc 48 View* child) {
50 MakeViewHierarchyUnfocusable(child);
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JHdf.java 171 for (Data child : d.getChildren()) {
172 if (child.isFirstSibling()) {
173 return new JHdf(child, dataFactory, loadPathCache, options);
175 // The first child returned should be the first sibling. Throw an error
177 throw new IllegalStateException("First child was not first sibling.");
216 for (Data child : data.getChildren()) {
217 if (child.isFirstSibling()) {
218 return new JHdf(child, dataFactory, loadPathCache, options);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
handleerror01.js 126 var child;
155 child = elem.lastChild;
157 childValue = child.nodeValue;
163 childType = child.nodeType;
166 child = elem.firstChild;
168 childValue = child.nodeValue;
175 child = elem.firstChild;
177 childValue = child.nodeValue;
  /external/webkit/LayoutTests/fast/xpath/
position-expected.txt 7 PASS ./descendant-or-self::node()/child::*[position() = 2]
8 PASS descendant-or-self::node()/child::*[position() = 2]
text-nodes-expected.txt 2 child::*, [object Element]: ""
3 child::node(), [object Element]: "a b c"
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemFocusablesClose.java 32 * Get the child of a list item.
34 * @param index The index of the child.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
LatestItemView.java 36 public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) {
37 if (super.onRequestSendAccessibilityEvent(child, event)) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationArea.java 32 public boolean onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) {
33 if (super.onRequestSendAccessibilityEvent(child, event)) {
  /libcore/luni/src/main/java/java/util/prefs/
NodeChangeListener.java 33 * This method gets called whenever a child node is added to another node.
41 * This method gets called whenever a child node is removed from another
  /packages/apps/Browser/src/com/android/browser/
BookmarkItem.java 157 protected void measureChild(View child, int parentWidthMeasureSpec,
160 super.measureChild(child, parentWidthMeasureSpec, parentHeightMeasureSpec);
164 final ViewGroup.LayoutParams lp = child.getLayoutParams();
171 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
175 protected void measureChildWithMargins(View child,
179 super.measureChildWithMargins(child, parentWidthMeasureSpec,
184 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
193 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTimeContainer.java 31 * Returns a list of child elements active at the specified invocation.
34 * @return List of timed child-elements active at instant.
  /packages/apps/Settings/src/com/android/settings/widget/
ChartView.java 111 final View child = getChildAt(i); local
112 final LayoutParams params = (LayoutParams) child.getLayoutParams();
116 if (child instanceof ChartNetworkSeriesView || child instanceof ChartGridView) {
120 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom);
122 } else if (child instanceof ChartSweepView) {
123 layoutSweep((ChartSweepView) child, parentRect, childRect);
124 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
pty.h 37 /* Create child process and establish the slave pseudo terminal as the
38 child's controlling terminal. */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
wait.h 104 P_ALL, /* Wait for any child. */
111 /* Wait for a child to die. When one does, put its status in *STAT_LOC
124 /* Wait for a child matching PID to die.
131 If the WNOHANG bit is set in OPTIONS, and that child
133 return PID and store the dead child's status in STAT_LOC.
149 If the WNOHANG bit is set in OPTIONS, and that child
164 /* Wait for a child to exit. When one does, put its status in *STAT_LOC and
166 nil, store information about the child's resource usage there. If the
  /external/antlr/src/org/antlr/runtime/tree/
TreeAdaptor.java 84 /** Is tree considered a nil node used to make lists of child nodes? */
87 /** Add a child to the tree t. If child is a flat tree (a list), make all
88 * in list children of t. Warning: if t has no children, but child does
89 * and child isNil then you can decide it is ok to move children to t via
90 * t.children = child.children; i.e., without copying the array. Just
92 * ASTs. Do nothing if t or child is null.
94 public void addChild(Object t, Object child);
97 * If not a nil root, make oldRoot a child of newRoot.
102 * If newRoot is a nil-rooted single child tree, use the singl
    [all...]
  /external/chromium/chrome/browser/
mach_broker_mac.h 24 // browser's child processes send their Mach port to the browser over IPC.
25 // This way, the brower can at least collect metrics of its child processes,
29 // the regular IPC system uses. Hence, the child processes open a Mach
34 // immediately after a child process has been started.
76 // Does the Right Thing in the browser and in child processes.

Completed in 1140 milliseconds

<<11121314151617181920>>