Home
last modified time | relevance | path

Searched refs:Eq (Results 1 – 25 of 135) sorted by relevance

123456

/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOpts.td9 : Eq<"binary-architecture", "Ignored for compatibility">;
14 defm target : Eq<"target", "Equivalent to --input-target and --output-target for the specified form…
20 defm input_target : Eq<"input-target", "Read the input as the specified format">, MetaVarName<"form…
25 defm output_target : Eq<"output-target", "Write the output as the specified format">, MetaVarName<"…
31 : Eq<"new-symbol-visibility", "Specify the visibility of symbols automatically "
44 : Eq<"compress-sections",
50 …: Eq<"split-dwo", "Equivalent to --extract-dwo and <dwo-file> as the output file and no other opti…
55 : Eq<"add-gnu-debuglink", "Add a .gnu_debuglink for <debug-file>">,
59 : Eq<"rename-section",
64 : Eq<"redefine-sym", "Change the name of a symbol old to new">,
[all …]
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-matchers.cc46 Matcher<const std::string&>::Matcher(const std::string& s) { *this = Eq(s); } in Matcher()
51 *this = Eq(std::string(s)); in Matcher()
56 Matcher<std::string>::Matcher(const std::string& s) { *this = Eq(s); } in Matcher()
60 Matcher<std::string>::Matcher(const char* s) { *this = Eq(std::string(s)); } in Matcher()
66 *this = Eq(s); in Matcher()
72 *this = Eq(std::string(s)); in Matcher()
78 *this = Eq(std::string(s)); in Matcher()
83 Matcher<internal::StringView>::Matcher(const std::string& s) { *this = Eq(s); } in Matcher()
88 *this = Eq(std::string(s)); in Matcher()
94 *this = Eq(std::string(s)); in Matcher()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc85 ElementsAre(Eq(1), Eq(2), Lt(13), Eq(4), Eq(5), Eq(6), Eq(7), in TEST()
86 Eq(8), Eq(9), Eq(10), Gt(1), Eq(12))); in TEST()
103 Eq(2), Eq(1), Gt(7), Eq(5), Eq(4), Eq(6), Eq(7), in TEST()
104 Eq(3), Eq(9), Eq(12), Eq(11), Ne(122))); in TEST()
235 const Matcher<int*> m = Pointer(Eq(&n)); in TEST()
246 const Matcher<const int*> m = Pointer(Eq(&n)); in TEST()
258 const Matcher<std::unique_ptr<int>> m = Pointer(Eq(raw_n)); in TEST()
266 const Matcher<std::unique_ptr<const int>> m = Pointer(Eq(raw_n)); in TEST()
933 Matcher<int> matcher = ResultOf(&IntToStringFunction, Eq(std::string("foo"))); in TEST()
991 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80)); in TEST()
[all …]
H A Dgmock-matchers-arithmetic_test.cc54 Matcher<const Tuple2&> m = Eq(); in TEST()
61 Matcher<const Tuple2&> m = Eq(); in TEST()
142 Matcher<Pointers> matcher = Eq(); in TEST()
402 m = Not(Eq(2)); in TEST()
409 Matcher<int> m = Not(Eq(5)); in TEST()
633 m = AnyOf(Lt(0), Eq(1), Eq(2)); in TEST()
639 m = AnyOf(Lt(0), Eq(1), Eq(2), Eq(3)); in TEST()
688 Matcher<std::string> eq_red = Eq("red"); in TEST()
698 EXPECT_THAT(listener.str(), Eq(expected.str())); in TEST()
702 Matcher<std::string> eq_red = Eq("red"); in TEST()
[all …]
H A Dgmock-matchers-misc_test.cc56 const Matcher<int> m = Address(Eq(&n)); in TEST()
71 const Matcher<int> m = Address(Eq(&n)); in TEST()
82 const Matcher<std::unique_ptr<int>> m = Address(Eq(&n)); in TEST()
121 const Matcher<const NotCopyable&> m = Eq(ByRef(const_value1)); in TEST()
651 std::make_tuple(Matcher<char>(Eq('a')), GreaterThan(5)), in TEST_P()
657 std::make_tuple(GreaterThan(5), Matcher<char>(Eq('a'))), in TEST_P()
668 std::make_tuple(GreaterThan(5), Matcher<char>(Eq('a'))), in TEST_P()
695 const Matcher<SampleOptional<int>> m = Optional(Eq(1)); in TEST()
700 const Matcher<SampleOptional<int>> m = Optional(Eq(1)); in TEST()
707 const Matcher<SampleOptional<int>> m2 = Optional(Eq(2)); in TEST()
[all …]
H A Dgmock_link_test.h142 using testing::Eq;
498 ON_CALL(mock, VoidFromString(Eq(p))).WillByDefault(Return()); in TEST()
631 Matcher<const FieldHelper&> m = Field(&FieldHelper::field_, Eq(0)); in TEST()
634 Matcher<const FieldHelper*> m2 = Field(&FieldHelper::field_, Eq(0)); in TEST()
642 Matcher<const FieldHelper&> m = Property(&FieldHelper::field, Eq(0)); in TEST()
645 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0)); in TEST()
651 Matcher<char*> m = ResultOf(&InvokeHelper::StaticIntFromString, Eq(1)); in TEST()
659 Matcher<int*> m = Pointee(Eq(1)); in TEST()
671 Matcher<int> m = AllOf(_, Eq(1)); in TEST()
677 Matcher<int> m = AnyOf(_, Eq(1)); in TEST()
/freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A DOpts.td8 multiclass Eq<string name, string help> {
21 : Eq<"adjust-vma", "Add specified offset to object file addresses">,
24 defm build_id : Eq<"build-id", "Build ID used to look up the object file">;
25 defm cache_size : Eq<"cache-size", "Max size in bytes of the in-memory binary cache.">;
28 defm debug_file_directory : Eq<"debug-file-directory", "Path to directory where to look for debug files">, MetaVarName<"<dir>">;
31 : Eq<"default-arch", "Default architecture (for multi-arch objects)">,
38 defm dwp : Eq<"dwp", "Path to DWP file to be use for any split CUs">, MetaVarName<"<file>">;
40 : Eq<"dsym-hint",
44 defm fallback_debug_path : Eq<"fallback-debug-path", "Fallback path for debug binaries">, MetaVarName<"<dir>">;
48 : Eq<"ob
[all...]
/freebsd/tests/sys/fs/fusefs/
H A Dutils.cc173 }, Eq(true)), in SetUp()
187 }, Eq(true)), in SetUp()
204 }, Eq(true)), in expect_access()
215 }, Eq(true)), in expect_destroy()
236 }, Eq(true)), in expect_fallocate()
249 }, Eq(true)), in expect_flush()
263 }, Eq(true)), in expect_forget()
278 }, Eq(true)), in expect_getattr()
298 }, Eq(true)), in expect_getxattr()
345 }, Eq(true)), in expect_open()
[all …]
H A Dlseek.cc69 }, Eq(true)), in TEST_F()
102 }, Eq(true)), in TEST_F()
141 }, Eq(true)), in TEST_F()
170 }, Eq(true)), in TEST_F()
204 }, Eq(true)), in TEST_F()
234 }, Eq(true)), in TEST_F()
265 }, Eq(true)), in TEST_F()
302 }, Eq(true)), in TEST_F()
331 }, Eq(true)), in TEST_F()
362 }, Eq(true)), in TEST_F()
[all …]
H A Dinterrupt.cc104 }, Eq(true)), in expect_mkdir()
122 }, Eq(true)), in expect_read()
140 }, Eq(true)), in expect_write()
242 }, Eq(true)), in TEST_F()
305 }, Eq(true)), in TEST_F()
327 }, Eq(true)), in TEST_F()
383 }, Eq(true)), in TEST_F()
425 }, Eq(true)), in TEST_F()
501 }, Eq(true)), in TEST_F()
564 }, Eq(true)), in TEST_F()
[all …]
H A Dmkdir.cc69 }, Eq(true)), in TEST_F()
104 }, Eq(true)), in TEST_F()
142 }, Eq(true)), in TEST_F()
181 }, Eq(true)), in TEST_F()
223 }, Eq(true)), in TEST_F()
237 }, Eq(true)), in TEST_F()
263 }, Eq(true)), in TEST_F()
H A Dsetattr.cc100 }, Eq(true)), in TEST_F()
111 }, Eq(true)), in TEST_F()
146 }, Eq(true)), in TEST_F()
198 }, Eq(true)), in TEST_F()
248 }, Eq(true)), in TEST_F()
286 }, Eq(true)), in TEST_F()
315 }, Eq(true)), in TEST_F()
329 }, Eq(true)), in TEST_F()
367 }, Eq(true)), in TEST_F()
382 }, Eq(true)), in TEST_F()
[all …]
H A Dopen.cc60 }, Eq(true)), in test_ok()
116 }, Eq(true)), in TEST_F()
145 }, Eq(true)), in TEST_F()
174 }, Eq(true)), in TEST_F()
188 }, Eq(true)), in TEST_F()
293 }, Eq(true)), in TEST_F()
H A Daccess.cc68 }, Eq(true)), in expect_noaccess()
104 }, Eq(true)), in TEST_F()
137 }, Eq(true)), in TEST_F()
279 }, Eq(true)), in TEST_F()
293 }, Eq(true)), in TEST_F()
H A Dcopy_file_range.cc53 }, Eq(true)), in expect_maybe_lseek()
65 }, Eq(true)), in expect_open()
90 }, Eq(true)), in expect_write()
180 }, Eq(true)), in TEST_F()
232 }, Eq(true)), in TEST_F()
310 }, Eq(true)), in TEST_F()
364 }, Eq(true)), in TEST_F()
420 }, Eq(true)), in TEST_F()
470 }, Eq(true)), in TEST_F()
519 }, Eq(true)), in TEST_F()
[all …]
H A Drename.cc119 }, Eq(true)), in TEST_F()
154 }, Eq(true)), in TEST_F()
207 }, Eq(true)), in TEST_F()
252 }, Eq(true)), in TEST_F()
259 }, Eq(true)), in TEST_F()
325 }, Eq(true)), in TEST_F()
H A Ddefault_permissions_privileged.cc64 }, Eq(true)), in SetUp()
77 }, Eq(true)), in expect_getattr()
114 }, Eq(true)), in TEST_F()
H A Ddefault_permissions.cc66 }, Eq(true)), in SetUp()
80 }, Eq(true)), in expect_chmod()
99 }, Eq(true)), in expect_create()
121 }, Eq(true)), in expect_copy_file_range()
136 }, Eq(true)), in expect_getattr()
186 }, Eq(true)), in expect_removexattr()
199 }, Eq(true)), in expect_getxattr()
212 }, Eq(true)), in expect_listxattr()
232 }, Eq(true)), in expect_rename()
245 }, Eq(true)), in expect_setxattr()
[all …]
/freebsd/tools/test/stress2/misc/
H A Dfsck14.sh67 grep -Eq "IS CLEAN|MARKED CLEAN" $log || {
109 grep -Eq "WAS MODIFIED" $log && continue
110 grep -Eq "CLEAN" $log && break
116 grep -Eq 'IS CLEAN|MARKED CLEAN' $log && s=0 || { s=1; cat $log; }
H A Dforce13.sh96 grep -Eq "FILE SYSTEM WAS MODIFIED" $log || break
101 grep -Eq "IS CLEAN|MARKED CLEAN" $log || { s=102; break; }
117 grep -Eq "FILE SYSTEM WAS MODIFIED" $log || break
122 grep -Eq "IS CLEAN|MARKED CLEAN" $log ||
H A Dgnop13.sh105 grep -Eq "FILE SYSTEM WAS MODIFIED" $log || break
110 grep -Eq "IS CLEAN|MARKED CLEAN" $log || { s=102; break; }
126 grep -Eq "FILE SYSTEM WAS MODIFIED" $log || break
131 grep -Eq "IS CLEAN|MARKED CLEAN" $log ||
/freebsd/contrib/llvm-project/lld/ELF/
H A DOptions.td26 multiclass Eq<string name, string help> {
37 defm auxiliary: Eq<"auxiliary", "Set DT_AUXILIARY field to the specified name">;
67 Eq<"compress-debug-sections", "Compress DWARF debug sections">,
76 defm defsym: Eq<"defsym", "Define a symbol alias">, MetaVarName<"<symbol>=<value>">;
87 : Eq<"split-stack-adjust-size",
106 defm Tbss: Eq<"Tbss", "Same as --section-start with .bss as the sectionname">;
108 defm Tdata: Eq<"Tdata", "Same as --section-start with .data as the sectionname">;
110 defm Ttext: Eq<"Ttext", "Same as --section-start with .text as the sectionname">;
135 Eq<"call-graph-ordering-file", "Layout sections to optimize the given callgraph">;
182 defm dynamic_linker: Eq<"dynamic-linker", "Which dynamic linker to use">;
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-tli-checker/
H A DOpts.td4 multiclass Eq<string name, string metavar, string help> {
13 defm triple : Eq<"triple", "<triple>", "Target triple">;
14 defm libdir : Eq<"libdir", "<directory>", "Root directory for finding library files">;
/freebsd/contrib/llvm-project/llvm/tools/llvm-strings/
H A DOpts.td6 multiclass Eq<string name, string help> {
13 defm bytes : Eq<"bytes", "Print sequences of the specified length">;
16 defm radix : Eq<"radix", "Print the offset within the file with the specified radix: o (octal), d (…
/freebsd/contrib/llvm-project/compiler-rt/lib/rtsan/tests/
H A Drtsan_test_interceptors.cpp195 ASSERT_THAT(stat(GetTemporaryFilePath(), &st), Eq(0)); in TEST_F()
198 ASSERT_THAT(st.st_mode & 0777, Eq(mode)); in TEST_F()
225 ASSERT_THAT(fcntl(fd, F_GETLK, &lock), Eq(0)); in TEST_F()
240 ASSERT_THAT(fcntl(fd, F_SETFD, FD_CLOEXEC), Eq(0)); in TEST_F()
244 ASSERT_THAT(flags & FD_CLOEXEC, Eq(FD_CLOEXEC)); in TEST_F()
246 ASSERT_THAT(fcntl(fd, F_SETFD, old_flags), Eq(0)); in TEST_F()
247 ASSERT_THAT(fcntl(fd, F_GETFD), Eq(old_flags)); in TEST_F()

123456