Searched refs:bool_node (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/kyua/utils/config/ |
H A D | tree_test.cpp | 138 tree.define< config::bool_node >("var3"); in ATF_TEST_CASE_BODY() 142 tree.set< config::bool_node >("var3", false); in ATF_TEST_CASE_BODY() 146 ATF_REQUIRE(!tree.lookup< config::bool_node >("var3")); in ATF_TEST_CASE_BODY() 157 tree.define< config::bool_node >("foo.3"); in ATF_TEST_CASE_BODY() 162 tree.set< config::bool_node >("foo.3", true); in ATF_TEST_CASE_BODY() 169 ATF_REQUIRE(tree.lookup< config::bool_node >("foo.3")); in ATF_TEST_CASE_BODY() 181 tree1.define< config::bool_node >("var1"); in ATF_TEST_CASE_BODY() 191 tree1.define< config::bool_node >("this.is.a.var"); in ATF_TEST_CASE_BODY() 192 tree1.set< config::bool_node >("this.is.a.var", true); in ATF_TEST_CASE_BODY() 199 tree2.set< config::bool_node >("this.is.a.var", false); in ATF_TEST_CASE_BODY() [all …]
|
H A D | lua_module_test.cpp | 126 tree.define< config::bool_node >("top_boolean"); in ATF_TEST_CASE_BODY() 140 ATF_REQUIRE_EQ(true, tree.lookup< config::bool_node >("top_boolean")); in ATF_TEST_CASE_BODY() 150 tree.define< config::bool_node >("top_boolean"); in ATF_TEST_CASE_BODY() 166 ATF_REQUIRE_EQ(true, tree.lookup< config::bool_node >("top_boolean")); in ATF_TEST_CASE_BODY() 226 tree.define< config::bool_node >("root.boolean"); in ATF_TEST_CASE_BODY() 240 ATF_REQUIRE_EQ(true, tree.lookup< config::bool_node >("root.boolean")); in ATF_TEST_CASE_BODY() 422 tree.define< config::bool_node >("static.bool"); in ATF_TEST_CASE_BODY() 438 tree.define< config::bool_node >("a.b"); in ATF_TEST_CASE_BODY()
|
H A D | nodes_test.cpp | 85 config::bool_node node; in ATF_TEST_CASE_BODY() 88 config::bool_node* copy = static_cast< config::bool_node* >(raw_copy); in ATF_TEST_CASE_BODY() 100 config::bool_node node; in ATF_TEST_CASE_BODY() 110 config::bool_node node; in ATF_TEST_CASE_BODY() 123 config::bool_node node; in ATF_TEST_CASE_BODY() 137 config::bool_node node; in ATF_TEST_CASE_BODY() 150 config::bool_node node; in ATF_TEST_CASE_BODY() 161 config::bool_node node; in ATF_TEST_CASE_BODY() 172 config::bool_node node; in ATF_TEST_CASE_BODY() 181 config::bool_node node; in ATF_TEST_CASE_BODY() [all …]
|
H A D | nodes.cpp | 442 config::bool_node::deep_copy(void) const in deep_copy() 444 std::unique_ptr< bool_node > new_node(new bool_node()); in deep_copy() 454 config::bool_node::push_lua(lutok::state& state) const in push_lua() 468 config::bool_node::set_lua(lutok::state& state, const int value_index) in set_lua()
|
H A D | nodes_fwd.hpp | 59 class bool_node;
|
H A D | nodes.hpp | 162 class bool_node : public native_leaf_node< bool > { class
|
/freebsd/contrib/kyua/model/ |
H A D | metadata.cpp | 253 tree.define< config::bool_node >("has_cleanup"); in init_tree() 254 tree.define< config::bool_node >("is_exclusive"); in init_tree() 279 tree.set< config::bool_node >("has_cleanup", false); in set_defaults() 280 tree.set< config::bool_node >("is_exclusive", false); in set_defaults() 511 return _pimpl->props.lookup< config::bool_node >("has_cleanup"); in has_cleanup() 513 return get_defaults().lookup< config::bool_node >("has_cleanup"); in has_cleanup() 537 return _pimpl->props.lookup< config::bool_node >("is_exclusive"); in is_exclusive() 539 return get_defaults().lookup< config::bool_node >("is_exclusive"); in is_exclusive() 997 set< config::bool_node >(_pimpl->props, "has_cleanup", cleanup); in set_has_cleanup() 1012 set< config::bool_node >(_pimpl->props, "is_exclusive", exclusive); in set_is_exclusive()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyInstrControl.td | 33 def : Pat<(brcond (i32 (xor bool_node:$cond, (i32 1))), bb:$dst),
|
H A D | WebAssemblyInstrInfo.td | 229 def bool_node : PatLeaf<(i32 I32:$cond), [{
|