Searched refs:Bool (Results 1 – 4 of 4) sorted by relevance
/development/vndk/tools/sourcedr/blueprint/tests/ |
D | test_ast.py | 23 from blueprint import Bool, Concat, Dict, Expr, Integer, List, String, VarRef 50 false_expr = Bool(False) 54 true_expr = Bool(True) 58 self.assertEqual(Bool(False), false_expr) 59 self.assertEqual(Bool(True), true_expr) 65 false_expr1 = Bool(False) 66 false_expr2 = Bool(False) 67 true_expr1 = Bool(True) 68 true_expr2 = Bool(True) 80 false_expr = Bool(False) [all …]
|
/development/tools/repo_diff/service/repodiff/ |
D | commandline.go | 7 var optionDiff = flag.Bool("execute-diff", true, "Specifies if a new (expensive) differential shoul… 8 var optionDenorm = flag.Bool("denormalize-data", true, "Specifies if existing historical data shoul… 9 var optionReport = flag.Bool("generate-report", true, "Specifies if denormalized tables should be e…
|
/development/vndk/tools/elfcheck/bpflatten/ |
D | main.go | 35 if s, ok := value.(*parser.Bool); ok { 161 outputBashFlag = flag.Bool("bash", false, "Output in bash format") 162 outputJsonFlag = flag.Bool("json", false, "Output in json format (this is the default)") 163 helpFlag = flag.Bool("help", false, "Display this message and exit")
|
/development/vndk/tools/sourcedr/blueprint/ |
D | blueprint.py | 398 class Bool(Expr): # pylint: disable=too-few-public-methods class 648 result = Bool(lexer.literal == 'true')
|