Home
last modified time | relevance | path

Searched defs:trieNode (Results 1 – 2 of 2) sorted by relevance

/prebuilts/go/linux-x86/src/strings/
Dreplace.go123 type trieNode struct { struct
126 value string
132 priority int
145 prefix string
146 next *trieNode
155 table []*trieNode
158 func (t *trieNode) add(key, val string, priority int, r *genericReplacer) {
Dexport_test.go18 func (r *genericReplacer) printNode(t *trieNode, depth int) (s string) {