HomeSort by relevance Sort by last modified time
    Searched refs:NodeType (Results 26 - 50 of 109) sorted by null

12 3 4 5

  /external/webkit/Source/WebCore/dom/
EntityReference.cpp 44 Node::NodeType EntityReference::nodeType() const
Attr.h 69 virtual NodeType nodeType() const;
82 virtual bool childTypeAllowed(NodeType) const;
DocumentType.cpp 49 Node::NodeType DocumentType::nodeType() const
DocumentType.h 53 virtual NodeType nodeType() const;
ProcessingInstruction.h 68 virtual NodeType nodeType() const;
72 virtual bool childTypeAllowed(NodeType) const;
Attr.cpp 80 Node::NodeType Attr::nodeType() const
155 bool Attr::childTypeAllowed(NodeType type) const
  /external/webkit/Source/WebCore/webaudio/
AudioNode.h 56 enum NodeType {
73 NodeType type() const { return m_type; }
74 void setType(NodeType);
147 NodeType m_type;
  /external/webkit/Source/WebCore/xml/
XPathNamespace.h 51 virtual NodeType nodeType() const;
XPathNamespace.cpp 74 Node::NodeType XPathNamespace::nodeType() const
  /external/llvm/include/llvm/Analysis/
CallGraph.h 310 typedef CallGraphNode NodeType;
315 static NodeType *getEntryNode(CallGraphNode *CGN) { return CGN; }
317 typedef mapped_iterator<NodeType::iterator, CGNDerefFun> ChildIteratorType;
319 static inline ChildIteratorType child_begin(NodeType *N) {
322 static inline ChildIteratorType child_end (NodeType *N) {
333 typedef const CallGraphNode NodeType;
334 typedef NodeType::const_iterator ChildIteratorType;
336 static NodeType *getEntryNode(const CallGraphNode *CGN) { return CGN; }
337 static inline ChildIteratorType child_begin(NodeType *N) { return N->begin();}
338 static inline ChildIteratorType child_end (NodeType *N) { return N->end();
    [all...]
Dominators.h 183 void Calculate(DominatorTreeBase<typename GraphTraits<N>::NodeType>& DT,
227 void Split(DominatorTreeBase<typename GraphT::NodeType>& DT,
228 typename GraphT::NodeType* NewBB) {
232 typename GraphT::NodeType* NewBBSucc = *GraphT::child_begin(NewBB);
234 std::vector<typename GraphT::NodeType*> PredBlocks;
247 typename InvTraits::NodeType *ND = *PI;
567 friend typename GraphT::NodeType* Eval(
568 DominatorTreeBase<typename GraphT::NodeType>& DT,
569 typename GraphT::NodeType* V,
573 friend unsigned DFSPass(DominatorTreeBase<typename GraphT::NodeType>& DT
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineDominators.h 179 typedef MachineDomTreeNode NodeType;
180 typedef NodeType::iterator ChildIteratorType;
182 static NodeType *getEntryNode(NodeType *N) {
185 static inline ChildIteratorType child_begin(NodeType* N) {
188 static inline ChildIteratorType child_end(NodeType* N) {
195 static NodeType *getEntryNode(MachineDominatorTree *DT) {
MachineBasicBlock.h 470 typedef MachineBasicBlock NodeType;
473 static NodeType *getEntryNode(MachineBasicBlock *BB) { return BB; }
474 static inline ChildIteratorType child_begin(NodeType *N) {
477 static inline ChildIteratorType child_end(NodeType *N) {
483 typedef const MachineBasicBlock NodeType;
486 static NodeType *getEntryNode(const MachineBasicBlock *BB) { return BB; }
487 static inline ChildIteratorType child_begin(NodeType *N) {
490 static inline ChildIteratorType child_end(NodeType *N) {
502 typedef MachineBasicBlock NodeType;
504 static NodeType *getEntryNode(Inverse<MachineBasicBlock *> G)
    [all...]
  /external/chromium/chrome/common/
libxml_utils.cc 80 DCHECK(NodeType() == XML_READER_TYPE_ELEMENT);
99 while (NodeType() != XML_READER_TYPE_END_ELEMENT || Depth() != start_depth) {
106 DCHECK_EQ(NodeType(), XML_READER_TYPE_END_ELEMENT);
115 switch (NodeType()) {
libxml_utils.h 102 int NodeType() { return xmlTextReaderNodeType(reader_); }
  /external/llvm/include/llvm/
Type.h 374 typedef Type NodeType;
377 static inline NodeType *getEntryNode(Type *T) { return T; }
378 static inline ChildIteratorType child_begin(NodeType *N) {
381 static inline ChildIteratorType child_end(NodeType *N) {
387 typedef const Type NodeType;
390 static inline NodeType *getEntryNode(NodeType *T) { return T; }
391 static inline ChildIteratorType child_begin(NodeType *N) {
394 static inline ChildIteratorType child_end(NodeType *N) {
  /external/llvm/include/llvm/ADT/
Trie.h 280 typedef typename TrieType::Node NodeType;
281 typedef typename NodeType::iterator ChildIteratorType;
283 static inline NodeType *getEntryNode(const TrieType& T) {
287 static inline ChildIteratorType child_begin(NodeType *N) {
290 static inline ChildIteratorType child_end(NodeType *N) { return N->end(); }
292 typedef typename std::vector<NodeType*>::const_iterator nodes_iterator;
305 typedef typename Trie<Payload>::Node NodeType;
312 static std::string getNodeLabel(NodeType* Node, const Trie<Payload>& T) {
319 static std::string getEdgeSourceLabel(NodeType* Node, EdgeIter I) {
320 NodeType* N = *I
    [all...]
  /external/llvm/include/llvm/Support/
GraphWriter.h 58 typedef typename GTraits::NodeType NodeType;
65 bool getEdgeSourceLabels(raw_ostream &O, NodeType *Node) {
143 bool isNodeHidden(NodeType &Node) {
147 bool isNodeHidden(NodeType *const *Node) {
151 bool isNodeHidden(NodeType *Node) {
155 void writeNode(NodeType& Node) {
159 void writeNode(NodeType *const *Node) {
163 void writeNode(NodeType *Node) {
226 void writeEdge(NodeType *Node, unsigned edgeidx, child_iterator EI)
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGNode.h 66 // Entries in the NodeType enum (below) are composed of an id, a result type (possibly none)
80 // This macro defines a set of information about all known node types, used to populate NodeId, NodeType below.
155 enum NodeType {
174 Node(NodeType op, ExceptionInfo exceptionInfo, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
186 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
199 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm1, OpInfo imm2, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
331 NodeType op;
  /external/webkit/Source/WebKit/chromium/public/
WebNode.h 70 enum NodeType {
85 WEBKIT_API NodeType nodeType() const;
  /external/webkit/Source/WebKit/chromium/src/
WebNode.cpp 76 WebNode::NodeType WebNode::nodeType() const
78 return static_cast<NodeType>(m_private->nodeType());
  /external/icu4c/common/
rbbiscan.h 92 RBBINode *pushNewNode(RBBINode::NodeType t);
  /external/llvm/lib/Target/PTX/
PTXISelLowering.h 25 enum NodeType {
  /external/clang/include/clang/Analysis/
CFG.h 757 typedef ::clang::CFGBlock NodeType;
760 static NodeType* getEntryNode(::clang::CFGBlock *BB)
763 static inline ChildIteratorType child_begin(NodeType* N)
766 static inline ChildIteratorType child_end(NodeType* N)
771 typedef const ::clang::CFGBlock NodeType;
774 static NodeType* getEntryNode(const clang::CFGBlock *BB)
777 static inline ChildIteratorType child_begin(NodeType* N)
780 static inline ChildIteratorType child_end(NodeType* N)
785 typedef const ::clang::CFGBlock NodeType;
788 static NodeType *getEntryNode(Inverse<const ::clang::CFGBlock*> G
    [all...]
  /external/chromium/chrome/browser/
cookies_tree_model.h 51 // NodeType corresponds to the various CookieTreeNode types.
52 enum NodeType {
72 DetailedInfo(const string16& origin, NodeType node_type,
96 DetailedInfo(const std::wstring& origin, NodeType node_type,
122 NodeType node_type;

Completed in 1782 milliseconds

12 3 4 5