| /freebsd-12.1/contrib/googletest/googlemock/test/ |
| H A D | gmock-generated-function-mockers_test.cc | 69 using testing::Return; 201 .WillOnce(Return(1)); in TEST_F() 220 .WillOnce(Return(3)); in TEST_F() 229 .WillOnce(Return(5)); in TEST_F() 265 .WillOnce(Return(1)); in TEST_F() 421 .WillOnce(Return(0)) in TEST() 422 .WillOnce(Return(1)) in TEST() 487 .WillOnce(Return(0)) in TEST() 488 .WillOnce(Return(1)) in TEST() 565 .WillOnce(Return(1)) in TEST() [all …]
|
| H A D | gmock-spec-builders_test.cc | 90 using testing::Return; 350 .WillOnce(Return()) in TEST() 361 .WillOnce(Return()); in TEST() 364 .WillOnce(Return()) in TEST() 442 .WillOnce(Return()) in TEST() 468 .WillOnce(Return()); in TEST() 479 .WillOnce(Return()) in TEST() 480 .WillOnce(Return()) in TEST() 481 .WillOnce(Return()); in TEST() 500 .WillOnce(Return()); in TEST() [all …]
|
| H A D | gmock_link_test.h | 169 using testing::Return; 250 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(Return()); in TEST() 259 EXPECT_CALL(mock, StringFromString(_)).WillOnce(Return(&ch)); in TEST() 267 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(Return()); in TEST() 389 .WillOnce(DoAll(SetArgPointee<0>('y'), Return())); in TEST() 398 ON_CALL(mock, VoidFromString(_)).WillByDefault(Return()); in TEST() 479 ON_CALL(mock, VoidFromString(_)).WillByDefault(Return()); in TEST() 494 ON_CALL(mock, VoidFromString(Eq(p))).WillByDefault(Return()); in TEST() 496 .WillByDefault(Return()); in TEST() 529 ON_CALL(mock, VoidFromIntRef(Ref(a))).WillByDefault(Return()); in TEST() [all …]
|
| H A D | gmock_output_test_.cc | 53 using testing::Return; 95 .WillOnce(Return(false)); in TEST_F() 214 .WillByDefault(Return(true)); // Default action #1 in TEST_F() 216 .WillByDefault(Return(false)); // Default action #2 in TEST_F() 226 .WillByDefault(Return(true)); // Default action #1 in TEST_F() 228 .WillByDefault(Return(false)); // Default action #2 in TEST_F() 241 .WillByDefault(Return(true)); // Default action #1 in TEST_F() 243 .WillByDefault(Return(false)); // Default action #2 in TEST_F() 251 .WillByDefault(Return(true)); // Default action #1 in TEST_F() 255 .WillOnce(Return(false)); in TEST_F() [all …]
|
| H A D | gmock_leak_test_.cc | 40 using ::testing::Return; 74 ON_CALL(*foo, DoThis()).WillByDefault(Return()); in TEST() 87 ON_CALL(*foo1, DoThis()).WillByDefault(Return()); in TEST()
|
| H A D | gmock_stress_test.cc | 151 .WillByDefault(Return(1)); in TestConcurrentMockObjects() 153 .WillByDefault(Return('b')); in TestConcurrentMockObjects() 155 .WillByDefault(Return('a')); in TestConcurrentMockObjects() 161 .WillOnce(Return('z')) in TestConcurrentMockObjects() 202 .WillByDefault(Return(1)); in TestConcurrentCallsOnSameObject() 205 .WillRepeatedly(Return('a')); in TestConcurrentCallsOnSameObject()
|
| H A D | gmock-actions_test.cc | 70 using testing::Return; 534 Action<int()> ret = Return(1); // NOLINT in TEST() 537 ret = Return(-5); in TEST() 543 Action<const char*()> a1 = Return("Hello"); in TEST() 583 Action<Base*()> ret = Return(&base); in TEST() 586 ret = Return(&derived); in TEST() 614 Action<ToType()> action(Return(x)); in TEST() 780 .WillByDefault(Return(2)); in TEST() 1193 Return(ByMove(std::move(i))))); in TEST() 1235 .WillOnce(Return(-7)) in TEST() [all …]
|
| /freebsd-12.1/contrib/gcc/config/sparc/ |
| H A D | predicates.md | 23 ;; Return true if OP is the zero constant for MODE. 28 ;; Return true if OP is the one constant for MODE. 33 ;; Return true if OP is the integer constant 4096. 38 ;; Return true if OP is a constant that is representable by a 13-bit 156 ;; Return true if OP is a LABEL_REF of mode MODE. 182 ;; Return true if OP is a text segment reference. 206 ;; Return true if OP is either the zero constant or a register. 220 ;; Return true if OP is an integer register. 313 ;; Return true if OP is suitable as second operand for add/sub. 415 ;; Return true if OP is an address suitable for a call insn. [all …]
|
| /freebsd-12.1/contrib/gcc/config/rs6000/ |
| H A D | predicates.md | 21 ;; Return 1 for anything except PARALLEL. 25 ;; Return 1 for any PARALLEL. 29 ;; Return 1 if op is COUNT register. 35 ;; Return 1 if op is an Altivec register. 42 ;; Return 1 if op is XER register. 47 ;; Return 1 if op is a signed 5-bit constant integer. 57 ;; Return 1 if op is a signed 8-bit constant integer. 84 ;; Return 1 if op is a register that is not special. 141 ;; Return 1 if op is any constant integer 331 ;; Return 1 if operand is 0.0. [all …]
|
| /freebsd-12.1/sys/dev/nand/ |
| H A D | nand_if.m | 45 # Return values: 58 # Return values: 71 # Return values: 84 # Return values: 97 # Return values: 110 # Return values: 120 # Return values: 130 # Return values: 140 # Return values:
|
| H A D | nfc_if.m | 59 # Return values: 69 # Return values: 79 # Return values: 95 # Return values: 140 # Return values:
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | ABI.h | 184 ReturnAdjustment Return; member 195 ThunkInfo(const ThisAdjustment &This, const ReturnAdjustment &Return, 197 : This(This), Return(Return), Method(Method) {} in This() 200 return LHS.This == RHS.This && LHS.Return == RHS.Return && 205 return This.isEmpty() && Return.isEmpty() && Method == nullptr; in isEmpty()
|
| /freebsd-12.1/contrib/gcc/config/i386/ |
| H A D | predicates.md | 21 ;; Return nonzero if OP is either a i387 or SSE fp register. 26 ;; Return nonzero if OP is an i387 fp register. 31 ;; Return nonzero if OP is a non-fp register_operand. 55 ;; Return true if op is a NON_Q_REGS class register. 78 ;; Return true if op is the AX register. 83 ;; Return true if op is the flags register. 722 ;; Return true if OP is a register or a zero. 944 ;; Return true if this is a multiply operation. 948 ;; Return true if this is a division operation. 952 ;; Return true if this is a float extend operation. [all …]
|
| /freebsd-12.1/cddl/usr.sbin/zfsd/tests/ |
| H A D | zfsd_unittest.cc | 435 .WillByDefault(::testing::Return(Guid(123))); in SetUp() 437 .WillByDefault(::testing::Return(Guid(456))); in SetUp() 532 .WillRepeatedly(::testing::Return(true)); in TEST_F() 581 .WillRepeatedly(::testing::Return(true)); in TEST_F() 644 .WillByDefault(::testing::Return(Guid(123))); in SetUp() 646 .WillByDefault(::testing::Return(Guid(456))); in SetUp() 650 .WillByDefault(::testing::Return(Guid(123))); in SetUp() 652 .WillByDefault(::testing::Return(Guid(789))); in SetUp() 732 .WillRepeatedly(::testing::Return(false)); in TEST_F() 753 .WillRepeatedly(::testing::Return(false)); in TEST_F() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | ArgumentsAdjusters.cpp | 80 CommandLineArguments Return(Args); in getInsertArgumentAdjuster() local 84 I = Return.end(); in getInsertArgumentAdjuster() 86 I = Return.begin(); in getInsertArgumentAdjuster() 90 Return.insert(I, Extra.begin(), Extra.end()); in getInsertArgumentAdjuster() 91 return Return; in getInsertArgumentAdjuster()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | PointerUnion.h | 28 using Return = T; member 42 using Return = typename PointerUnionTypeSelectorReturn<RET_NE>::Return; member 47 using Return = typename PointerUnionTypeSelectorReturn<RET_EQ>::Return; 53 using Return = 54 typename PointerUnionTypeSelector<T1, T2, RET_EQ, RET_NE>::Return; 127 UNION_DOESNT_CONTAIN_TYPE<T>>>::Return; 277 ::llvm::PointerUnionTypeSelector<PT2, T, IsInnerUnion, IsPT3>>::Return; 289 ::llvm::PointerUnionTypeSelector<PT2, T, IsInnerUnion, IsPT3>>::Return; 385 InnerUnion2>>::Return; 398 InnerUnion2>>::Return;
|
| /freebsd-12.1/usr.sbin/pc-sysinstall/doc/ |
| H A D | help-index | 52 Return a list of languages that the installer supports 58 Return the size of installed system RAM in MegaBytes 67 Return a list of PC-BSD & FreeBSD installs on this system for updates 70 Return a list of keyboard layouts that xorg supports 73 Return a list of keyboard models that xorg supports 76 Return a list of keyboard variants that xorg supports
|
| /freebsd-12.1/contrib/gcc/config/s390/ |
| H A D | predicates.md | 28 ;; Return true if OP a (const_int 0) operand. 34 ;; Return true if OP is constant. 40 ;; Return true if OP is a valid S-type operand. 61 ;; Return true if OP is a valid operand for the BRAS instruction. 71 ;; Return true if OP is a PLUS that is not a legitimate 79 ;; Return true if OP is a valid operand as shift count or setmem. 105 ;; Return true if OP a valid operand for the LARL instruction. 160 ;; Return nonzero if OP is a valid comparison operator 176 ;; Return nonzero if OP is a valid comparison operator 221 ;; Return nonzero if OP is a valid comparison operator [all …]
|
| /freebsd-12.1/sys/dev/ofw/ |
| H A D | ofw_if.m | 52 * @brief Return next sibling of node. 62 * @brief Return parent of node. 72 * @brief Return first child of node. 82 * @brief Return package corresponding to instance. 92 * @brief Return length of node property. 166 * @brief Return phandle for named device. 176 * @brief Return path for node instance. 190 * @brief Return path for node.
|
| /freebsd-12.1/contrib/ntp/ntpd/ |
| H A D | check_y2k.c | 112 long Return; in Days() local 114 Return = Year * 365; /* first aproximation to the value */ in Days() 118 Return += (Year+3) / 4; /* add in (too many) leap days */ in Days() 119 Return -= (Year-1) / 100; /* reduce by (too many) centurys */ in Days() 120 Return += (Year-1) / 400; /* get final answer */ in Days() 123 return Return; in Days()
|
| /freebsd-12.1/contrib/llvm/tools/clang/utils/TableGen/ |
| H A D | ClangCommentCommandInfoEmitter.cpp | 67 std::string Return; in EmitClangCommentCommandInfo() local 68 raw_string_ostream(Return) << "return &Commands[" << i << "];"; in EmitClangCommentCommandInfo() 69 Matches.emplace_back(std::move(Name), std::move(Return)); in EmitClangCommentCommandInfo()
|
| /freebsd-12.1/contrib/file/src/ |
| H A D | magic.h.in | 37 #define MAGIC_MIME_TYPE 0x0000010 /* Return the MIME type */ 38 #define MAGIC_CONTINUE 0x0000020 /* Return all matches */ 43 #define MAGIC_MIME_ENCODING 0x0000400 /* Return the MIME encoding */ 45 #define MAGIC_APPLE 0x0000800 /* Return the Apple creator/type */ 46 #define MAGIC_EXTENSION 0x1000000 /* Return a /-separated list of
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/IPO/ |
| H A D | CalledValuePropagation.cpp | 48 enum class IPOGrouping { Register, Return, Memory }; enumerator 136 case IPOGrouping::Return: in ComputeLatticeVal() 209 else if (Key.getInt() == IPOGrouping::Return) in PrintLatticeKey() 248 auto RetF = CVPLatticeKey(F, IPOGrouping::Return); in visitReturn() 282 auto RetF = CVPLatticeKey(F, IPOGrouping::Return); in visitCallSite()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AVR/ |
| H A D | AVRRegisterInfo.td | 116 // Return value and argument registers. 134 // Return value and arguments. 151 // Return value and arguments. 171 // Return value and arguments. 183 // Return value and arguments. 194 // Return value and arguments.
|
| /freebsd-12.1/sys/dev/bhnd/bhndb/ |
| H A D | bhndb_bus_if.m | 78 * Return a generic hardware configuration to be used by 106 * Return the hardware specification table to be used when identifying the 118 * Return the hardware priority table to be used when allocating bridge 130 * Return true if the hardware required by @p core is unpopulated or
|