11 overrides of Matches
Microsoft.Maui.Controls (11)
StyleSheets\Selector.cs (11)
155 public override bool Matches(IStyleSelectable styleable) => func(styleable); 166 public override bool Matches(IStyleSelectable styleable) 178 public override bool Matches(IStyleSelectable styleable) => styleable.Id == IdName; 183 public override bool Matches(IStyleSelectable styleable) => Right.Matches(styleable) || Left.Matches(styleable); 188 public override bool Matches(IStyleSelectable styleable) => Right.Matches(styleable) && Left.Matches(styleable); 199 public override bool Matches(IStyleSelectable styleable) => 211 public override bool Matches(IStyleSelectable styleable) 222 public override bool Matches(IStyleSelectable styleable) => 228 public override bool Matches(IStyleSelectable styleable) 245 public override bool Matches(IStyleSelectable styleable) 270 public override bool Matches(IStyleSelectable styleable)
13 references to Matches
Microsoft.Maui.Controls (13)
StyleSheets\Selector.cs (12)
183 public override bool Matches(IStyleSelectable styleable) => Right.Matches(styleable) || Left.Matches(styleable); 188 public override bool Matches(IStyleSelectable styleable) => Right.Matches(styleable) && Left.Matches(styleable); 223 Right.Matches(styleable) && styleable.Parent != null && Left.Matches(styleable.Parent); 230 if (!Right.Matches(styleable)) 235 if (Left.Matches(parent)) 247 if (!Right.Matches(styleable)) 256 return Left.Matches(prev); 272 if (!Right.Matches(styleable)) 297 if (Left.Matches(elem))
StyleSheets\StyleSheet.cs (1)
112 if (!selector.Matches(styleable))