HomeSort by relevance Sort by last modified time
    Searched defs:NodeType (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/dom/
nodetype.js 16 * @fileoverview Definition of goog.dom.NodeType.
19 goog.provide('goog.dom.NodeType');
23 * Constants for the nodeType attribute in the Node interface.
35 goog.dom.NodeType = {
  /external/smack/src/org/jivesoftware/smackx/pubsub/
NodeType.java 21 public enum NodeType
  /external/llvm/include/llvm/ADT/
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...]
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...]
SCCIterator.h 43 const std::vector<typename GT::NodeType *>, ptrdiff_t> {
44 typedef typename GT::NodeType NodeType;
46 typedef std::vector<NodeType *> SccTy;
51 NodeType *Node; ///< The current node pointer.
55 StackElement(NodeType *Node, const ChildItTy &Child, unsigned Min)
70 DenseMap<NodeType *, unsigned> nodeVisitNumbers;
73 std::vector<NodeType *> SCCNodeStack;
83 void DFSVisitOne(NodeType *N);
91 scc_iterator(NodeType *entryN) : visitNum(0)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/js/
call_function.js 18 var NodeType = {
146 var nodeType = value['nodeType'];
147 if (nodeType == NodeType.ELEMENT || nodeType == NodeType.DOCUMENT
  /external/chromium_org/ui/views/examples/
tree_view_example.h 78 typedef ui::TreeNodeWithValue<int> NodeType;
80 ui::TreeNodeModel<NodeType> model_;
  /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/unittests/ADT/
SCCIteratorTest.cpp 97 /// NodeType - Node index and set of children of the node.
98 typedef std::pair<unsigned, NodeSubset> NodeType;
102 NodeType Nodes[N];
128 NodeType *AccessNode(unsigned Idx) const {
132 return const_cast<NodeType *>(&Nodes[Idx]);
165 NodeType *FirstNode;
172 ChildIterator(NodeType *F, NodeSubset C) : FirstNode(F), Children(C) {}
209 NodeType *operator*() {
222 static ChildIterator child_begin(NodeType *Parent) {
227 static ChildIterator child_end(NodeType *Parent)
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeAllocator.h 35 typedef Node<DataType> NodeType;
41 NodeType* produce() {
42 NodeType* result = Alloc::allocate();
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 12 } NodeType;
51 NSInteger nodeType; /* 1 = node, 2 = leaf, -1 = unused */
67 @property (assign) NSInteger nodeType;
  /external/chromium_org/third_party/WebKit/public/web/
WebNode.h 76 enum NodeType {
93 BLINK_EXPORT NodeType nodeType() const;
  /external/chromium_org/third_party/libxml/chromium/
libxml_utils.h 96 int NodeType() { return xmlTextReaderNodeType(reader_); }
  /external/llvm/include/llvm/Analysis/
Interval.h 122 typedef Interval NodeType;
125 static NodeType *getEntryNode(Interval *I) { return I; }
128 static inline ChildIteratorType child_begin(NodeType *N) {
131 static inline ChildIteratorType child_end(NodeType *N) {
137 typedef Interval NodeType;
139 static NodeType *getEntryNode(Inverse<Interval *> G) { return G.Graph; }
140 static inline ChildIteratorType child_begin(NodeType *N) {
143 static inline ChildIteratorType child_end(NodeType *N) {
  /external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 164 typedef const MachineLoop NodeType;
167 static NodeType *getEntryNode(const MachineLoop *L) { return L; }
168 static inline ChildIteratorType child_begin(NodeType *N) {
171 static inline ChildIteratorType child_end(NodeType *N) {
177 typedef MachineLoop NodeType;
180 static NodeType *getEntryNode(MachineLoop *L) { return L; }
181 static inline ChildIteratorType child_begin(NodeType *N) {
184 static inline ChildIteratorType child_end(NodeType *N) {
MachineDominators.h 182 typedef MachineDomTreeNode NodeType;
183 typedef NodeType::iterator ChildIteratorType;
185 static NodeType *getEntryNode(NodeType *N) {
188 static inline ChildIteratorType child_begin(NodeType* N) {
191 static inline ChildIteratorType child_end(NodeType* N) {
198 static NodeType *getEntryNode(MachineDominatorTree *DT) {
  /external/llvm/include/llvm/IR/
Dominators.h 39 DominatorTreeBase<GraphTraits<BasicBlock *>::NodeType> &DT LLVM_COMMA
43 DominatorTreeBase<GraphTraits<Inverse<BasicBlock *> >::NodeType> &DT
118 typedef DomTreeNode NodeType;
119 typedef NodeType::iterator ChildIteratorType;
121 static NodeType *getEntryNode(NodeType *N) {
124 static inline ChildIteratorType child_begin(NodeType *N) {
127 static inline ChildIteratorType child_end(NodeType *N) {
144 static NodeType *getEntryNode(DominatorTree *DT) {
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.h 29 enum NodeType {
  /external/chromium_org/third_party/WebKit/Source/wtf/
TreeNode.h 52 typedef T NodeType;
63 NodeType* next() const { return m_next; }
64 NodeType* previous() const { return m_previous; }
65 NodeType* parent() const { return m_parent; }
66 NodeType* firstChild() const { return m_firstChild; }
67 NodeType* lastChild() const { return m_lastChild; }
68 NodeType* here() const { return static_cast<NodeType*>(const_cast<TreeNode*>(this)); }
73 void insertBefore(NodeType* newChild, NodeType* refChild
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 172 typedef ::clang::DomTreeNode NodeType;
173 typedef NodeType::iterator ChildIteratorType;
175 static NodeType *getEntryNode(NodeType *N) {
178 static inline ChildIteratorType child_begin(NodeType *N) {
181 static inline ChildIteratorType child_end(NodeType *N) {
198 static NodeType *getEntryNode(::clang::DominatorTree *DT) {
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 53 typedef const BasicBlock NodeType;
57 static inline const NodeType *getEntryNode(const BlockFrequencyInfo *G) {
60 static ChildIteratorType child_begin(const NodeType *N) {
63 static ChildIteratorType child_end(const NodeType *N) {
  /external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 54 typedef const MachineBasicBlock NodeType;
59 const NodeType *getEntryNode(const MachineBlockFrequencyInfo *G) {
63 static ChildIteratorType child_begin(const NodeType *N) {
67 static ChildIteratorType child_end(const NodeType *N) {
  /external/chromium_org/net/spdy/
spdy_priority_forest.h 113 enum NodeType { ROOT_NODE, NONROOT_ORDERED, NONROOT_UNORDERED };
118 NodeType type;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.h 69 enum NodeType {
97 NodeType nodeType() const { return m_nodeType; }
99 void setNodeType(NodeType);
205 NodeType m_nodeType;
  /external/chromium_org/third_party/icu/source/common/
rbbinode.h 27 enum NodeType {
54 NodeType fType;
87 RBBINode(NodeType t);
94 void findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status);

Completed in 985 milliseconds

1 2 3