/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
namednodemapchildnoderange.java | 31 * The range of valid child node indices is 0 to Length -1. 34 * last child of the third employee and traverse the 69 Node child; local 77 child = attributes.item(0); 78 child = attributes.item(1);
|
namednodemapreturnfirstitem.java | 35 * listing of the attributes of the last child. Since the 70 Node child; local 76 child = attributes.item(0); 77 name = child.getNodeName();
|
namednodemapreturnlastitem.java | 35 * listing of the attributes of the last child. Since the 70 Node child; local 76 child = attributes.item(1); 77 name = child.getNodeName();
|
nodehaschildnodesfalse.java | 34 * Retrieve the Text node inside the first child of the 66 Node child; local 73 child = elementList.item(1); 74 employeeIdList = child.getChildNodes();
|
nodelistindexequalzero.java | 32 * employee and access its first child by using an index 64 Node child; local 70 child = employeeList.item(0); 71 childName = child.getNodeName();
|
nodelistindexnotzero.java | 32 * employee and access its fourth child by using an index 67 Node child; local 77 child = employeeList.item(1); 79 child = employeeList.item(3); 82 childName = child.getNodeName();
|
nodelistreturnfirstitem.java | 31 * Get the first child of the third employee using NodeList.item(0) 63 Node child; local 70 child = employeeList.item(0); 71 childName = child.getNodeName();
|
nodelistreturnlastitem.java | 31 * Get this last child of the third employee using NodeList.item(NodeList.length - 1) 63 Node child; local 73 child = employeeList.item(5); 74 childName = child.getNodeName(); 77 child = employeeList.item(12); 78 childName = child.getNodeName();
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
importNode11.java | 43 * Method should return a node of type Entity_Reference whose first child's value is "Texas" as defined 77 Node child; local 86 child = aNode.getFirstChild(); 87 assertNotNull("child", child); 88 childValue = child.getNodeValue();
|
/ndk/sources/host-tools/make-3.81/ |
job.h | 38 /* Structure describing a running or dead child process. */ 40 struct child struct 42 struct child *next; /* Link in the chain. */ 52 pid_t pid; /* Child process's ID number. */ 62 unsigned int good_stdin:1; /* Nonzero if this child has a good stdin. */ 67 extern struct child *children; 75 extern int child_execute_job PARAMS ((char *argv, struct child *child));
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
InterpolatingLayout.java | 31 * Layout similar to LinearLayout that allows a child to specify examples of 35 * You can also specify minWidth for each child. You can have at most one 36 * child with layout_width="match_parent" - it will take the entire remaining 214 View child = getChildAt(i); local 215 if (child.getVisibility() == View.GONE) { 219 LayoutParams params = (LayoutParams) child.getLayoutParams(); 223 "Interpolating layout allows at most one child" 226 fillChild = child; 256 child.measure(childWidthMeasureSpec, childHeightMeasureSpec); 257 width += child.getMeasuredWidth() 284 View child = getChildAt(i); local [all...] |
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/ |
StateListDetector.java | 42 "In a selector, only the last child in the state list should omit a " + 82 Element child = children.get(i); local 84 NamedNodeMap attributes = child.getAttributes(); 93 context.toolContext.report(ISSUE, context.getLocation(child),
|
/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...] |
/packages/apps/Contacts/tests/src/com/android/contacts/ |
EntityDeltaTests.java | 123 final ValuesDelta child = source.getEntry(TEST_PHONE_ID); local 124 child.put(Phone.NUMBER, TEST_PHONE_NUMBER_2); 137 final ValuesDelta child = source.getEntry(TEST_PHONE_ID); local 138 child.markDeleted(); 305 final ValuesDelta child = source.getEntry(TEST_PHONE_ID); local 306 child.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/ |
SwtBaseDialog.java | 210 Shell child = mShell; local 212 if (child != null && parent != null) { 224 childSize = child.getSize(); 235 child.setLocation(x, y); 236 child.setSize(cw, ch);
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
OldLoggerTest.java | 148 // child part 150 "testGetLogger_WithParent_ParentLogger.child")); 151 // create the child logger 152 Logger child = Logger local 153 .getLogger("testGetLogger_WithParent_ParentLogger.child"); 154 assertNull(child.getFilter()); 155 assertEquals(0, child.getHandlers().length); 156 assertNull(child.getLevel()); 157 assertEquals("testGetLogger_WithParent_ParentLogger.child", child 192 assertSame(childOfChild.getParent(), child); local [all...] |
/external/antlr/src/org/antlr/runtime/tree/ |
BaseTree.java | 35 * instead of the child-sibling approach in v2. A flat tree (a list) is 83 /** Add t as child of this node. 85 * Warning: if t has no children, but child does 86 * and child isNil then this routine moves children to t via 87 * t.children = child.children; i.e., without copying the array. 90 //System.out.println("add child "+t.toStringTree()+" "+this.toStringTree()); 98 throw new RuntimeException("attempt to add child list to itself"); 107 // handle double-link stuff for each child of nil root 120 else { // child is not nil (don't care about children) 144 throw new IllegalArgumentException("Can't set single child to a list") 197 BaseTree child = (BaseTree)newChildren.get(j); local 247 Tree child = (Tree)getChild(c); local 266 CommonTree child = (CommonTree)this.getChild(c); local [all...] |
TreePatternParser.java | 79 Object child = parseNode(); local 80 if ( child==null ) { 83 adaptor.addChild(root, child);
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
LogWindow.java | 280 Shell child = mShell;
local 281 if (child != null && mParentShell != null) {
290 Point childSize = child.getSize();
300 child.setLocation(x, y);
301 child.setSize(cw, ch);
|
/development/tools/emulator/opengl/shared/OpenglOsUtils/ |
osProcessUnix.cpp | 131 childProcess *child = new childProcess(); local 132 if (!child) { 136 child->m_pid = start_process(p_cmdLine, p_startdir); 137 if (child->m_pid < 0) { 138 delete child; 142 return child;
|
/development/tools/emulator/opengl/tests/ut_renderer/ |
X11Windowing.cpp | 40 Window child; local 42 XTranslateCoordinates( disp, win, DefaultRootWindow(disp), 0, 0, px, py, &child );
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemExsltFunction.java | 91 Node child = children.item(i); local
|
/external/blktrace/ |
rbtree.c | 224 struct rb_node *child, *parent; local 228 child = node->rb_right; 230 child = node->rb_left; 238 child = node->rb_right; 242 if (child) 243 rb_set_parent(child, parent); 245 parent->rb_right = child; 248 parent->rb_left = child; 272 if (child) 273 rb_set_parent(child, parent) [all...] |
/external/bluetooth/glib/gio/fam/ |
fam-helper.c | 105 GFile *child, *parent; local 116 child = g_file_new_for_path (path); 117 parent = g_file_get_parent (child); 118 g_file_monitor_emit_event (monitor, child, NULL, eflags); 120 g_object_unref (child); 125 GFile *child; local 133 child = g_file_new_for_path (path); 134 g_file_monitor_emit_event (monitor, child, NULL, eflags); 136 g_object_unref (child);
|
/external/bluetooth/glib/gobject/ |
gobject-query.c | 87 GType *child; local 94 for (child = children; *child; child++) 95 show_nodes (child[0], child[1], new_indent);
|