HomeSort by relevance Sort by last modified time
    Searched refs:NODE (Results 26 - 48 of 48) sorted by null

12

  /external/libxml2/
valid.c 132 * @node: the node raising the error
142 xmlNodePtr node, xmlParserErrors error,
163 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
175 * @node: the node raising the error
185 xmlNodePtr node, xmlParserErrors error,
206 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
216 * @node: the node raising the erro
268 xmlNodePtr node; \/* pointer to the current node *\/ member in struct:_xmlValidState
353 xmlNodePtr node; \/* pointer to the current node in the list *\/ member in struct:_xmlValidState
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/
ResourcesEditor.java 34 import org.w3c.dom.Node;
47 /** Root node of the UI element hierarchy */
59 * Returns the root node of the UI element hierarchy, which
60 * here is the "resources" node.
110 * Processes the new XML Model, which XML root node is given.
125 Node node = (Node) xpath.evaluate("/" + resources_desc.getXmlName(), //$NON-NLS-1$ local
127 XPathConstants.NODE);
128 // Node can be null _or_ it must be the element we searched for
    [all...]
  /external/webp/src/enc/
quant.c 399 } Node;
407 #define NODE(n, l) (nodes[(n) + 1][(l) + MIN_DELTA])
427 Node nodes[17][NUM_NODES];
456 // initialize source node.
459 NODE(n, m).cost = 0;
460 NODE(n, m).error = max_error;
461 NODE(n, m).ctx = ctx0;
481 Node* const cur = &NODE(n, m);
490 if (level >= 2048 || level < 0) { // node is dead
562 const Node* const node = &NODE(n, best_node); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathExpressionImpl.java 38 import org.w3c.dom.Node;
121 Node contextNode = (Node)contextItem;
124 // dummy Document as Context Node
152 * @param item The starting context (node or node list, for example).
219 * @param item The starting context (node or node list, for example).
333 ( returnType.equals( XPathConstants.NODE ) ) ||
359 // XPathConstants.NODE
    [all...]
XPathImpl.java 36 import org.w3c.dom.Node;
215 if ( contextItem instanceof Node ) {
216 xobj = xpath.execute (xpathSupport, (Node)contextItem,
236 * {@link XPathConstants#NODE NODE} or
247 * @param item The starting context (node or node list, for example).
305 ( returnType.equals( XPathConstants.NODE ) ) ||
331 // XPathConstants.NODE
332 if ( returnType.equals( XPathConstants.NODE ) ) {
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 24 import org.w3c.dom.Node;
157 @Override void test(Node contextNode) {
174 @Override void test(Node contextNode) throws XPathExpressionException {
175 Node newContext = (Node) xpath.evaluate(
176 select, contextNode, XPathConstants.NODE);
187 @Override void test(Node contextNode) throws XPathExpressionException {
206 @Override void test(Node contextNode) throws XPathExpressionException {
228 Node getNode() {
231 return (Node) xpath.evaluate(select, inputSource, XPathConstants.NODE)
    [all...]
  /external/collada/include/1.4/dom/
domNode.h 38 virtual COLLADA_TYPE::TypeEnum getElementType() const { return COLLADA_TYPE::NODE; }
59 * The type attribute indicates the type of the node element. The default
60 * value is ?NODE?. Optional attribute.
64 * The layer attribute indicates the names of the layers to which this node
66 * this node belongs to both the ?foreground? layer and the ?glowing?
67 * layer. The default value is empty, indicating that the node doesn?t
74 * The node element may contain an asset element. @see domAsset
78 * The node element may contain any number of lookat elements. @see domLookat
82 * The node element may contain any number of matrix elements. @see domMatrix
86 * The node element may contain any number of rotate elements. @see domRotat
    [all...]
domTypes.h 209 * An enumerated type specifying the acceptable node types.
    [all...]
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties.c 181 NODE* pNext = NULL;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuEditor.java 34 import org.w3c.dom.Node;
47 /** Root node of the UI element hierarchy */
58 * Returns the root node of the UI element hierarchy, which here is
59 * the "menu" node.
110 * Processes the new XML Model, which XML root node is given.
131 Node node = (Node) xpath.evaluate("/" + root_desc.getXmlName(), //$NON-NLS-1$ local
133 XPathConstants.NODE);
134 if (node == null && root_desc.getMandatory() != Mandatory.NOT_MANDATORY)
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/
dhdu_linux.c 185 * To use /dev/node interface:
189 #define NODE "/dev/hnd0"
199 dnode = open(NODE, O_RDWR);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_linux.c 185 * To use /dev/node interface:
189 #define NODE "/dev/hnd0"
199 dnode = open(NODE, O_RDWR);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/
AndroidManifest.java 24 import org.w3c.dom.Node;
197 XPathConstants.NODE);
200 Node node = (Node)result; local
201 if (node.getNodeValue().length() > 0) {
  /external/opencv/cvaux/src/
cvlcm.cpp 90 #define _CV_IS_SITE_REFLEX( SITE ) ((SITE) ->node[0] == (SITE) ->node[1])
91 #define _CV_IS_EDGE_REFLEX( EDGE ) (( (EDGE)->site[0]->node[0] == (EDGE)->site[0]->node[0] ) || \
92 ( (EDGE)->site[1]->node[0] == (EDGE)->site[1]->node[0] ) )
94 #define _CV_INITIALIZE_CVLCMDATA(STRUCT,SITE,EDGE,NODE)\
95 { (STRUCT)->psite = SITE ; (STRUCT)->pedge = EDGE; (STRUCT)->pnode = NODE;}
112 // Purpose: Function constructs Complex Node (node, which consists o
    [all...]
  /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;
64 /** Root node of the UI element hierarchy */
93 * Return the root node of the UI element hierarchy, which here
94 * is the "manifest" node.
157 * Processes the new XML Model, which XML root node is given.
167 // create the ui root node on demand.
177 Node node = getManifestXmlNode(xmlDoc); local
179 if (node != null) {
180 // Refresh the manifest UI node and all its descendant
190 Node node = (Node) xpath.evaluate("\/" + manifest_desc.getXmlName(), \/\/$NON-NLS-1\$ local
209 Node node = getManifestXmlNode(getXmlDocument(model)); local
    [all...]
  /external/ppp/pppd/
ipxcp.c 138 { "ipx-node", o_special, (void *)setipxnode,
139 "Set IPX node number", OPT_A2PRINTER, (void *)printipxnode },
210 #define CILEN_NODEN 8 /* node number length option */
222 /* Used in printing the node number */
223 #define NODE(base) base[0], base[1], base[2], base[3], base[4], base[5]
319 option_error("invalid parameter '%s' for ipx-node option", *argv);
413 * Copy the node number
424 * Compare node numbers
435 * Is the node number zero?
439 zero_node (node)
    [all...]
  /external/jdiff/
xerces.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 1669 milliseconds

12