Searched refs:LinearMatchNode (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | StringTrieBuilder.java | 353 private static final class LinearMatchNode extends ValueNode { class in StringTrieBuilder 354 public LinearMatchNode(CharSequence builderStrings, int sOffset, int len, Node nextNode) { in LinearMatchNode() method in StringTrieBuilder.LinearMatchNode 370 LinearMatchNode o=(LinearMatchNode)other; in equals() 396 … LinearMatchNode suffixNode=new LinearMatchNode(strings, i, length-prefixLength, next); in add() 432 thisSuffixNode=new LinearMatchNode( in add() 456 LinearMatchNode suffixNode= in register() 457 new LinearMatchNode(strings, nextOffset, maxLinearMatchLength, next); in register() 814 node=new LinearMatchNode(strings, offset, s.length()-start, node); in createSuffixNode()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | StringTrieBuilder.java | 352 private static final class LinearMatchNode extends ValueNode { class in StringTrieBuilder 353 public LinearMatchNode(CharSequence builderStrings, int sOffset, int len, Node nextNode) { in LinearMatchNode() method in StringTrieBuilder.LinearMatchNode 369 LinearMatchNode o=(LinearMatchNode)other; in equals() 395 … LinearMatchNode suffixNode=new LinearMatchNode(strings, i, length-prefixLength, next); in add() 431 thisSuffixNode=new LinearMatchNode( in add() 455 LinearMatchNode suffixNode= in register() 456 new LinearMatchNode(strings, nextOffset, maxLinearMatchLength, next); in register() 813 node=new LinearMatchNode(strings, offset, s.length()-start, node); in createSuffixNode()
|
/external/icu/icu4c/source/common/ |
D | stringtriebuilder.cpp | 455 StringTrieBuilder::LinearMatchNode::operator==(const Node &other) const { in operator ==() 462 const LinearMatchNode &o=(const LinearMatchNode &)other; in operator ==() 467 StringTrieBuilder::LinearMatchNode::markRightEdgesFirst(int32_t edgeNumber) { in markRightEdgesFirst()
|
D | ucharstriebuilder.cpp | 289 : LinearMatchNode(len, nextNode), s(units) { in UCTLinearMatchNode() 298 if(!LinearMatchNode::operator==(other)) { in operator ==()
|
D | bytestriebuilder.cpp | 341 : LinearMatchNode(len, nextNode), s(bytes) { in BTLinearMatchNode() 351 if(!LinearMatchNode::operator==(other)) { in operator ==()
|
/external/icu/icu4c/source/common/unicode/ |
D | stringtriebuilder.h | 312 class LinearMatchNode : public ValueNode { 314 LinearMatchNode(int32_t len, Node *nextNode) in LinearMatchNode() function
|
D | ucharstriebuilder.h | 153 class UCTLinearMatchNode : public LinearMatchNode {
|
D | bytestriebuilder.h | 148 class BTLinearMatchNode : public LinearMatchNode {
|