HomeSort by relevance Sort by last modified time
    Searched full:nodetype (Results 1 - 25 of 470) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExtendedType.java 29 private int nodetype; field in class:ExtendedType
38 * @param nodetype Type of the node
42 public ExtendedType (int nodetype, String namespace, String localName)
44 this.nodetype = nodetype;
47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
54 * @param nodetype Type of the node
59 public ExtendedType (int nodetype, String namespace, String localName, int hash)
61 this.nodetype = nodetype;
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
canonicalform08.js 102 var nodeType;
124 nodeType = node.nodeType;
126 assertEquals("PIisFirstChild",7,nodeType);
133 nodeType = node.nodeType;
135 assertEquals("TextisSecondChild",3,nodeType);
142 nodeType = node.nodeType;
144 assertEquals("ElementisThirdChild",1,nodeType);
    [all...]
canonicalform09.js 103 var nodeType;
126 nodeType = node.nodeType;
128 assertEquals("PIisFirstChild",7,nodeType);
135 nodeType = node.nodeType;
137 assertEquals("TextisSecondChild",3,nodeType);
144 nodeType = node.nodeType;
146 assertEquals("ElementisThirdChild",1,nodeType);
    [all...]
documentrenamenode15.js 79 nodeName, namespaceURI, nodeType attributes of the renamed node.
93 var nodeType;
108 nodeType = renamedclass.nodeType;
111 assertEquals("documentrenamenode15_nodeType",1,nodeType);
  /external/llvm/include/llvm/Support/
