HomeSort by relevance Sort by last modified time
    Searched full:node (Results 326 - 350 of 4066) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDevice.java 72 * Saves the Layout Device into a document under a given node
74 * @param parentNode the parent node.
77 // create the device node
101 * Creates and returns a new NS-enabled node.
103 * @param parentNode the parent node. The new node is appended to this one as a child.
104 * @param name the name of the node.
105 * @return the newly created node.
119 * @param parent the parent node
133 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_COUNTRY_CODE) local
139 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_NETWORK_CODE); local
145 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_SCREEN_SIZE); local
151 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_SCREEN_RATIO); local
157 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_SCREEN_ORIENTATION); local
163 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_PIXEL_DENSITY); local
169 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_TOUCH_TYPE); local
175 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_KEYBOARD_STATE); local
181 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_TEXT_INPUT_METHOD); local
187 Element node = createNode(doc, configNode, LayoutDevicesXsd.NODE_NAV_METHOD); local
195 Element node = createNode(doc, sizeNode, LayoutDevicesXsd.NODE_SIZE); local
    [all...]
  /external/qemu/android/
config.h 31 /* parse a text string into a config node tree */
34 /* parse a file into a config node tree, return 0 in case of success, -1 otherwise */
37 /* save a config node tree into a file, return 0 in case of success, -1 otherwise */
40 /* create a single config node */
43 /* locate a named child of a config node */
46 /* add a named child to a config node (or modify it if it already exists) */
  /external/srec/tools/grxmlcompile/
grxmldoc.h 33 class Node;
85 bool parseGrammar( XMLNode &node, std::string & xMLFileName );
97 bool parseNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level );
98 bool beginNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level );
99 bool endNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level );
100 bool beginParseGrammarNode( XMLNode &node );
101 bool endParseGrammarNode( XMLNode &node );
102 bool beginParseMetaNode( XMLNode &node );
103 bool endParseMetaNode( XMLNode &node );
104 bool beginParseRuleNode( XMLNode &node, SubGraph *&p_SubGraph)
    [all...]
  /external/webkit/WebCore/bindings/js/
JSLazyEventListener.h 28 class Node;
32 static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld)
34 return adoptRef(new JSLazyEventListener(functionName, eventParameterName, code, node, sourceURL, lineNumber, wrapper, isolatedWorld));
39 JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld);
49 Node* m_originalNode;
  /external/webkit/WebCore/dom/
StaticNodeList.h 39 class Node;
44 static PassRefPtr<StaticNodeList> adopt(Vector<RefPtr<Node> >& nodes)
50 virtual Node* item(unsigned index) const;
51 virtual Node* itemWithName(const AtomicString&) const;
54 StaticNodeList(Vector<RefPtr<Node> >& nodes)
58 Vector<RefPtr<Node> > m_nodes;
  /external/webkit/WebCore/editing/
AppendNodeCommand.h 35 static PassRefPtr<AppendNodeCommand> create(PassRefPtr<Element> parent, PassRefPtr<Node> node)
37 return adoptRef(new AppendNodeCommand(parent, node));
41 AppendNodeCommand(PassRefPtr<Element> parent, PassRefPtr<Node> node);
47 RefPtr<Node> m_node;
InsertNodeBeforeCommand.h 35 static PassRefPtr<InsertNodeBeforeCommand> create(PassRefPtr<Node> childToInsert, PassRefPtr<Node> childToInsertBefore)
41 InsertNodeBeforeCommand(PassRefPtr<Node> childToInsert, PassRefPtr<Node> childToInsertBefore);
46 RefPtr<Node> m_insertChild;
47 RefPtr<Node> m_refChild;
DeleteSelectionCommand.h 65 virtual void removeNode(PassRefPtr<Node>);
86 RefPtr<Node> m_startBlock;
87 RefPtr<Node> m_endBlock;
90 RefPtr<Node> m_startRoot;
91 RefPtr<Node> m_endRoot;
92 RefPtr<Node> m_startTableRow;
93 RefPtr<Node> m_endTableRow;
94 RefPtr<Node> m_temporaryPlaceholder;
TextIterator.h 83 Node* node() const;
92 bool shouldEmitSpaceBeforeAndAfterNode(Node*);
98 void emitCharacter(UChar, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset);
99 void emitText(Node* textNode, int textStartOffset, int textEndOffset);
103 Node* m_node;
110 Node* m_startContainer;
112 Node* m_endContainer;
114 Node* m_pastEndNode
    [all...]
  /external/webkit/WebCore/rendering/
RenderSVGTransformableContainer.cpp 32 RenderSVGTransformableContainer::RenderSVGTransformableContainer(SVGStyledTransformableElement* node)
33 : RenderSVGContainer(node)
49 m_localTransform = static_cast<SVGStyledTransformableElement*>(node())->animatedLocalTransform();
50 if (!node()->hasTagName(SVGNames::gTag) || !static_cast<SVGGElement*>(node())->isShadowTreeContainerElement())
53 FloatSize translation = static_cast<SVGShadowTreeContainerElement*>(node())->containerTranslation();
HitTestResult.h 34 class Node;
45 Node* innerNode() const { return m_innerNode.get(); }
46 Node* innerNonSharedNode() const { return m_innerNonSharedNode.get(); }
55 void setInnerNode(Node*);
56 void setInnerNonSharedNode(Node*);
80 RefPtr<Node> m_innerNode;
81 RefPtr<Node> m_innerNonSharedNode;
90 String displayString(const String&, const Node*);
  /external/webkit/WebCore/xml/
