Home
last modified time | relevance | path

Searched refs:LinearMatchNode (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DStringTrieBuilder.java353 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()
396LinearMatchNode 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/
DStringTrieBuilder.java352 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()
395LinearMatchNode 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/
Dstringtriebuilder.cpp455 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()
Ducharstriebuilder.cpp289 : LinearMatchNode(len, nextNode), s(units) { in UCTLinearMatchNode()
298 if(!LinearMatchNode::operator==(other)) { in operator ==()
Dbytestriebuilder.cpp341 : LinearMatchNode(len, nextNode), s(bytes) { in BTLinearMatchNode()
351 if(!LinearMatchNode::operator==(other)) { in operator ==()
/external/icu/icu4c/source/common/unicode/
Dstringtriebuilder.h312 class LinearMatchNode : public ValueNode {
314 LinearMatchNode(int32_t len, Node *nextNode) in LinearMatchNode() function
Ducharstriebuilder.h153 class UCTLinearMatchNode : public LinearMatchNode {
Dbytestriebuilder.h148 class BTLinearMatchNode : public LinearMatchNode {