Home
last modified time | relevance | path

Searched refs:native1 (Results 1 – 4 of 4) sorted by relevance

/third_party/PyYAML/tests/lib/
Dtest_representer.py11 native1 = test_constructor._load_code(file.read())
14 output = yaml.dump(native1, Dumper=test_constructor.MyDumper,
18 if native1 == native2:
22 value1 = test_constructor._serialize_value(native1)
29 assert value1 == value2, (native1, native2)
33 pprint.pprint(native1)
Dtest_constructor.py257 native1 = None
261 native1 = list(yaml.load_all(file, Loader=MyLoader))
262 if len(native1) == 1:
263 native1 = native1[0]
267 if native1 == native2:
273 print(_serialize_value(native1))
276 assert _serialize_value(native1) == _serialize_value(native2), (native1, native2)
280 pprint.pprint(native1)
Dtest_structure.py179 native1 = None
183 native1 = list(yaml.load_all(file, Loader=MyLoader))
186 assert native1 == native2, (native1, native2)
190 pprint.pprint(native1)
/third_party/jerryscript/tests/unit-ext/
Dtest-ext-arg.c335 bool native1 = false; in test_validator_prop1_handler() local
343 jerryx_arg_boolean (&native1, JERRYX_ARG_COERCE, JERRYX_ARG_REQUIRED), in test_validator_prop1_handler()
355 TEST_ASSERT (native1); in test_validator_prop1_handler()
377 bool native1 = false; in test_validator_prop2_handler() local
387 jerryx_arg_boolean (&native1, JERRYX_ARG_COERCE, JERRYX_ARG_REQUIRED), in test_validator_prop2_handler()
408 TEST_ASSERT (native1); in test_validator_prop2_handler()
428 bool native1 = false; in test_validator_prop3_handler() local
435 jerryx_arg_boolean (&native1, JERRYX_ARG_COERCE, JERRYX_ARG_REQUIRED), in test_validator_prop3_handler()
446 TEST_ASSERT (!native1); in test_validator_prop3_handler()
601 double native1 = 0; in test_validator_array1_handler() local
[all …]