Home
last modified time | relevance | path

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

12345678910>>...557

/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/syzkaller/dashboard/config/
Dupstream-kmsan.config64 # CONFIG_COMPILE_TEST is not set
66 # CONFIG_LOCALVERSION_AUTO is not set
74 # CONFIG_KERNEL_BZIP2 is not set
75 # CONFIG_KERNEL_LZMA is not set
76 # CONFIG_KERNEL_XZ is not set
77 # CONFIG_KERNEL_LZO is not set
78 # CONFIG_KERNEL_LZ4 is not set
109 # CONFIG_GENERIC_IRQ_DEBUGFS is not set
124 # CONFIG_HZ_PERIODIC is not set
126 # CONFIG_NO_HZ_FULL is not set
[all …]
Dupstream-kasan.config10 # it is reintroduced to kernel again.
71 # CONFIG_COMPILE_TEST is not set
73 # CONFIG_LOCALVERSION_AUTO is not set
81 # CONFIG_KERNEL_BZIP2 is not set
82 # CONFIG_KERNEL_LZMA is not set
83 # CONFIG_KERNEL_XZ is not set
84 # CONFIG_KERNEL_LZO is not set
85 # CONFIG_KERNEL_LZ4 is not set
116 # CONFIG_GENERIC_IRQ_DEBUGFS is not set
131 # CONFIG_HZ_PERIODIC is not set
[all …]
/external/pdfium/testing/resources/javascript/
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 …]
Dbug_361_expected.txt1 Alert: Answer for "" is: string
2 Alert: Answer for "goats" is: string goats
3 Alert: Answer for "b4" is: string b4
4 Alert: Answer for "b4.5" is: string b4.5
5 Alert: Answer for "4x" is: string 4x
6 Alert: Answer for "4.5x" is: string 4.5x
7 Alert: Answer for "4" is: number 4
8 Alert: Answer for "4" is: number 4
9 Alert: Answer for " 4" is: number 4
10 Alert: Answer for "4 " is: number 4
[all …]
Ddocument_props_expected.txt2 Alert: this.ADBE is undefined undefined
3 Alert: this.author is string Joe Random Author
4 Alert: this.baseURL is string
5 Alert: this.bookmarkRoot is undefined undefined
6 Alert: this.calculate is boolean true
7 Alert: this.Collab is undefined undefined
8 Alert: this.creationDate is string
9 Alert: this.creator is string Joe Random Creator
10 Alert: this.delay is boolean false
11 Alert: this.dirty is boolean false
[all …]
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
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 …]
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 …]
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 …]
Dgetline_pointer_size.pass.cpp56 std::istream is(&sb); in main() local
58 is.getline(s, 5); in main()
59 assert(!is.eof()); in main()
60 assert(!is.fail()); in main()
62 assert(is.gcount() == 3); in main()
63 is.getline(s, 5); in main()
64 assert(!is.eof()); in main()
65 assert(!is.fail()); in main()
67 assert(is.gcount() == 5); in main()
68 is.getline(s, 5); in main()
[all …]
Dgetline_pointer_size_chart.pass.cpp56 std::istream is(&sb); in main() local
58 is.getline(s, 5, '*'); in main()
59 assert(!is.eof()); in main()
60 assert(!is.fail()); in main()
62 assert(is.gcount() == 3); in main()
63 is.getline(s, 5, '*'); in main()
64 assert(!is.eof()); in main()
65 assert(!is.fail()); in main()
67 assert(is.gcount() == 5); in main()
68 is.getline(s, 5, '*'); in main()
[all …]
Dget_chart.pass.cpp45 std::istream is(&sb); in main() local
47 is.get(c); in main()
48 assert(!is.eof()); in main()
49 assert(!is.fail()); in main()
51 assert(is.gcount() == 1); in main()
55 std::istream is(&sb); in main() local
57 is.get(c); in main()
58 assert(!is.eof()); in main()
59 assert(!is.fail()); in main()
61 assert(is.gcount() == 1); in main()
[all …]
Dget.pass.cpp45 std::istream is(&sb); in main() local
46 char c = static_cast<char>(is.get()); in main()
47 assert(!is.eof()); in main()
48 assert(!is.fail()); in main()
50 assert(is.gcount() == 1); in main()
54 std::istream is(&sb); in main() local
55 char c = static_cast<char>(is.get()); in main()
56 assert(!is.eof()); in main()
57 assert(!is.fail()); in main()
59 assert(is.gcount() == 1); in main()
[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 …]
/external/toybox/
D.config11 # 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/syzkaller/sys/linux/
Dkvm_ppc64le.const4 # KVM_ARM_TARGET_AEM_V8 is not set
5 # KVM_ARM_TARGET_CORTEX_A53 is not set
6 # KVM_ARM_TARGET_CORTEX_A57 is not set
7 # KVM_ARM_TARGET_FOUNDATION_V8 is not set
8 # KVM_ARM_TARGET_GENERIC_V8 is not set
9 # KVM_ARM_TARGET_XGENE_POTENZA is not set
10 # KVM_ARM_VCPU_EL1_32BIT is not set
11 # KVM_ARM_VCPU_INIT is not set
12 # KVM_ARM_VCPU_PMU_V3 is not set
13 # KVM_ARM_VCPU_POWER_OFF is not set
[all …]
Dkvm_arm.const4 # KVM_ARM_TARGET_AEM_V8 is not set
5 # KVM_ARM_TARGET_CORTEX_A53 is not set
6 # KVM_ARM_TARGET_CORTEX_A57 is not set
7 # KVM_ARM_TARGET_FOUNDATION_V8 is not set
8 # KVM_ARM_TARGET_GENERIC_V8 is not set
9 # KVM_ARM_TARGET_XGENE_POTENZA is not set
10 # KVM_ARM_VCPU_EL1_32BIT is not set
12 # KVM_ARM_VCPU_PMU_V3 is not set
25 # KVM_CPUID_FEATURES is not set
26 # KVM_CPUID_FLAG_SIGNIFCANT_INDEX is not set
[all …]
Dkvm_arm64.const25 # KVM_CPUID_FEATURES is not set
26 # KVM_CPUID_FLAG_SIGNIFCANT_INDEX is not set
27 # KVM_CPUID_FLAG_STATEFUL_FUNC is not set
28 # KVM_CPUID_FLAG_STATE_READ_NEXT is not set
29 # KVM_CPUID_SIGNATURE is not set
55 # KVM_GET_CPUID2 is not set
56 # KVM_GET_DEBUGREGS is not set
59 # KVM_GET_EMULATED_CPUID is not set
62 # KVM_GET_LAPIC is not set
64 # KVM_GET_MSRS is not set
[all …]
/external/libxml2/result/XPath/expr/
Dfloats4 Object is a number : 1
8 Object is a number : 123
12 Object is a number : 1.23
16 Object is a number : 0.123
20 Object is a number : 4
24 Object is a number : 0.4
28 Object is a number : 1230
32 Object is a number : 0.00123
36 Object is a number : Infinity
40 Object is a number : -Infinity
[all …]
Dcompare4 Object is a Boolean : false
8 Object is a Boolean : true
12 Object is a Boolean : false
16 Object is a Boolean : true
20 Object is a Boolean : true
24 Object is a Boolean : true
28 Object is a Boolean : false
32 Object is a Boolean : false
36 Object is a Boolean : false
40 Object is a Boolean : false
[all …]
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
Dis_1.pass.cpp32 assert(f.is(F::space, L' ')); in main()
33 assert(!f.is(F::space, L'A')); in main()
35 assert(f.is(F::print, L' ')); in main()
36 assert(!f.is(F::print, L'\x07')); in main()
38 assert(f.is(F::cntrl, L'\x07')); in main()
39 assert(!f.is(F::cntrl, L' ')); in main()
41 assert(f.is(F::upper, L'A')); in main()
42 assert(!f.is(F::upper, L'a')); in main()
44 assert(f.is(F::lower, L'a')); in main()
45 assert(!f.is(F::lower, L'A')); in main()
[all …]
/external/u-boot/configs/
Dxilinx_zynqmp_mini_nand_defconfig5 # CONFIG_CMD_ZYNQMP is not set
11 # CONFIG_DISPLAY_CPUINFO is not set
13 # CONFIG_CMDLINE_EDITING is not set
14 # CONFIG_AUTO_COMPLETE is not set
15 # CONFIG_SYS_LONGHELP is not set
17 # CONFIG_CMD_BDI is not set
18 # CONFIG_CMD_CONSOLE is not set
19 # CONFIG_CMD_BOOTD is not set
20 # CONFIG_CMD_BOOTM is not set
21 # CONFIG_CMD_BOOTI is not set
[all …]
Dzynq_cse_qspi_defconfig9 # CONFIG_ZYNQ_DDRC_INIT is not set
13 # CONFIG_ARCH_FIXUP_FDT_MEMORY is not set
15 # CONFIG_USE_BOOTCOMMAND is not set
16 # CONFIG_DISPLAY_CPUINFO is not set
17 # CONFIG_ARCH_EARLY_INIT_R is not set
21 # CONFIG_CMD_BDI is not set
22 # CONFIG_CMD_CONSOLE is not set
23 # CONFIG_CMD_BOOTD is not set
24 # CONFIG_CMD_BOOTM is not set
25 # CONFIG_CMD_ELF is not set
[all …]

12345678910>>...557