Home
last modified time | relevance | path

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

/external/syzkaller/vendor/golang.org/x/text/unicode/bidi/
Dcore.go261 type directionalStatusStack struct { struct
262 stackCounter int
263 embeddingLevelStack [maxDepth + 1]level
264 overrideStatusStack [maxDepth + 1]Class
265 isolateStatusStack [maxDepth + 1]bool
268 func (s *directionalStatusStack) empty() { s.stackCounter = 0 }
269 func (s *directionalStatusStack) pop() { s.stackCounter-- }
270 func (s *directionalStatusStack) depth() int { return s.stackCounter }
272 func (s *directionalStatusStack) push(level level, overrideStatus Class, isolateStatus bool) {
279 func (s *directionalStatusStack) lastEmbeddingLevel() level {
[all …]