/dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
documentimportnode17.java | 34 * The importNode method imports a node from another document to this document. 35 * The returned node has no parent; (parentNode is null). The source node is not 36 * altered or removed from the original document but a new copy of the source node 39 * Using the method importNode with deep=true, import a newly created Comment node for this 40 * Document. Verify if the node has been imported correctly by checking the value of the 41 * imported Comment node. 78 Node commentImport; 79 Node commentToImport;
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/ |
TransformState.java | 29 import org.w3c.dom.Node; 68 * This method retrieves the current context node 71 * @return the current context node in the source tree. 73 Node getCurrentNode(); 104 * Retrieves the node in the source tree that matched 107 * @return the node in the source tree that matched 110 Node getMatchedNode(); 113 * Get the current context node list. 115 * @return the current context node list.
|
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
SetAttributeNS.java | 31 import org.w3c.dom.Node; 43 * Attempt to add a new attribute on the first employee node. An exception 96 Node testAddr; 104 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 123 Node testAddr; 132 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 147 // Node gender; 149 // Node gen; 188 Node testAddr; 198 ((Element) /* Node */testAddr).setAttributeNS("http://www.nist.gov" [all...] |
/external/webkit/WebCore/bindings/js/ |
ScriptEventListener.cpp | 53 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Node* node, Attribute* attr) 55 ASSERT(node); 65 if (Frame* frame = node->document()->frame()) { 76 sourceURL = node->document()->url().string(); 79 JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(node->document(), mainThreadNormalWorld()); 80 wrapper = asObject(toJS(globalObject->globalExec(), globalObject, node)); 83 return JSLazyEventListener::create(attr->localName().string(), eventParameterName(node->isSVGElement()), attr->value(), node, sourceURL, lineNumber, wrapper, mainThreadNormalWorld());
|
/external/webkit/WebCore/rendering/ |
RenderSVGViewportContainer.cpp | 36 RenderSVGViewportContainer::RenderSVGViewportContainer(SVGStyledElement* node) 37 : RenderSVGContainer(node) 72 SVGElement* svgelem = static_cast<SVGElement*>(node()); 74 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node()); 88 SVGMarkerElement* svg = static_cast<SVGMarkerElement*>(node()); 97 if (node()->hasTagName(SVGNames::svgTag)) { 98 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node()); 100 } else if (node()->hasTagName(SVGNames::markerTag)) { 101 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node());
|
/external/webkit/WebCore/wml/ |
WMLOptGroupElement.cpp | 53 bool WMLOptGroupElement::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) 61 bool WMLOptGroupElement::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach) 69 bool WMLOptGroupElement::removeChild(Node* oldChild, ExceptionCode& ec) 77 bool WMLOptGroupElement::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach) 95 Node* select = element->parentNode(); 115 void WMLOptGroupElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
ManifestEditor.java | 46 import org.w3c.dom.Node; 63 /** Root node of the UI element hierarchy */ 92 * Return the root node of the UI element hierarchy, which here 93 * is the "manifest" node. 156 * Processes the new XML Model, which XML root node is given. 162 // create the ui root node on demand. 172 Node node = getManifestXmlNode(xmlDoc); local 174 if (node != null) { 175 // Refresh the manifest UI node and all its descendant 185 Node node = (Node) xpath.evaluate("\/" + manifest_desc.getXmlName(), \/\/$NON-NLS-1\$ local 201 Node node = getManifestXmlNode(getXmlDocument(getModelForRead())); local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/ |
NamedNodeMapImpl.java | 22 import org.w3c.dom.Node; 59 NodeImpl node = list.get(i); local 60 if (node.matchesName(name, false)) { 70 NodeImpl node = list.get(i); local 71 if (node.matchesNameNS(namespaceURI, localName, false)) { 79 public Node getNamedItem(String name) { 85 public Node getNamedItemNS(String namespaceURI, String localName) { 91 public Node item(int index) { 95 public Node removeNamedItem(String name) throws DOMException { 105 public Node removeNamedItemNS(String namespaceURI, String localName [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMAxisIterNodeList.java | 27 import org.w3c.dom.Node; 100 * @return The node at the <code>index</code>th position in the 104 public Node item(int index) { 106 int node; local 110 node = m_cachedNodes.elementAt(index); 111 return m_dtm.getNode(node); 113 while (((node = m_iter.next()) != DTMAxisIterator.END) 115 m_cachedNodes.addElement(node); 118 if (node == DTMAxisIterator.END) { 121 return m_dtm.getNode(node); 134 int node; local [all...] |
DTMDefaultBase.java | 50 // node of a DTM. 51 /** The identity of the root node. */ 56 * node index. 60 /** The expanded names, one array element for each node. */ 63 /** First child values, one array element for each node. */ 66 /** Next sibling values, one array element for each node. */ 69 /** Previous sibling values, one array element for each node. */ 72 /** Previous sibling values, one array element for each node. */ 90 /** The default block size of the node arrays */ 93 /** The number of blocks for the node arrays * 1157 int node = makeNodeIdentity(nodeHandle); local 1190 int node = _firstch(parent); local [all...] |
DTMDocumentImpl.java | 67 // Number of lower bits used to represent node index. 69 // Masks the lower order of node handle. 82 protected int m_currentNode = -1; // current node 156 * all node ID numbers, so those IDs indicate which document they 410 // Actually creating the text node is handled by 416 // Flush string accumulation into a text node 629 // wait for the first startElement to create the doc root node 665 // * Factory method; creates an Element node in this document. 667 // * The node created will be chained according to its natural order of request 672 // * to prepare and patch up parent and sibling node pointers.</p [all...] |
/hardware/ti/omap3/dspbridge/inc/ |
rms_sh.h | 28 *! 24-Feb-2003 kc Rearranged order of node types to temporarily support legacy message 29 *! node code 58 /* Node Types: */ 59 #define RMS_TASK 1 /* Task node */ 60 #define RMS_DAIS 2 /* xDAIS socket node */ 61 #define RMS_MSG 3 /* Message node */ 73 #define RMS_EXIT 0x80000000 /* GPP->Node: shutdown */ 74 #define RMS_EXITACK 0x40000000 /* Node->GPP: ack shutdown */ 90 * streams, and is passed to a node's create function. 101 /* Message node create args structure: * [all...] |
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
rms_sh.h | 28 *! 24-Feb-2003 kc Rearranged order of node types to temporarily support legacy message 29 *! node code 58 /* Node Types: */ 59 #define RMS_TASK 1 /* Task node */ 60 #define RMS_DAIS 2 /* xDAIS socket node */ 61 #define RMS_MSG 3 /* Message node */ 73 #define RMS_EXIT 0x80000000 /* GPP->Node: shutdown */ 74 #define RMS_EXITACK 0x40000000 /* Node->GPP: ack shutdown */ 90 * streams, and is passed to a node's create function. 101 /* Message node create args structure: * [all...] |
/external/quake/quake/src/QW/client/ |
r_light.c | 69 void R_MarkLights (dlight_t *light, int bit, mnode_t *node) 76 if (node->contents < 0) 79 splitplane = node->plane; 84 R_MarkLights (light, bit, node->children[0]); 89 R_MarkLights (light, bit, node->children[1]); 94 surf = cl.worldmodel->surfaces + node->firstsurface; 95 for (i=0 ; i<node->numsurfaces ; i++, surf++) 105 R_MarkLights (light, bit, node->children[0]); 106 R_MarkLights (light, bit, node->children[1]); 141 int RecursiveLightPoint (mnode_t *node, vec3_t start, vec3_t end [all...] |
/external/quake/quake/src/WinQuake/ |
r_light.cpp | 69 void R_MarkLights (dlight_t *light, int bit, mnode_t *node)
76 if (node->contents < 0)
79 splitplane = node->plane;
84 R_MarkLights (light, bit, node->children[0]);
89 R_MarkLights (light, bit, node->children[1]);
94 surf = cl.worldmodel->surfaces + node->firstsurface;
95 for (i=0 ; i<node->numsurfaces ; i++, surf++)
105 R_MarkLights (light, bit, node->children[0]);
106 R_MarkLights (light, bit, node->children[1]);
141 int RecursiveLightPoint (mnode_t *node, vec3_t start, vec3_t end) [all...] |
/frameworks/base/core/java/android/content/ |
UriMatcher.java | 121 * Creates the root node of the URI tree. 160 UriMatcher node = this; local 163 ArrayList<UriMatcher> children = node.mChildren; 170 node = child; 185 node.mChildren.add(child); 186 node = child; 189 node.mCode = code; 199 * @return The code for the matched node (added using addURI), 200 * or -1 if there is no matched node. 207 UriMatcher node = this [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyScene.java | 62 protected Widget attachNodeWidget(ViewNode node) { 63 Widget widget = createBox(node, node.name, node.id); 70 private Widget createBox(ViewNode node, String nodeName, String id) { 72 node.setShortName(shortName); 74 GradientWidget box = new GradientWidget(this, node); 194 private final ViewNode node; field in class:ViewHierarchyScene.GradientWidget 203 public GradientWidget(ViewHierarchyScene scene, ViewNode node) { 205 this.node = node [all...] |
/frameworks/base/media/libdrm/mobile2/src/rights/ |
Ro.cpp | 155 NodeImpl* node = doc->getDocumentElement(); local 157 return handleRights(node); 165 NodeImpl *node = curNode->getFirstChild(); local 167 while (NULL != node) 171 name = static_cast<const XMLElementImpl*>(node)->getTagName(); 177 token = static_cast<const XMLElementImpl*>(node)->getSoloText(STR_RO_CONTEXT_ID); 185 token = static_cast<const XMLElementImpl*>(node)->getSoloText(STR_RO_CONTEXT_VERSION); 197 if (handleAgreement(node) == false) 203 node = node->getNextSibling() 213 NodeImpl *node = curNode->getFirstChild(); local 272 NodeImpl* node = curNode->getFirstChild(); local 328 const XMLElementImpl *node = curElement->getSoloElement(STR_RO_RETRIEVAL_METHOD); local 361 NodeImpl* node = curNode->getFirstChild(); local 524 const XMLElementImpl *node = curElement->getSoloElement(STR_RO_TIMEDCOUNT); local [all...] |
/dalvik/libcore/xml/src/test/java/tests/xml/ |
DomTest.java | 33 import org.w3c.dom.Node; 117 private Node option2Reference; // resolved to Text on RI, an EntityReference on Dalvik 125 private List<Node> allNodes; 169 allNodes = new ArrayList<Node>(); 268 for (Node node : allNodes) { 269 assertEquals(null, node.lookupNamespaceURI("xmlns")); 306 for (Node node : allNodes) { 307 assertEquals(null, node.lookupPrefix("http://unused")) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
DOMSerializer.java | 25 import org.w3c.dom.Node; 65 * Serializes the DOM node. Throws an exception only if an I/O 70 * @param node the DOM node to serialize 73 public void serialize(Node node) throws IOException;
|
/external/dbus/test/ |
shell-test.c | 19 DBusList *list = NULL, *node; local 37 for (i = 0, node = _dbus_list_get_first_link (&list); i < original_argc && node; 38 i++, node = _dbus_list_get_next_link (&list, node)) 40 original_argv[i] = node->data;
|
/external/e2fsprogs/lib/uuid/ |
unparse.c | 59 uuid.node[0], uuid.node[1], uuid.node[2], 60 uuid.node[3], uuid.node[4], uuid.node[5]);
|
/external/skia/src/views/ |
SkProgressView.cpp | 110 void SkProgressView::onInflate(const SkDOM& dom, const SkDOM::Node* node) 112 this->INHERITED::onInflate(dom, node); 119 if ((s = dom.findAttr(node, "src-on")) != NULL) 121 if ((s = dom.findAttr(node, "src-off")) != NULL) 123 (void)dom.findBool(node, "do-interp", &fDoInterp);
|
/external/srec/seti/sltsEngine/include/ |
linklist.h | 22 /* each node stores pointer to data, and pointer to next node */ 43 At return, current element will be point to newly created node 46 For now, dynamically allocate a new list node with the data 52 At return, current element will point to previous node 55 For now, dynamically free a new list node
|
/external/srec/tools/grxmlcompile/ |
grxmldoc.cpp | 117 bool GRXMLDoc::parseGrammar( XMLNode &node, std::string & xMLFileName ) 122 // The top level "document" node is given to this fn 130 parseNode( node, p_SubGraph, 1 ); // NB Subgraph pointed to will change in recursive fn. 142 bool GRXMLDoc::parseNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level ) 144 // We will create a new subgraph for each rule node. 149 // Initial processing of the current node before processing children 151 if(node.Type() == TiXmlNode::ELEMENT) 152 node.ToElement()->Print( stdout, level); 153 else if(node.Type() == TiXmlNode::DOCUMENT) 154 node.ToDocument()->Print( stdout, level) [all...] |