/sdk/layoutopt/libs/uix/src/resources/rules/ |
IncorrectHeightInScrollView.rule | 3 // Description: Checks whether a scrollview's child has the wrong dimension.
|
IncorrectWidthInHorizontalScrollView.rule | 3 // Description: Checks whether a scrollview's child has the wrong dimension.
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
XmlParserUtils.java | 27 * Returns the first child element with the given XML local name.
28 * If xmlLocalName is null, returns the very first child element.
33 for(Node child = node.getFirstChild(); child != null; child = child.getNextSibling()) {
34 if (child.getNodeType() == Node.ELEMENT_NODE &&
35 nsUri.equals(child.getNamespaceURI())) {
36 if (xmlLocalName == null || xmlLocalName.equals(child.getLocalName())) {
37 return child;
59 Node child = getFirstChild(node, xmlLocalName); local 78 Node child = getFirstChild(node, xmlLocalName); local [all...] |
/cts/tests/tests/holo/src/android/holo/cts/ |
ReferenceViewGroup.java | 55 View child = getChildAt(i); local 56 LayoutParams params = child.getLayoutParams(); 59 child.measure(width, height); 81 View child = getChildAt(i); local 82 child.layout(0, 0, child.getMeasuredWidth(), child.getMeasuredHeight());
|
/dalvik/docs/ |
instruction-formats.css | 66 table.letters td:first-child { 72 table.letters td:first-child + td { 77 table.letters td:first-child + td + td { 111 table.format th:first-child { 115 table.format th:first-child + th { 119 table.format th:first-child + th + th { 123 table.format th:first-child + th + th + th {
|
/docs/source.android.com/src/tech/dalvik/ |
instruction-formats.css | 66 table.letters td:first-child { 72 table.letters td:first-child + td { 77 table.letters td:first-child + td + td { 111 table.format th:first-child { 115 table.format th:first-child + th { 119 table.format th:first-child + th + th { 123 table.format th:first-child + th + th + th {
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
AFunctionExpression.java | 97 void removeChild(@SuppressWarnings("unused") Node child) 99 // Remove child 100 if(this._name_ == child) 106 if(this._args_.remove(child)) 111 throw new RuntimeException("Not a child."); 117 // Replace child 142 throw new RuntimeException("Not a child.");
|
ALoopCommand.java | 194 void removeChild(@SuppressWarnings("unused") Node child) 196 // Remove child 197 if(this._position_ == child) 203 if(this._variable_ == child) 209 if(this._start_ == child) 215 if(this._end_ == child) 221 if(this._command_ == child) 227 throw new RuntimeException("Not a child."); 233 // Replace child 264 throw new RuntimeException("Not a child.") [all...] |
Start.java | 90 void removeChild(Node child) 92 if(this._pCommand_ == child) 98 if(this._eof_ == child) 104 throw new RuntimeException("Not a child."); 122 throw new RuntimeException("Not a child.");
|
/libcore/luni/src/main/java/java/util/prefs/ |
NodeChangeEvent.java | 27 * This is the event class to indicate that one child of the preference node has 44 private final Preferences child; field in class:NodeChangeEvent 53 * the child {@code Preferences} instance that was added or deleted. 58 child = c; 71 * Gets the child {@code Preferences} node that was added or removed. 73 * @return the added or removed child {@code Preferences} node. 76 return child;
|
/system/extras/tests/bionic/libc/common/ |
test_clone.c | 62 int pid,child; local 72 printf ("child pid %d\n", pid); 75 child = waitpid (pid, &status, 0); 76 printf("waitpid returned %d\n", child); 77 if (child < 0) { 81 printf ("child %d, status 0x%x\n", child, status);
|
/frameworks/base/core/java/android/widget/ |
ExpandableListView.java | 45 * collapsed group, child, or last child). Use 86 * The packed position represents a child. 98 * (first bit 0) should not have a child position filled. 102 /** The mask (in packed position representation) for the child */ 117 /** The mask (in integer child position representation) for the child */ 126 /** Gives us Views through group+child positions */ 136 * Left bound for drawing the indicator of a child. Value of 142 * Right bound for drawing the indicator of a child. Value o [all...] |
/bionic/libc/bionic/ |
pthread-atfork.c | 40 void (*child)(void); member in struct:atfork_t 50 /* We will lock this here, and unlock it in the parent and child functions. 52 * to the prepare and parent/child handlers. 62 * handlers should be called in the reverse order of the parent/child 78 /* Call pthread_atfork() child handlers */ 82 if (cursor->child != NULL) { 83 cursor->child(); 106 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void(*child)(void)) 116 entry->child = child; [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
gtk_expanded_container.cc | 26 void GetChildPosition(GtkWidget* container, GtkWidget* child, int* x, int* y) { 29 gtk_container_child_get_property(GTK_CONTAINER(container), child, "x", &v); local 31 gtk_container_child_get_property(GTK_CONTAINER(container), child, "y", &v); local 36 void ChildSizeAllocate(GtkWidget* child, gpointer userdata) { 37 if (!GTK_WIDGET_VISIBLE(child)) 50 child, &child_requisition); 56 gtk_widget_get_child_requisition(child, &child_requisition); 64 GetChildPosition(data->container, child, &x, &y); 73 gtk_widget_size_allocate(child, &child_allocation); 128 g_signal_new("child-size-request" [all...] |
gtk_chrome_shrinkable_hbox.h | 20 // - The visibility of a child is adjusted automatically according to the 21 // container's width. The child may not show or hide itself. 61 // If |hide_child_directly| is true then its child widgets will be hid directly 75 GtkWidget* child, 79 GtkWidget* child,
|
gtk_expanded_container.h | 16 // The "child-size-request" signal is optional, if you want to expand child 21 // GtkWidget* child, 24 // This signal is emitted for each child with the requisition set to the size of 27 // the original size request of the child will be used.
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_namednodemapchildnoderange.js | 79 last child of the third "p" element and traverse the 96 var child; 123 child = attributes.item(2); 124 assertNotNull("attr2",child); 127 child = attributes.item(0); 128 assertNotNull("attr0",child); 129 child = attributes.item(1); 130 assertNotNull("attr1",child); 131 child = attributes.item(3); 132 assertNull("attr3",child); [all...] |
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_namednodemapchildnoderange.js | 79 last child of the third "p" element and traverse the 96 var child; 123 child = attributes.item(2); 124 assertNotNull("attr2",child); 127 child = attributes.item(0); 128 assertNotNull("attr0",child); 129 child = attributes.item(1); 130 assertNotNull("attr1",child); 131 child = attributes.item(3); 132 assertNull("attr3",child); [all...] |
/frameworks/base/tools/localize/ |
XLIFFFile_test.cpp | 51 XMLNode* child; local 53 child = add_html_tag(res.value, "b"); 54 child->EditChildren().push_back(XMLNode::NewText(GENERATED_POS, "b", XMLNode::EXACT)); 56 child = add_html_tag(res.value, "i"); 57 child->EditChildren().push_back(XMLNode::NewText(GENERATED_POS, "i", XMLNode::EXACT)); 59 child = add_html_tag(child, "b"); 60 child->EditChildren().push_back(XMLNode::NewText(GENERATED_POS, "b", XMLNode::EXACT)); 62 child = add_html_tag(res.value, "u"); 63 child->EditChildren().push_back(XMLNode::NewText(GENERATED_POS, "u", XMLNode::EXACT)) [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_namednodemapchildnoderange.java | 32 * last child of the third "p" element and traverse the 67 Node child; local 80 child = attributes.item(2); 81 assertNotNull("attr2", child); 84 child = attributes.item(0); 85 assertNotNull("attr0", child); 86 child = attributes.item(1); 87 assertNotNull("attr1", child); 88 child = attributes.item(3); 89 assertNull("attr3", child); [all...] |
/packages/apps/Email/src/com/android/email/view/ |
NonLockingScrollView.java | 69 // An up event after a drag should be intercepted so that child views don't handle 110 final View child = viewGroup.getChildAt(i); local 111 excludeChildrenFromInterceptions(child); 122 for (View child : children) { 123 if (!canViewReceivePointerEvents(child)) { 126 child.getHitRect(sHitFrame); 128 // child can receive the motion event. 136 private static boolean canViewReceivePointerEvents(View child) { 137 return child.getVisibility() == VISIBLE || (child.getAnimation() != null) [all...] |
/sdk/common/src/com/android/io/ |
FileWrapper.java | 44 * Creates a new File instance from a parent abstract pathname and a child pathname string. 46 * @param child the child name 50 public FileWrapper(File parent, String child) { 51 super(parent, child); 66 * Creates a new File instance from a parent abstract pathname and a child pathname string. 68 * @param child the child name 72 public FileWrapper(String parent, String child) { 73 super(parent, child); [all...] |
FolderWrapper.java | 32 * Creates a new File instance from a parent abstract pathname and a child pathname string. 34 * @param child the child name 38 public FolderWrapper(File parent, String child) { 39 super(parent, child); 54 * Creates a new File instance from a parent abstract pathname and a child pathname string. 56 * @param child the child name 60 public FolderWrapper(String parent, String child) { 61 super(parent, child); [all...] |
/external/chromium/chrome/browser/resources/bookmark_manager/js/bmm/ |
bookmark_tree.js | 104 addAt: function(child, index) { 105 TreeItem.prototype.addAt.call(this, child, index); 106 if (child.bookmarkNode) 107 treeLookup[child.bookmarkNode.id] = child; 111 remove: function(child) { 112 TreeItem.prototype.remove.call(this, child); 113 if (child.bookmarkNode) 114 delete treeLookup[child.bookmarkNode.id]; 221 var child = children[i] [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
sched.h | 12 #define CLONE_PTRACE 0x00002000 /* set if we want to let tracing continue on the child too */ 13 #define CLONE_VFORK 0x00004000 /* set if the parent wants the child to wake it up on mm_release */ 18 #define CLONE_SETTLS 0x00080000 /* create a new TLS for the child */ 20 #define CLONE_CHILD_CLEARTID 0x00200000 /* clear the TID in the child */ 23 #define CLONE_CHILD_SETTID 0x01000000 /* set the TID in the child */
|