/external/tinyxml/ |
readme.txt | 282 TiXmlElement* child = element->FirstChildElement( "Child" ); 283 if ( child ) 285 TiXmlElement* child2 = child->NextSiblingElement( "Child" ); 296 TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).Element(); 386 TiXmlDeclaration class. It will be the first child of the 410 Creates another TiXmlElement which is a child of the "ToDo" element. 417 It is a child of the "Item" TiXmlElement [all...] |
/external/webkit/WebKit/qt/tests/qwebframe/ |
tst_qwebframe.cpp | 626 foreach (QObject* child, children) { 627 if (!strcmp(child->metaObject()->className(), className)) { 628 return child; 897 // initially the object does not have the child 900 //QCOMPARE(evalJS("myObject.hasOwnProperty('child')"), sFalse); 901 QCOMPARE(evalJS("typeof myObject.child"), sUndefined); 903 // add a child 904 MyQObject* child = new MyQObject(m_myObject); local 905 child->setObjectName("child"); 2570 QObject* child = new QObject(parent); local 2575 QCOMPARE(qvariant_cast<QObject*>(v), child); local 2593 QPointer<QObject> child = new QObject(parent); local [all...] |
/frameworks/base/awt/javax/imageio/metadata/ |
IIOMetadataFormatImpl.java | 66 * child policy (not CHILD_POLICY_REPEAT). 71 * the child policy defined by one of the CHILD_POLICY_* 92 * CHILD_POLICY_REPEAT child policy. 333 * Adds an existing element to the list of child elements of the specified 348 * Adds a new element type to this IIOMetadataFormat with a child policy (if 375 * CHILD_POLICY_REPEAT and the specified minimum and maximum number of child 383 * the minimum number of child elements. 385 * the maximum number of child elements. 629 throw new IllegalArgumentException("Child policy is not CHILD_POLICY_REPEAT!"); 637 throw new IllegalArgumentException("Child policy is not CHILD_POLICY_REPEAT!") [all...] |
/external/jdiff/src/jdiff/ |
XMLToAPI.java | 136 public static void addInheritedElements(ClassAPI child, ClassAPI parent, 144 Iterator iter2 = child.methods_.iterator(); 156 child.methods_.add(m2); 164 if (child.fields_.indexOf(f) == -1 && 170 child.fields_.add(f2); 179 addInheritedElements(child, parent2, parent.extends_); 187 addInheritedElements(child, parent2, implName);
|
/frameworks/base/core/java/android/widget/ |
CursorTreeAdapter.java | 167 // Return this group's children Cursor pointing to the particular child 255 * Makes a new child view to hold the data pointed to by cursor. 260 * @param isLastChild Whether the child is the last child within its group. 268 * Bind an existing view to the child data pointed to by cursor 274 * @param isLastChild Whether the child is the last child within its group.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiActions.java | 107 * child list. 186 * If the tree has a selection, move it up, either in the child list or as the last child 233 // If the node is the first one of the child list of its 267 * If the tree has a selection, move it down, either in the same child list or as the 268 * first child of the next parent. 299 // then the node is inserted as the first child.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ReplaceStringsVisitor.java | 195 // Walk up the hierarchy again to find the immediate child of the parent,
197 ASTNode child = null;
local 201 child = n;
206 if (child == null) {
207 // This can't happen: a parent of 'node' must be the child of 'parent'.
214 if (arg == child) {
221 // This can't happen: one of the arguments of 'invoke' must be 'child'.
|
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
LogManagerTest.java | 227 Logger child = new MockLogger("testAddGetLogger_Hierachy.foo.child", null); local 228 Logger fakeChild = new MockLogger("testAddGetLogger_Hierachy.foo2.child", null); 229 Logger grandson = new MockLogger("testAddGetLogger_Hierachy.foo.child.grandson", null); 230 Logger otherChild = new MockLogger("testAddGetLogger_Hierachy.foo.child", null); 232 assertNull(child.getParent()); 238 assertTrue(mockManager.addLogger(child)); 239 assertNull(child.getParent()); 245 assertSame(child, grandson.getParent()); 248 assertSame(foo, child.getParent()) [all...] |
/dalvik/tools/dmtracedump/ |
TraceDump.c | 1711 TimedMethod* child; local 1725 TimedMethod* child; local [all...] |
/external/bluetooth/glib/po/ |
id.po | 879 msgid "Failed to read data from child process" 880 msgstr "Gagal untuk membaca data dari proses child" 884 msgid "Failed to create pipe for communicating with child process (%s)" 886 "Gagal saat membuat pipe untuk sarana komunikasi dengan proses child (%s)" 890 msgid "Failed to read from child pipe (%s)" 891 msgstr "Gagal saat membaca dari pipe child (%s)" 900 msgid "Failed to execute child process (%s)" 901 msgstr "Gagal saat menjalankan proses child (%s)" 930 "Unexpected error in g_io_channel_win32_poll() reading data from a child " 933 "Ada error pada g_io_channel_win32_poll() saat membaca dari proses child" [all...] |
/external/strace/ |
process.c | 415 /* TCP is creating a child we want to follow. 440 tcp->auxstr = "child process"; 458 tcp->auxstr = "child process"; 509 #define CLONE_PTRACE 0x00002000 /* set if we want to let tracing continue on the child too */ 510 #define CLONE_VFORK 0x00004000 /* set if the parent wants the child to wake it up on mm_release */ 515 #define CLONE_SETTLS 0x00080000 /* create a new TLS for the child */ 517 #define CLONE_CHILD_CLEARTID 0x00200000 /* clear the TID in the child */ 518 #define CLONE_DETACHED 0x00400000 /* parent wants no child-exit signal */ 520 #define CLONE_CHILD_SETTID 0x01000000 /* set the TID in the child */ 834 /* The child already reported its startup tra 1989 struct tcb *child = NULL; local [all...] |
/frameworks/base/tools/aapt/ |
XMLNode.cpp | 612 sp<XMLNode> child = mChildren.itemAt(i); 613 if (child->getType() == XMLNode::TYPE_ELEMENT 614 && child->mNamespaceUri == tagNamespace 615 && child->mElementName == tagName) { 616 return child; 623 status_t XMLNode::addChild(const sp<XMLNode>& child) 626 SourcePos(mFilename, child->getStartLineNumber()).error("Child to CDATA node."); 629 //printf("Adding child %p to parent %p\n", child.get(), this) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
ListViewTest.java | 667 final TextView child = (TextView) mAdapter_countries.getView(2, null, mListView); local 668 assertNotNull(child); 669 assertEquals(mCountryList[2], child.getText().toString()); 675 mListView.performItemClick(child, 2, itemID); 689 mListView.performItemClick(child, 2, itemID); 694 assertSame(child, onClickListener.getView()); 771 TextView child = (TextView) mAdapter_countries.getView(0, null, mListView); local 772 assertNotNull(child); 773 assertEquals(mCountryList[0], child.getText().toString()); 776 assertFalse(mListView.requestChildRectangleOnScreen(child, rect, false)) [all...] |
/dalvik/libcore/logging/src/main/java/java/util/logging/ |
LogManager.java | 114 * example, "x.y.z" is child of "x.y". 331 for (final Logger child : allLoggers) { 332 Logger oldParent = child.getParent(); 334 && (name.length() == 0 || child.getName().startsWith( 339 child.setParent(thisLogger); 345 oldParent.children.remove(child); 631 * Sets the level on {@code logger} to {@code newLevel}. Any child loggers 652 for (Logger child : logger.children) { 653 if (child.levelObjVal == null) { 654 setLevelRecursively(child, null) [all...] |
/external/webkit/WebCore/inspector/front-end/ |
DOMAgent.js | 194 var child = this.children[i]; 195 child.index = i; 196 child.nextSibling = i + 1 < this._childNodeCount ? this.children[i + 1] : null; 197 child.prevSibling = i - 1 >= 0 ? this.children[i - 1] : null; 198 child.parentNode = this; 416 var child = children[i]; 417 this._idToDOMNode[child.id] = child; 418 if (child.children) 419 this._bindNodes(child.children) [all...] |
/external/webkit/WebCore/loader/ |
HistoryController.cpp | 241 Frame* childFrame = m_frame->tree()->child(childItems[i]->target()); 514 for (Frame* child = m_frame->tree()->firstChild(); child; child = child->tree()->nextSibling()) { 515 FrameLoader* childLoader = child->loader(); 518 // If the child is a frame corresponding to an <object> element that never loaded, 580 Frame* childFrame = m_frame->tree()->child(childFrameName); 599 if (!m_frame->tree()->child(childItems[i]->target())) 612 // which will be loaded in the future. That part of the tree will be filled out as the child loads are committed [all...] |
/external/webkit/WebCore/plugins/gtk/ |
gtk2xtbin.c | 845 Widget child=XtWindowToWidget( dpy, event->xcreatewindow.window); local 846 if (child) 847 xt_add_focus_listener_tree(child, user_data); 856 Widget child=XtWindowToWidget(dpy, event->xreparent.window); local 857 if (child) 858 xt_add_focus_listener_tree( child, user_data); 861 /* I am the new child */ 936 Widget child = XtWindowToWidget(dpy, children[i]); local 937 if (child) 938 xt_add_focus_listener_tree( child, user_data) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/ |
AndroidManifestDescriptors.java | 86 APPLICATION_ELEMENT = createElement("application", null, true); //$NON-NLS-1$ + no child & mandatory 91 USES_SDK_ELEMENT = createElement("uses-sdk", null, true); //$NON-NLS-1$ + no child & mandatory 319 // Creates an element with no child and not mandatory 347 * as child to this ElementDescriptor. 404 ElementDescriptor child = existingElementDescs.get(childXmlName); local 405 if (child == null) { 406 child = createElement(childXmlName); 407 existingElementDescs.put(childXmlName, child); 409 children.add(child); 415 child, [all...] |
/external/libxml2/ |
relaxng.c | 337 xmlNodePtr seq; /* the current child */ 3689 xmlNodePtr child; local 4448 xmlNodePtr child; local 5015 xmlNodePtr child; local 5100 xmlNodePtr child; local 5239 xmlNodePtr child; local 5300 xmlNodePtr child; local 7200 xmlNodePtr child, ins, tmp; local 10252 xmlNodePtr child; local 10296 xmlNodePtr child; local 10340 xmlNodePtr child; local [all...] |
/external/webkit/WebKit/chromium/src/js/ |
HeapProfilerPanel.js | 289 var child = this.dataGrid.children[0]; 290 while (child) { 291 child.refresh(); 292 child = child.traverseNextNode(false, null, true); 630 var child = this.children[i]; 631 if (!force && (!child.expanded || child.lastComparator === comparator)) 633 child.sort(comparator, force); 794 appendChild: function(child) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
ElemSort.java | 307 * Add a child to the child list. 309 * @param newChild Child to add to the child list 311 * @return Child just added to the child list
|
/external/clearsilver/cgi/ |
rfc2388.c | 361 HDF *child, *obj = NULL; local 515 child = hdf_obj_child (obj); 516 if (child == NULL) 525 while (child != NULL) 528 child = hdf_obj_next (child);
|
/external/ppp/pppd/plugins/ |
winbind.c | 286 /* Make first child */ 288 error("pipe creation failed for child OUT!"); 293 error("pipe creation failed for child IN!"); 307 /* child process */ 441 notice("error closing pipe?!? for child OUT[0]"); 447 notice("error closing pipe?!? for child IN[1]");
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11wm.c | 339 Window child; local 365 XTranslateCoordinates( SDL_Display, WMwindow, SDL_Root, 0, 0, &xNew, &yNew, &child ); 396 Window child; local 399 XTranslateCoordinates( SDL_Display, WMwindow, SDL_Root, 0, 0, px, py, &child ); 409 Window child; local 412 XTranslateCoordinates( SDL_Display, WMwindow, SDL_Root, 0, 0, &x, &y, &child );
|
/external/webkit/WebKit/android/nav/ |
CachedNode.cpp | 45 CachedFrame* child = const_cast<CachedFrame*>(parent->hasFrame(this)); local 46 child->clearCursor(); 226 CachedFrame* child = const_cast<CachedFrame*>(parent->hasFrame(this)); local 227 child->hideCursor(); 345 case CHILD: return "CHILD"; break;
|