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.java351 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()
394LinearMatchNode 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/android_icu4j/src/main/java/android/icu/util/
DStringTrieBuilder.java349 private static final class LinearMatchNode extends ValueNode { class in StringTrieBuilder
350 public LinearMatchNode(CharSequence builderStrings, int sOffset, int len, Node nextNode) { in LinearMatchNode() method in StringTrieBuilder.LinearMatchNode
366 LinearMatchNode o=(LinearMatchNode)other; in equals()
392LinearMatchNode suffixNode=new LinearMatchNode(strings, i, length-prefixLength, next); in add()
428 thisSuffixNode=new LinearMatchNode( in add()
452 LinearMatchNode suffixNode= in register()
453 new LinearMatchNode(strings, nextOffset, maxLinearMatchLength, next); in register()
810 node=new LinearMatchNode(strings, offset, s.length()-start, node); in createSuffixNode()
/external/icu/icu4c/source/common/
Dstringtriebuilder.cpp453 StringTrieBuilder::LinearMatchNode::operator==(const Node &other) const { in operator ==()
460 const LinearMatchNode &o=(const LinearMatchNode &)other; in operator ==()
465 StringTrieBuilder::LinearMatchNode::markRightEdgesFirst(int32_t edgeNumber) { in markRightEdgesFirst()
Ducharstriebuilder.cpp287 : LinearMatchNode(len, nextNode), s(units) { in UCTLinearMatchNode()
296 if(!LinearMatchNode::operator==(other)) { in operator ==()
Dbytestriebuilder.cpp339 : LinearMatchNode(len, nextNode), s(bytes) { in BTLinearMatchNode()
348 if(!LinearMatchNode::operator==(other)) { in operator ==()
/external/icu/icu4c/source/common/unicode/
Dstringtriebuilder.h296 class LinearMatchNode : public ValueNode {
298 LinearMatchNode(int32_t len, Node *nextNode) in LinearMatchNode() function
Ducharstriebuilder.h151 class UCTLinearMatchNode : public LinearMatchNode {
Dbytestriebuilder.h147 class BTLinearMatchNode : public LinearMatchNode {