Home
last modified time | relevance | path

Searched refs:TEST_VALUE_2 (Results 1 – 12 of 12) sorted by relevance

/external/dtc/tests/
Dsetprop.c76 err = fdt_setprop_u32(fdt, 0, "prop-u32", TEST_VALUE_2); in main()
79 TEST_VALUE_2, fdt_strerror(err)); in main()
80 check_getprop_cell(fdt, 0, "prop-u32", TEST_VALUE_2); in main()
82 err = fdt_setprop_cell(fdt, 0, "prop-cell", TEST_VALUE_2); in main()
85 TEST_VALUE_2, fdt_strerror(err)); in main()
86 check_getprop_cell(fdt, 0, "prop-cell", TEST_VALUE_2); in main()
Dadd_subnode_with_nops.c63 CHECK(fdt_property_cell(fdt, "prop2", TEST_VALUE_2)); in main()
73 check_getprop_cell(fdt, 0, "prop2", TEST_VALUE_2); in main()
77 check_getprop_cell(fdt, 0, "prop2", TEST_VALUE_2); in main()
81 check_getprop_cell(fdt, 0, "prop2", TEST_VALUE_2); in main()
Dnop_node.c51 check_getprop_cell(fdt, subnode2_offset, "prop-int", TEST_VALUE_2); in main()
57 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
73 check_getprop_cell(fdt, subnode2_offset, "prop-int", TEST_VALUE_2); in main()
79 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
Ddel_node.c56 check_getprop_cell(fdt, subnode2_offset, "prop-int", TEST_VALUE_2); in main()
62 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
78 check_getprop_cell(fdt, subnode2_offset, "prop-int", TEST_VALUE_2); in main()
84 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
Dsubnode_offset.c74 check_property_cell(fdt, subnode2_offset, "prop-int", TEST_VALUE_2); in main()
81 check_property_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
82 check_property_cell(fdt, subsubnode2_offset2, "prop-int", TEST_VALUE_2); in main()
Drw_tree1.c82 CHECK(fdt_setprop_cell(fdt, s2, "prop-int", TEST_VALUE_2)); in main()
87 CHECK(fdt_setprop_cell(fdt, offset, "prop-int", TEST_VALUE_2)); in main()
Dsw_tree1.c152 CHECK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_2)); in main()
160 CHECK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_2)); in main()
Dtestdata.h13 #define TEST_VALUE_2 123456789 macro
Dtrees.S117 PROP_INT(test_tree1, prop_int, TEST_VALUE_2)
125 PROP_INT(test_tree1, prop_int, TEST_VALUE_2)
Dappendprop2.c55 CHECK(fdt_appendprop_cell(fdt, 0, "prop-int", TEST_VALUE_2)); in main()
Dnode_offset_by_prop_value.c98 check_search_cell(fdt, "prop-int", TEST_VALUE_2, subnode2_offset, in main()
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DContinuingHttpServletRequestTest.java31 private static final String TEST_VALUE_2 = "testValue2"; field in ContinuingHttpServletRequestTest
71 assertEquals(TEST_VALUE_2, continuingRequest.getCookies()[1].getValue()); in testReturnDelegateCookies()