Home
last modified time | relevance | path

Searched refs:is (Results 1 – 25 of 15527) sorted by relevance

12345678910>>...622

/external/iproute2/testsuite/configs/
Dall-2.45 # CONFIG_SBUS is not set
23 # CONFIG_M386 is not set
24 # CONFIG_M486 is not set
25 # CONFIG_M586 is not set
26 # CONFIG_M586TSC is not set
27 # CONFIG_M586MMX is not set
28 # CONFIG_M686 is not set
29 # CONFIG_MPENTIUMIII is not set
31 # CONFIG_MK6 is not set
32 # CONFIG_MK7 is not set
[all …]
Dall-no-act26 # CONFIG_BSD_PROCESS_ACCT is not set
35 # CONFIG_EMBEDDED is not set
37 # CONFIG_KALLSYMS_ALL is not set
38 # CONFIG_KALLSYMS_EXTRA_PASS is not set
41 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
47 # CONFIG_TINY_SHMEM is not set
56 # CONFIG_MODVERSIONS is not set
57 # CONFIG_MODULE_SRCVERSION_ALL is not set
65 # CONFIG_X86_ELAN is not set
66 # CONFIG_X86_VOYAGER is not set
[all …]
Dall-police-act26 # CONFIG_BSD_PROCESS_ACCT is not set
35 # CONFIG_EMBEDDED is not set
37 # CONFIG_KALLSYMS_ALL is not set
38 # CONFIG_KALLSYMS_EXTRA_PASS is not set
41 # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
47 # CONFIG_TINY_SHMEM is not set
56 # CONFIG_MODVERSIONS is not set
57 # CONFIG_MODULE_SRCVERSION_ALL is not set
65 # CONFIG_X86_ELAN is not set
66 # CONFIG_X86_VOYAGER is not set
[all …]
/external/toybox/
D.config-mac9 # CONFIG_TOYBOX_ANDROID_SCHEDPOLICY is not set
10 # CONFIG_TOYBOX_CONTAINER is not set
11 # CONFIG_TOYBOX_DEBUG is not set
12 # CONFIG_TOYBOX_FALLOCATE is not set
13 # CONFIG_TOYBOX_FIFREEZE is not set
16 # CONFIG_TOYBOX_FREE is not set
17 # CONFIG_TOYBOX_GETRANDOM is not set
25 # CONFIG_TOYBOX_MUSL_NOMMU_IS_BROKEN is not set
26 # CONFIG_TOYBOX_NORECURSE is not set
27 # CONFIG_TOYBOX_ON_ANDROID is not set
[all …]
D.config-linux9 # CONFIG_TOYBOX_ANDROID_SCHEDPOLICY is not set
10 # CONFIG_TOYBOX_CONTAINER is not set
11 # CONFIG_TOYBOX_DEBUG is not set
12 # CONFIG_TOYBOX_FALLOCATE is not set
13 # CONFIG_TOYBOX_FIFREEZE is not set
16 # CONFIG_TOYBOX_FREE is not set
17 # CONFIG_TOYBOX_GETRANDOM is not set
25 # CONFIG_TOYBOX_MUSL_NOMMU_IS_BROKEN is not set
26 # CONFIG_TOYBOX_NORECURSE is not set
27 # CONFIG_TOYBOX_ON_ANDROID is not set
[all …]
D.config-device11 # CONFIG_TOYBOX_DEBUG is not set
16 # CONFIG_TOYBOX_FREE is not set
17 # CONFIG_TOYBOX_GETRANDOM is not set
24 # CONFIG_TOYBOX_LSM_NONE is not set
25 # CONFIG_TOYBOX_MUSL_NOMMU_IS_BROKEN is not set
29 # CONFIG_TOYBOX_PEDANTIC_ARGS is not set
31 # CONFIG_TOYBOX_SHADOW is not set
32 # CONFIG_TOYBOX_SMACK is not set
33 # CONFIG_TOYBOX_SUID is not set
36 # CONFIG_TOYBOX_UTMPX is not set
[all …]
/external/rust/crates/bindgen/src/codegen/
Dbitfield_unit_tests.rs80 With $storage:expr , then get($start:expr, $len:expr) is $expected:expr;
104 With [0b11100010], then get(0, 1) is 0;
105 With [0b11100010], then get(1, 1) is 1;
106 With [0b11100010], then get(2, 1) is 0;
107 With [0b11100010], then get(3, 1) is 0;
108 With [0b11100010], then get(4, 1) is 0;
109 With [0b11100010], then get(5, 1) is 1;
110 With [0b11100010], then get(6, 1) is 1;
111 With [0b11100010], then get(7, 1) is 1;
113 With [0b11100010], then get(0, 2) is 0b10;
[all …]
/external/pdfium/testing/resources/javascript/
Dlistbox_methods_expected.txt1 Alert: Value is: string
2 Alert: Answer for "foo" is: string foo
3 Alert: Answer for "bar" is: string bar
4 Alert: Answer for "qux" is: string qux
5 Alert: Answer for "bar" is: string bar
6 Alert: Answer for "qux" is: string qux
7 Alert: Value is: string qux
8 Alert: Answer for "" is: string
9 Alert: Answer for "goats" is: string
10 Alert: Answer for "b4" is: string
[all …]
Dconsts_expected.txt1 Alert: border.s is solid
2 Alert: border.b is beveled
3 Alert: border.d is dashed
4 Alert: border.i is inset
5 Alert: border.u is underline
6 Alert: border.nonesuch is undefined
7 Alert: display.visible is 0
8 Alert: display.hidden is 1
9 Alert: display.noPrint is 2
10 Alert: display.noView is 3
[all …]
/external/llvm-project/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
Dget_pointer_size.pass.cpp55 std::istream is(&sb); in main() local
57 is.get(s, 5); in main()
58 assert(!is.eof()); in main()
59 assert(!is.fail()); in main()
61 assert(is.gcount() == 2); in main()
62 is.get(s, 5); in main()
63 assert(!is.eof()); in main()
64 assert( is.fail()); in main()
66 assert(is.gcount() == 0); in main()
67 is.clear(); in main()
[all …]
Dget_pointer_size_chart.pass.cpp55 std::istream is(&sb); in main() local
57 is.get(s, 5, '*'); in main()
58 assert(!is.eof()); in main()
59 assert(!is.fail()); in main()
61 assert(is.gcount() == 2); in main()
62 is.get(s, 5, '*'); in main()
63 assert(!is.eof()); in main()
64 assert( is.fail()); in main()
66 assert(is.gcount() == 0); in main()
67 is.clear(); in main()
[all …]
Dputback.pass.cpp46 std::istream is(&sb); in main() local
47 is.get(); in main()
48 is.get(); in main()
49 is.get(); in main()
50 is.putback('a'); in main()
51 assert(is.bad()); in main()
52 assert(is.gcount() == 0); in main()
53 is.clear(); in main()
54 is.putback('2'); in main()
55 assert(is.good()); in main()
[all …]
Dget.pass.cpp52 std::istream is(&sb); in main() local
53 char c = static_cast<char>(is.get()); in main()
54 assert(!is.eof()); in main()
55 assert(!is.fail()); in main()
57 assert(is.gcount() == 1); in main()
61 std::istream is(&sb); in main() local
62 char c = static_cast<char>(is.get()); in main()
63 assert(!is.eof()); in main()
64 assert(!is.fail()); in main()
66 assert(is.gcount() == 1); in main()
[all …]
Dgetline_pointer_size.pass.cpp55 std::istream is(&sb); in main() local
57 is.getline(s, 5); in main()
58 assert(!is.eof()); in main()
59 assert(!is.fail()); in main()
61 assert(is.gcount() == 3); in main()
62 is.getline(s, 5); in main()
63 assert(!is.eof()); in main()
64 assert(!is.fail()); in main()
66 assert(is.gcount() == 5); in main()
67 is.getline(s, 5); in main()
[all …]
Dgetline_pointer_size_chart.pass.cpp55 std::istream is(&sb); in main() local
57 is.getline(s, 5, '*'); in main()
58 assert(!is.eof()); in main()
59 assert(!is.fail()); in main()
61 assert(is.gcount() == 3); in main()
62 is.getline(s, 5, '*'); in main()
63 assert(!is.eof()); in main()
64 assert(!is.fail()); in main()
66 assert(is.gcount() == 5); in main()
67 is.getline(s, 5, '*'); in main()
[all …]
Dget_chart.pass.cpp52 std::istream is(&sb); in main() local
54 is.get(c); in main()
55 assert(!is.eof()); in main()
56 assert(!is.fail()); in main()
58 assert(is.gcount() == 1); in main()
62 std::istream is(&sb); in main() local
64 is.get(c); in main()
65 assert(!is.eof()); in main()
66 assert(!is.fail()); in main()
68 assert(is.gcount() == 1); in main()
[all …]
Dunget.pass.cpp46 std::istream is(&sb); in main() local
47 is.get(); in main()
48 is.get(); in main()
49 is.get(); in main()
50 is.unget(); in main()
51 assert(is.good()); in main()
52 assert(is.gcount() == 0); in main()
53 is.unget(); in main()
54 assert(is.good()); in main()
55 assert(is.gcount() == 0); in main()
[all …]
/external/llvm-project/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
Dwchar_t_pointer.pass.cpp46 std::istream is(&sb); in main() local
48 is >> s; in main()
49 assert(!is.eof()); in main()
50 assert(!is.fail()); in main()
56 std::istream is(&sb); in main() local
58 is >> s; in main()
59 assert(!is.eof()); in main()
60 assert(!is.fail()); in main()
66 std::wistream is(&sb); in main() local
67 is.width(4); in main()
[all …]
Dchart.pass.cpp46 std::istream is(&sb); in main() local
48 is >> c; in main()
49 assert( is.eof()); in main()
50 assert( is.fail()); in main()
55 std::istream is(&sb); in main() local
57 is >> c; in main()
58 assert(!is.eof()); in main()
59 assert(!is.fail()); in main()
61 is >> c; in main()
62 assert(!is.eof()); in main()
[all …]
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
Dget_pointer_size_chart.pass.cpp56 std::istream is(&sb); in main() local
58 is.get(s, 5, '*'); in main()
59 assert(!is.eof()); in main()
60 assert(!is.fail()); in main()
62 assert(is.gcount() == 2); in main()
63 is.get(s, 5, '*'); in main()
64 assert(!is.eof()); in main()
65 assert( is.fail()); in main()
67 assert(is.gcount() == 0); in main()
68 is.clear(); in main()
[all …]
Dget_pointer_size.pass.cpp56 std::istream is(&sb); in main() local
58 is.get(s, 5); in main()
59 assert(!is.eof()); in main()
60 assert(!is.fail()); in main()
62 assert(is.gcount() == 2); in main()
63 is.get(s, 5); in main()
64 assert(!is.eof()); in main()
65 assert( is.fail()); in main()
67 assert(is.gcount() == 0); in main()
68 is.clear(); in main()
[all …]
Dputback.pass.cpp45 std::istream is(&sb); in main() local
46 is.get(); in main()
47 is.get(); in main()
48 is.get(); in main()
49 is.putback('a'); in main()
50 assert(is.bad()); in main()
51 assert(is.gcount() == 0); in main()
52 is.clear(); in main()
53 is.putback('2'); in main()
54 assert(is.good()); in main()
[all …]
/external/protobuf/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/
Dunittest_enormous_descriptor.proto46 …ooooooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooo…
47 …ooooooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooo…
48 …ooooooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooo…
49 …ooooooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooo…
50 …ooooooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooo…
51 …ooooooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooo…
52 …ooooooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooo…
53 …ooooooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooo…
54 …ooooooooooooooooooooooooooooooooooooong_9 = 9 [default="long default value is also loooooooooooooo…
55 …ooooooooooooooooooooooooooooooooooong_10 = 10 [default="long default value is also loooooooooooooo…
[all …]
/external/protobuf/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/
Dunittest_enormous_descriptor.proto46 …ooooooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooo…
47 …ooooooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooo…
48 …ooooooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooo…
49 …ooooooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooo…
50 …ooooooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooo…
51 …ooooooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooo…
52 …ooooooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooo…
53 …ooooooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooo…
54 …ooooooooooooooooooooooooooooooooooooong_9 = 9 [default="long default value is also loooooooooooooo…
55 …ooooooooooooooooooooooooooooooooooong_10 = 10 [default="long default value is also loooooooooooooo…
[all …]
/external/protobuf/src/google/protobuf/
Dunittest_enormous_descriptor.proto48 …ooooooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooo…
49 …ooooooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooo…
50 …ooooooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooo…
51 …ooooooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooo…
52 …ooooooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooo…
53 …ooooooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooo…
54 …ooooooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooo…
55 …ooooooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooo…
56 …ooooooooooooooooooooooooooooooooooooong_9 = 9 [default="long default value is also loooooooooooooo…
57 …ooooooooooooooooooooooooooooooooooong_10 = 10 [default="long default value is also loooooooooooooo…
[all …]

12345678910>>...622