• Home
  • Raw
  • Download

Lines Matching full:unix

316         assert_eq!(word_cfg("unix").render_short_html(), "Unix");  in test_render_short_html()
322 (word_cfg("unix") & word_cfg("windows")).render_short_html(), in test_render_short_html()
323 "Unix and Windows" in test_render_short_html()
325 assert_eq!((word_cfg("unix") | word_cfg("windows")).render_short_html(), "Unix or Windows"); in test_render_short_html()
327 (word_cfg("unix") & word_cfg("windows") & word_cfg("debug_assertions")) in test_render_short_html()
329 "Unix and Windows and debug-assertions enabled" in test_render_short_html()
332 (word_cfg("unix") | word_cfg("windows") | word_cfg("debug_assertions")) in test_render_short_html()
334 "Unix or Windows or debug-assertions enabled" in test_render_short_html()
337 (!(word_cfg("unix") | word_cfg("windows") | word_cfg("debug_assertions"))) in test_render_short_html()
339 "Neither Unix nor Windows nor debug-assertions enabled" in test_render_short_html()
342 ((word_cfg("unix") & name_value_cfg("target_arch", "x86_64")) in test_render_short_html()
345 "Unix and x86-64, or Windows and 64-bit" in test_render_short_html()
348 (!(word_cfg("unix") & word_cfg("windows"))).render_short_html(), in test_render_short_html()
349 "Not (Unix and Windows)" in test_render_short_html()
352 ((word_cfg("debug_assertions") | word_cfg("windows")) & word_cfg("unix")) in test_render_short_html()
354 "(Debug-assertions enabled or Windows) and Unix" in test_render_short_html()
371 assert_eq!(word_cfg("unix").render_long_html(), "Available on <strong>Unix</strong> only."); in test_render_long_html()
393 (word_cfg("unix") & word_cfg("windows")).render_long_html(), in test_render_long_html()
394 "Available on <strong>Unix and Windows</strong> only." in test_render_long_html()
397 (word_cfg("unix") | word_cfg("windows")).render_long_html(), in test_render_long_html()
398 "Available on <strong>Unix or Windows</strong> only." in test_render_long_html()
401 (word_cfg("unix") & word_cfg("windows") & word_cfg("debug_assertions")) in test_render_long_html()
403 "Available on <strong>Unix and Windows and debug-assertions enabled</strong> only." in test_render_long_html()
406 (word_cfg("unix") | word_cfg("windows") | word_cfg("debug_assertions")) in test_render_long_html()
408 "Available on <strong>Unix or Windows or debug-assertions enabled</strong> only." in test_render_long_html()
411 (!(word_cfg("unix") | word_cfg("windows") | word_cfg("debug_assertions"))) in test_render_long_html()
413 "Available on <strong>neither Unix nor Windows nor debug-assertions enabled</strong>." in test_render_long_html()
416 ((word_cfg("unix") & name_value_cfg("target_arch", "x86_64")) in test_render_long_html()
419 "Available on <strong>Unix and x86-64, or Windows and 64-bit</strong> only." in test_render_long_html()
422 (!(word_cfg("unix") & word_cfg("windows"))).render_long_html(), in test_render_long_html()
423 "Available on <strong>not (Unix and Windows)</strong>." in test_render_long_html()
426 ((word_cfg("debug_assertions") | word_cfg("windows")) & word_cfg("unix")) in test_render_long_html()
428 "Available on <strong>(debug-assertions enabled or Windows) and Unix</strong> only." in test_render_long_html()