/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
TextTrieMap.java | 24 private Node _root = new Node(); 94 private synchronized void find(Node node, CharIterator chitr, ResultHandler<V> handler) { 95 Iterator<V> values = node.values(); 102 Node nextMatch = node.findMatch(chitr); 217 * Inner class representing a text node in the trie. 219 private class Node { 222 private List<Node> _children [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
TextTrieMap.java | 22 private Node _root = new Node(); 92 private synchronized void find(Node node, CharIterator chitr, ResultHandler<V> handler) { 93 Iterator<V> values = node.values(); 100 Node nextMatch = node.findMatch(chitr); 215 * Inner class representing a text node in the trie. 217 private class Node { 220 private List<Node> _children [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRMapElement.h | 37 id node; variable 40 @property (retain, getter=getNode, setter=setNode:) id node; variable 44 + (id) newANTLRMapElementWithNode:(NSInteger)aTType Node:(id)aNode; 45 + (id) newANTLRMapElementWithName:(NSString *)aName Node:(id)aNode; 49 - (id) initWithNode:(NSInteger)aTType Node:(id)aNode; 50 - (id) initWithName:(NSString *)aName Node:(id)aNode;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRMapElement.h | 37 id node; variable 40 @property (retain, getter=getNode, setter=setNode:) id node; variable 44 + (id) newANTLRMapElementWithNode:(NSInteger)aTType Node:(id)aNode; 45 + (id) newANTLRMapElementWithName:(NSString *)aName Node:(id)aNode; 49 - (id) initWithNode:(NSInteger)aTType Node:(id)aNode; 50 - (id) initWithName:(NSString *)aName Node:(id)aNode;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRMapElement.h | 37 id node; variable 40 @property (retain, getter=getNode, setter=setNode:) id node; variable 44 + (id) newANTLRMapElementWithNode:(NSInteger)aTType Node:(id)aNode; 45 + (id) newANTLRMapElementWithName:(NSString *)aName Node:(id)aNode; 49 - (id) initWithNode:(NSInteger)aTType Node:(id)aNode; 50 - (id) initWithName:(NSString *)aName Node:(id)aNode;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRMapElement.h | 37 id node; variable 40 @property (retain, getter=getNode, setter=setNode:) id node; variable 44 + (id) newANTLRMapElementWithNode:(NSInteger)aTType Node:(id)aNode; 45 + (id) newANTLRMapElementWithName:(NSString *)aName Node:(id)aNode; 49 - (id) initWithNode:(NSInteger)aTType Node:(id)aNode; 50 - (id) initWithName:(NSString *)aName Node:(id)aNode;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeIterator.java | 28 import org.w3c.dom.Node; 121 * and allows querying whether a given node would be permitted if it appeared 122 * as our next node, but in the current implementation that would be very 134 /** @return The root node of the NodeIterator, as specified 137 public Node getRoot() 144 /** Return a mask describing which node types are presented via the 152 /** @return the next node in the set and advance the position of the 158 public Node nextNode() throws DOMException 176 public Node previousNode()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
PrefixResolver.java | 46 * Given a namespace, get the corresponding prefix, based on the context node. 49 * @param context The node context from which to look up the URI. 54 String getNamespaceForPrefix(String prefix, org.w3c.dom.Node context);
|
/external/clang/unittests/AST/ |
MatchVerifier.h | 14 // LocationVerifier and RangeVerifier to verify whether a matched node has 68 const NodeType &Node) {} 85 /// verifier for the matched node. 132 const NodeType *Node = Result.Nodes.getNodeAs<NodeType>(""); 133 if (!Node) { 134 setFailure("Matched node has wrong type"); 138 verify(Result, *Node); 148 setFailure("Node was not bound"); 156 /// \brief Verify whether a node has the correct source location. 158 /// By default, Node.getSourceLocation() is checked. This can be change [all...] |
/external/jetty/src/java/org/eclipse/jetty/xml/ |
ConfigurationProcessor.java | 34 public void init(URL url, XmlParser.Node root, XmlConfiguration configuration);
|
/external/opencv3/modules/ml/src/ |
kdtree.hpp | 39 The node of the search tree. 41 struct Node 43 Node() : idx(-1), left(-1), right(-1), boundary(0.f) {} 44 Node(int _idx, int _left, int _right, float _boundary) 49 //! node indices of the left and the right branches 51 //! go to the left if query_vec[node.idx]<=node.boundary, otherwise go to the right 87 std::vector<Node> nodes; //!< all the tree nodes
|
/external/skia/include/animator/ |
SkAnimatorView.h | 31 virtual void onInflate(const SkDOM&, const SkDOM::Node*);
|
/external/skia/include/views/ |
SkBGViewArtist.h | 27 virtual void onInflate(const SkDOM&, const SkDOM::Node*);
|
/external/skia/src/views/ |
SkBGViewArtist.cpp | 27 void SkBGViewArtist::onInflate(const SkDOM& dom, const SkDOM::Node* node) 29 SkPaint_Inflate(&fPaint, dom, node);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/composer/ |
ComposerImplTest.java | 24 import org.yaml.snakeyaml.nodes.Node; 32 Node node = yaml.compose(new StringReader(data)); local 33 assertNotNull(node); 34 assertTrue(node instanceof MappingNode); 36 Node node2 = yaml.compose(new StringReader(data2)); 38 assertFalse(node.equals(node2)); 44 Node node = yaml.compose(new StringReader(data)); local 45 assertNotNull(node); [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/partialconstruct/ |
FragmentComposer.java | 20 import org.yaml.snakeyaml.nodes.Node; 35 public Node getSingleNode() { 36 Node node = super.getSingleNode(); local 37 if (!MappingNode.class.isAssignableFrom(node.getClass())) { 41 MappingNode root = (MappingNode) node; 43 Node keyNode = tuple.getKeyNode();
|
/external/v8/src/compiler/ |
all-nodes.h | 8 #include "src/compiler/node.h" 22 bool IsLive(Node* node) { 23 if (!node) return false; 24 size_t id = node->id();
|
fast-accessor-assembler.h | 28 class Node; 79 ValueId FromRaw(Node* node); 81 Node* FromId(ValueId value) const; 90 // Node + Label pointers integers wrapped in ValueId and LabelId instances. 92 std::vector<Node*> nodes_;
|
js-global-object-specialization.h | 44 Reduction Reduce(Node* node) final; 47 Reduction ReduceJSLoadGlobal(Node* node); 48 Reduction ReduceJSStoreGlobal(Node* node); 50 // Retrieve the global object from the given {node} if known. 51 MaybeHandle<JSGlobalObject> GetGlobalObject(Node* node);
|
node-marker.h | 8 #include "src/compiler/node.h" 23 V8_INLINE Mark Get(Node* node) { 24 Mark mark = node->mark(); 27 node->set_mark(mark_min_); 32 V8_INLINE void Set(Node* node, Mark mark) { 34 DCHECK_LT(node->mark(), mark_max_); 35 node->set_mark(mark + mark_min_); 54 V8_INLINE State Get(Node* node) [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
characterdataappenddatanomodificationallowederr.java | 32 * DOMException if the node is readonly. 68 Node genderNode; 69 Node entElement; 70 Node entElementContent; 71 Node entReference; 92 ((CharacterData) /*Node */entElementContent).appendData("newString");
|
characterdatadeletedatanomodificationallowederr.java | 32 * DOMException if the node is readonly. 68 Node genderNode; 69 Node entElement; 70 Node entElementContent; 72 Node entReference; 92 ((CharacterData) /*Node */entElementContent).deleteData(1, 3);
|
characterdatainsertdatanomodificationallowederr.java | 32 * DOMException if the node is readonly. 68 Node genderNode; 69 Node entElement; 71 Node entElementContent; 72 Node entReference; 92 ((CharacterData) /*Node */entElementContent).insertData(1, "newArg");
|
characterdatareplacedatanomodificationallowederr.java | 32 * DOMException if the node is readonly. 69 Node genderNode; 70 Node entElement; 71 Node entElementContent; 72 Node entReference; 93 ((CharacterData) /*Node */entElementContent).replaceData(1, 3, "newArg");
|
characterdatasetdatanomodificationallowederr.java | 32 * DOMException if the node is readonly. 68 Node genderNode; 69 Node entElement; 70 Node entElementContent; 71 Node entReference; 92 ((CharacterData) /*Node */entElementContent).setData("newData");
|