Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 2 of 2) sorted by relevance

/hal_rpi_pico-latest/bazel/util/
Dlabel_flag_matches.bzl7 matches = str(ctx.attr.expected_value.label) == str(ctx.attr.flag.label)
9 config_common.FeatureFlagInfo(value = str(matches)),
10 BuildSettingInfo(value = matches),
/hal_rpi_pico-latest/tools/
Dcompare_build_systems.py169 def matches(self, other): member in Option
170 matches = (self.name == other.name) and (self.attrs == other.attrs)
172 matches = matches and (self.description == other.description)
173 return matches
213 elif not bazel_option.matches(cmake_option):