Searched refs:LinearMatchNode (Results 1 – 8 of 8) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | StringTrieBuilder.java | 351 private static final class LinearMatchNode extends ValueNode { class in StringTrieBuilder 352 public LinearMatchNode(CharSequence builderStrings, int sOffset, int len, Node nextNode) { in LinearMatchNode() method in StringTrieBuilder.LinearMatchNode 368 LinearMatchNode o=(LinearMatchNode)other; in equals() 394 … LinearMatchNode suffixNode=new LinearMatchNode(strings, i, length-prefixLength, next); in add() 430 thisSuffixNode=new LinearMatchNode( in add() 454 LinearMatchNode suffixNode= in register() 455 new LinearMatchNode(strings, nextOffset, maxLinearMatchLength, next); in register() 812 node=new LinearMatchNode(strings, offset, s.length()-start, node); in createSuffixNode()
|
/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/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() 350 if(!LinearMatchNode::operator==(other)) { in operator ==()
|
/external/icu/icu4c/source/common/unicode/ |
D | stringtriebuilder.h | 307 class LinearMatchNode : public ValueNode { 309 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 {
|