NativeXPathNSResolver.h 32 #include "Node.h"
39 static PassRefPtr<NativeXPathNSResolver> create(PassRefPtr<Node> node) { return adoptRef(new NativeXPathNSResolver(node)); }
45 NativeXPathNSResolver(PassRefPtr<Node>);
46 RefPtr<Node> m_node;
  /external/webkit/WebKit/chromium/src/
WebEventListener.cpp 54 EventListenerWrapper* WebEventListener::createEventListenerWrapper(const WebString& eventType, bool useCapture, Node* node)
56 return m_private->createEventListenerWrapper(eventType, useCapture, node);
59 EventListenerWrapper* WebEventListener::getEventListenerWrapper(const WebString& eventType, bool useCapture, Node* node)
61 return m_private->getEventListenerWrapper(eventType, useCapture, node);
  /packages/apps/Mms/src/com/android/mms/dom/
AttrImpl.java 23 import org.w3c.dom.Node;
68 * Node Interface Methods
78 return Node.ATTRIBUTE_NODE;
82 public Node getParentNode() {
87 public Node getPreviousSibling() {
92 public Node getNextSibling() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
IUiUpdateListener.java 25 /** Update state of the UI node */
27 /** The node's attributes have been updated. They may or may not actually have changed. */
29 /** The node sub-structure (i.e. child nodes) has changed */
31 /** The XML counterpart for the UI node has just been created. */
33 /** The XML counterpart for the UI node has just been deleted.
42 * XML model. The actual UI element node may or may not have changed.
UiDocumentNode.java 23 import org.w3c.dom.Node;
26 * Represents an XML document node that can be modified by the user interface in the XML editor.
36 * @param documentDescriptor The {@link DocumentDescriptor} for the XML node. Cannot be null.
43 * Computes a short string describing the UI node suitable for tree views.
47 * @return A short string describing the UI node suitable for tree views.
55 * Computes a "breadcrumb trail" description for this node.
58 * when called on the root node itself.
59 * @return The "breadcrumb trail" description for this node.
80 * Populate this element node with all values from the given XML node
    [all...]
  /dalvik/libcore/xml/src/main/java/javax/xml/transform/dom/
package.html 11 {@link org.w3c.dom.Node} as the source of the input tree. The model of
15 derived from {@link org.w3c.dom.Node} are legal input.</p>
17 a {@link org.w3c.dom.Node} to be specified to which result DOM nodes will
18 be appended. If an output node is not specified, the transformer will use
20 output {@link org.w3c.dom.Document} node. If a node is specified, it
23 {@link org.w3c.dom.DocumentFragment}. Specification of any other node
27 <p>The {@link javax.xml.transform.dom.DOMLocator} node may be passed
  /external/clearsilver/man/man3/
hdf_copy.3 27 name -> the name of the destination node
33 src to the named node of dest. dest and src need not be
hdf_destroy.3 29 with an hdf data set. Although you can pass an HDF node
33 on the top level node.
hdf_get_valuevf.3 14 hdf_get_valuevf - Return the value of a node in the data set
25 hdf -> the dataset node to start from
hdf_set_buf.3 14 hdf_set_buf - Set the value of a node without duplicating
26 hdf -> the hdf dataset node
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
DTMIterator.java 30 * can serve both single node iteration and random access.</p>
44 * TreeWalker's "current node" semantics. However, since the base DTM
57 * Accept the node.
62 * Reject the node. Same behavior as FILTER_SKIP. (In the DOM these
69 * Skip this single node.
74 * Get an instance of a DTM that "owns" a node handle. Since a node
85 * Get an instance of the DTMManager. Since a node
94 * The root node of the <code>DTMIterator</code>, as specified when it
95 * was created. Note the root node is not the root node of the
    [all...]
  /external/webkit/WebCore/page/
EventHandler.h 58 class Node;
92 Node* mousePressNode() const;
93 void setMousePressNode(PassRefPtr<Node>);
108 void setCapturingMouseEventsNode(PassRefPtr<Node>);
126 static Frame* subframeForTargetNode(Node*);
133 bool shouldDragAutoNode(Node*, const IntPoint&) const; // -webkit-user-drag == auto
215 RefPtr<Node> m_dragSrc; // element that may be a drag source, for the current mouse gesture
227 bool canHandleDragAndDropForTarget(DragAndDropHandleType, Node* target, const PlatformMouseEvent&, Clipboard*, bool* accepted = 0);
256 static bool canMouseDownStartSelect(Node*);
258 static bool canMouseDragExtendSelect(Node*);
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/extensions/
ExpressionContext.java 26 import org.w3c.dom.Node;
37 * Get the current context node.
38 * @return The current context node.
40 public Node getContextNode();
43 * Get the current context node list.
56 * Get the value of a node as a number.
57 * @param n Node to be converted to a number. May be null.
60 public double toNumber(Node n);
63 * Get the value of a node as a string.
64 * @param n Node to be converted to a string. May be null
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-dump.h 34 /* Information about a node to be dumped. */
38 /* The index for the node. */
40 /* Nonzero if the node is a binfo. */
48 /* The queued tree node. */
49 splay_tree_node node; member in struct:dump_queue
50 /* The next node in the queue. */
61 /* The original node. */
62 const_tree node; member in struct:dump_info
65 /* The next unused node index. */
69 /* The first node in the queue of nodes to be written out. *
    [all...]

Completed in 103 milliseconds

<<11121314151617181920>>