• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# CMD: Returns the modules of type $arg that have property $arg2
2
3def hasPropertyWithName($a):
4  map(select(.Name == $a)) |
5  length |
6  . > 0
7;
8
9[.[] |
10select(.Type == $arg) |
11select(.Module.Android.SetProperties |
12    hasPropertyWithName($arg2)) |
13.Name] | unique | sort | .[]
14