HomeSort by relevance Sort by last modified time
    Searched refs:newChild (Results 251 - 275 of 304) sorted by null

<<111213

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/grid/
GridModelTest.java     [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodeinsertbeforedocfragment.js 78 If the "newChild" is a DocumentFragment object then all
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodeinsertbeforedocfragment.js 78 If the "newChild" is a DocumentFragment object then all
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentadoptnode14.js 79 with the first acronym element of this Document as its newChild. Since the decendants of a documentFragment
nodereplacechild01.js 79 The method replaceChild replaces the child node oldChild with newChild in the list of
nodereplacechild03.js 79 The method replaceChild replaces the child node oldChild with newChild in the list of
nodereplacechild04.js 79 The method replaceChild replaces the child node oldChild with newChild in the list of
nodereplacechild10.js 85 The method replaceChild replaces the child node oldChild with newChild in the list of
nodereplacechild14.js 79 The method replaceChild replaces the child node oldChild with newChild in the list of
nodereplacechild21.js 85 The method replaceChild replaces the child node oldChild with newChild in the list of
nodereplacechild27.js 86 The method replaceChild replaces the child node oldChild with newChild in the list of
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GraphicsLayerChromium.cpp 165 bool GraphicsLayerChromium::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
167 if (GraphicsLayer::replaceChild(oldChild, newChild)) {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsLayerCACF.cpp 191 bool GraphicsLayerCACF::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
193 if (GraphicsLayer::replaceChild(oldChild, newChild)) {
  /external/webkit/Source/WebCore/rendering/
RenderMenuList.cpp 109 void RenderMenuList::addChild(RenderObject* newChild, RenderObject* beforeChild)
112 m_innerBlock->addChild(newChild, beforeChild);
RenderObject.h 205 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0);
206 virtual void addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild = 0) { return addChild(newChild, beforeChild); }
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.h 215 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.h 67 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
  /external/webkit/Source/WebKit/win/Interfaces/
DOMCore.idl 158 - (DOMNode *)insertBefore:(DOMNode *)newChild :(DOMNode *)refChild;
160 HRESULT insertBefore([in] IDOMNode* newChild, [in] IDOMNode* refChild, [out, retval] IDOMNode** result);
163 - (DOMNode *)replaceChild:(DOMNode *)newChild :(DOMNode *)oldChild;
165 HRESULT replaceChild([in] IDOMNode* newChild, [in] IDOMNode* oldChild, [out, retval] IDOMNode** result);
173 - (DOMNode *)appendChild:(DOMNode *)newChild;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 483 * @param newChild
491 public final Node insertBefore(Node newChild, Node refChild)
499 * @param newChild
507 public final Node replaceChild(Node newChild, Node oldChild)
529 * @param newChild
536 public final Node appendChild(Node newChild) throws DOMException
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 191 bool GraphicsLayerAndroid::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
193 ALOGV("(%x) replaceChild %x by %x", this, oldChild, newChild);
194 bool ret = GraphicsLayer::replaceChild(oldChild, newChild);
    [all...]
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.cpp 217 /* [in] */ IDOMNode* newChild,
229 COMPtr<DOMNode> newChildNode(Query, newChild);
239 *result = newChild;
245 /* [in] */ IDOMNode* /*newChild*/,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 595 INode newChild = targetNode.insertChildAt(fqcn, insertPos);
604 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER);
605 addInnerElements(newChild, element, idMap);
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Intermediate.cpp 359 TIntermTyped* newChild = childTempConstant->fold(op, 0, infoSink);
361 if (newChild)
362 return newChild;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java     [all...]

Completed in 830 milliseconds

<<111213