Home
last modified time | relevance | path

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

/aosp_15_r20/prebuilts/go/linux-x86/src/vendor/golang.org/x/text/unicode/bidi/
Dcore.go271 type directionalStatusStack struct { struct
272 stackCounter int
273 embeddingLevelStack [maxDepth + 1]level
274 overrideStatusStack [maxDepth + 1]Class
275 isolateStatusStack [maxDepth + 1]bool
278 func (s *directionalStatusStack) empty() { s.stackCounter = 0 }
279 func (s *directionalStatusStack) pop() { s.stackCounter-- }
280 func (s *directionalStatusStack) depth() int { return s.stackCounter }
282 func (s *directionalStatusStack) push(level level, overrideStatus Class, isolateStatus bool) {
289 func (s *directionalStatusStack) lastEmbeddingLevel() level {
[all …]