DataFlow.h 27 typedef const Value NodeType;
30 static NodeType *getEntryNode(const Value *G) {
34 static inline ChildIteratorType child_begin(NodeType *N) {
38 static inline ChildIteratorType child_end(NodeType *N) {
44 typedef Value NodeType;
47 static NodeType *getEntryNode(Value *G) {
51 static inline ChildIteratorType child_begin(NodeType *N) {
55 static inline ChildIteratorType child_end(NodeType *N) {
61 typedef const Value NodeType;
64 static NodeType *getEntryNode(Inverse<const User*> G)
    [all...]
  /external/llvm/include/llvm/Analysis/
RegionIterator.h 33 template<class NodeType>
35 NodeType, ptrdiff_t>
37 typedef std::iterator<std::forward_iterator_tag, NodeType, ptrdiff_t> super;
50 PointerIntPair<NodeType*, 2, enum ItMode> Node;
62 NodeType* getNode() const{ return Node.getPointer(); }
87 typedef RNSuccIterator<NodeType> Self;
92 inline RNSuccIterator(NodeType* node)
107 inline RNSuccIterator(NodeType* node, bool)
165 template<class NodeType>
166 class RNSuccIterator<FlatIt<NodeType> >
    [all...]
DominatorInternals.h 34 unsigned DFSPass(DominatorTreeBase<typename GraphT::NodeType>& DT,
35 typename GraphT::NodeType* V, unsigned N) {
56 SmallVector<std::pair<typename GraphT::NodeType*,
60 typename GraphT::NodeType* BB = Worklist.back().first;
63 typename DominatorTreeBase<typename GraphT::NodeType>::InfoRec &BBInfo =
93 typename GraphT::NodeType* Succ = *NextSucc;
95 typename DominatorTreeBase<typename GraphT::NodeType>::InfoRec &SuccVInfo =
107 typename GraphT::NodeType*
108 Eval(DominatorTreeBase<typename GraphT::NodeType>& DT,
109 typename GraphT::NodeType *VIn, unsigned LastLinked)
    [all...]
  /external/clang/include/clang/AST/
StmtGraphTraits.h 28 typedef clang::Stmt NodeType;
32 static NodeType* getEntryNode(clang::Stmt* S) { return S; }
34 static inline ChildIteratorType child_begin(NodeType* N) {
39 static inline ChildIteratorType child_end(NodeType* N) {
55 typedef const clang::Stmt NodeType;
59 static NodeType* getEntryNode(const clang::Stmt* S) { return S; }
61 static inline ChildIteratorType child_begin(NodeType* N) {
66 static inline ChildIteratorType child_end(NodeType* N) {
  /external/llvm/include/llvm/ADT/
PostOrderIterator.h 58 template<typename NodeType>
59 bool insertEdge(NodeType *From, NodeType *To) {
64 template<typename NodeType>
65 void finishPostorder(NodeType *BB) {}
79 template<class NodeType>
80 bool insertEdge(NodeType *From, NodeType *To) { return Visited.insert(To); }
83 template<class NodeType>
84 void finishPostorder(NodeType *BB) {
    [all...]
GraphTraits.h 30 // typedef NodeType - Type of Node in the graph
33 // static NodeType *getEntryNode(const GraphType &)
36 // static ChildIteratorType child_begin(NodeType *)
37 // static ChildIteratorType child_end (NodeType *)
60 typedef typename GraphType::UnknownGraphTypeError NodeType;
88 typedef typename GraphTraits<T>::NodeType NodeType;
91 static NodeType *getEntryNode(Inverse<Inverse<T> > *G) {
95 static ChildIteratorType child_begin(NodeType* N) {
99 static ChildIteratorType child_end(NodeType* N)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
cookie_tree_node.mm 32 - (CocoaCookieDetailsType)nodeType {
59 return [self nodeType] != kCocoaCookieDetailsTypeFolder;
64 @"<CocoaCookieTreeNode @ %p (title=%@, nodeType=%d, childCount=%u)";
66 [self nodeType], [[self children] count]];
  /external/clang/unittests/AST/
MatchVerifier.h 31 template <typename NodeType>
47 const NodeType &Node) {}
65 template <typename NodeType> template <typename MatcherType>
66 testing::AssertionResult MatchVerifier<NodeType>::match(
101 template <typename NodeType>
102 void MatchVerifier<NodeType>::run(const MatchFinder::MatchResult &Result) {
103 const NodeType *Node = Result.Nodes.getNodeAs<NodeType>("");
117 template <typename NodeType>
118 class LocationVerifier : public MatchVerifier<NodeType> {
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 162 /// The variables are the same as for AST_MATCHER, but NodeType will be deduced
169 template <typename NodeType> \
171 : public MatcherInterface<NodeType> { \
173 virtual bool matches(const NodeType &Node, ASTMatchFinder *Finder, \
182 template <typename NodeType> \
184 NodeType>::matches(const NodeType &Node, ASTMatchFinder *Finder, \
192 /// AST_MATCHER_P, with the addition of NodeType, which specifies the node type
193 /// of the matcher Matcher<NodeType> returned by the function matcher().
202 template <typename NodeType, typename ParamT>
    [all...]
  /external/webkit/Source/WebCore/dom/
CDATASection.h 38 virtual NodeType nodeType() const;
40 virtual bool childTypeAllowed(NodeType) const;
Comment.cpp 44 Node::NodeType Comment::nodeType() const
54 bool Comment::childTypeAllowed(NodeType) const
Comment.h 38 virtual NodeType nodeType() const;
40 virtual bool childTypeAllowed(NodeType) const;
DocumentFragment.h 44 virtual NodeType nodeType() const;
46 virtual bool childTypeAllowed(NodeType) const;
Notation.cpp 41 Node::NodeType Notation::nodeType() const
52 bool Notation::childTypeAllowed(NodeType) const
Notation.h 40 virtual NodeType nodeType() const;
42 virtual bool childTypeAllowed(NodeType) const;
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodedocumentfragmentnodetype.js 82 examine the NodeType of the document fragment
95 var nodeType;
103 nodeType = documentFragmentNode.nodeType;
105 assertEquals("nodeDocumentFragmentNodeTypeAssert1",11,nodeType);
hc_nodecommentnodetype.js 97 var nodeType;
114 nodeType = commentNode.nodeType;
116 assertEquals("existingCommentNodeType",8,nodeType);
122 nodeType = commentNode.nodeType;
124 assertEquals("createdCommentNodeType",8,nodeType);
hc_elementgetelementsbytagnameaccessnodelist.js 103 var nodeType;
116 nodeType = firstC.nodeType;
120 (3 == nodeType)
124 nodeType = firstC.nodeType;
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodedocumentfragmentnodetype.js 82 examine the NodeType of the document fragment
95 var nodeType;
103 nodeType = documentFragmentNode.nodeType;
105 assertEquals("nodeDocumentFragmentNodeTypeAssert1",11,nodeType);
hc_nodecommentnodetype.js 97 var nodeType;
114 nodeType = commentNode.nodeType;
116 assertEquals("existingCommentNodeType",8,nodeType);
122 nodeType = commentNode.nodeType;
124 assertEquals("createdCommentNodeType",8,nodeType);
hc_elementgetelementsbytagnameaccessnodelist.js 103 var nodeType;
116 nodeType = firstC.nodeType;
120 (3 == nodeType)
124 nodeType = firstC.nodeType;

Completed in 2525 milliseconds

1 2 3 4 5 6 7 8 91011>>