Searched refs:Check (Results 1 - 25 of 79) sorted by relevance

1234

/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgtest_environment_test.cc112 void Check(bool condition, const char* msg) { function in namespace:__anon853
139 Check(testing::AddGlobalTestEnvironment(env) == env,
144 Check(RunAllTests(env, NO_FAILURE) != 0,
147 Check(test_was_run,
150 Check(env->tear_down_was_run(),
155 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
158 Check(test_was_run,
161 Check(env->tear_down_was_run(),
166 Check(RunAllTests(env, FATAL_FAILURE) != 0,
169 Check(!test_was_ru
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dguarded_pool_allocator_posix.cpp39 Check(Ptr != MAP_FAILED, "Failed to map guarded pool allocator memory");
46 Check(munmap(Ptr, Size) == 0,
53 Check(mprotect(Ptr, Size, PROT_READ | PROT_WRITE) == 0,
63 Check(mmap(Ptr, Size, PROT_NONE, MAP_FIXED | MAP_ANONYMOUS | MAP_PRIVATE, -1,
H A Dutilities_posix.cpp24 void Check(bool Condition, const char *Message) { function in namespace:gwp_asan
32 void Check(bool Condition, const char *Message) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dutilities.h17 void Check(bool Condition, const char *Message);
H A Dguarded_pool_allocator.cpp66 Check(Opts.SampleRate >= 0, "GWP-ASan Error: SampleRate is < 0.");
67 Check(Opts.SampleRate <= INT32_MAX, "GWP-ASan Error: SampleRate is > 2^31.");
68 Check(Opts.MaxSimultaneousAllocations >= 0,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCheck.h46 namespace Check { namespace in namespace:llvm
87 } // namespace Check
91 Check::FileCheckType CheckTy;
134 FileCheckDiag(const SourceMgr &SM, const Check::FileCheckType &CheckTy,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp160 static bool Check(DecodeStatus &Out, DecodeStatus In) { function
842 Check(S, SoftFail);
866 Check(S, SoftFail);
896 Check(S, SoftFail);
928 Check(Result, AddThumbPredicate(MI));
937 Check(Result, AddThumbPredicate(MI));
952 Check(Result, AddThumbPredicate(MI));
989 Check(Result, AddThumbPredicate(MI));
1004 Check(Result, AddThumbPredicate(MI));
1013 Check(Resul
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheck.cpp1 //===- FileCheck.cpp - Check that File's Contents match what is expected --===//
271 // Check for divide by zero.
602 // Check if this is a supported operation and select a function to perform
732 // Check for unknown matching format specifier and set matching format in
837 bool MatchFullLinesHere = Req.MatchFullLines && CheckTy != Check::CheckNot;
848 // Check that there is something on the line.
849 if (PatternStr.empty() && CheckTy != Check::CheckEmpty) {
855 if (!PatternStr.empty() && CheckTy == Check::CheckEmpty) {
863 if (CheckTy == Check::CheckEmpty) {
868 // Check t
1986 size_t FileCheckString::Check(const SourceMgr &SM, StringRef Buffer, function in class:FileCheckString
[all...]
H A DFileCheckImpl.h608 Check::FileCheckType CheckTy;
619 Pattern(Check::FileCheckType Ty, FileCheckPatternContext *Context,
694 Check::FileCheckType getCheckTy() const { return CheckTy; }
784 // Check Strings.
806 size_t Check(const SourceMgr &SM, StringRef Buffer, bool IsLabelScanMode,
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DContext.cpp51 return Check(Parent, C.interpretExpr(E));
57 return Check(Parent, C.interpretDecl(VD));
122 bool Context::Check(State &Parent, llvm::Expected<bool> &&Flag) { function in class:Context
H A DContext.h72 bool Check(State &Parent, llvm::Expected<bool> &&R);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPoisonChecking.cpp80 cl::desc("Check that returns are non-poison (for testing)"));
155 auto *Check = local
158 Checks.push_back(Check);
164 auto *Check = local
167 Checks.push_back(Check);
206 Value *Check = local
209 Checks.push_back(Check);
219 Value *Check = local
222 Checks.push_back(Check);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h317 if (!T::Check(m_py_obj))
389 if (!T::Check(obj.get().get()))
418 if (T::Check(py_obj))
433 static bool Check(PyObject *py_obj);
451 static bool Check(PyObject *py_obj);
471 static bool Check(PyObject *py_obj);
493 static bool Check(PyObject *py_obj);
507 static bool Check(PyObject *py_obj);
525 static bool Check(PyObject *py_obj);
547 static bool Check(PyObjec
[all...]
H A DPythonDataObjects.cpp151 if (PythonModule::Check(m_py_obj))
153 if (PythonList::Check(m_py_obj))
155 if (PythonTuple::Check(m_py_obj))
157 if (PythonDictionary::Check(m_py_obj))
159 if (PythonString::Check(m_py_obj))
162 if (PythonBytes::Check(m_py_obj))
165 if (PythonByteArray::Check(m_py_obj))
167 if (PythonBoolean::Check(m_py_obj))
169 if (PythonInteger::Check(m_py_obj))
171 if (PythonFile::Check(m_py_ob
294 bool PythonBytes::Check(PyObject *py_obj) { function in class:PythonBytes
339 bool PythonByteArray::Check(PyObject *py_obj) { function in class:PythonByteArray
384 bool PythonString::Check(PyObject *py_obj) { function in class:PythonString
482 bool PythonInteger::Check(PyObject *py_obj) { function in class:PythonInteger
548 bool PythonBoolean::Check(PyObject *py_obj) { function in class:PythonBoolean
577 bool PythonList::Check(PyObject *py_obj) { function in class:PythonList
656 bool PythonTuple::Check(PyObject *py_obj) { function in class:PythonTuple
700 bool PythonDictionary::Check(PyObject *py_obj) { function in class:PythonDictionary
830 bool PythonModule::Check(PyObject *py_obj) { function in class:PythonModule
843 bool PythonCallable::Check(PyObject *py_obj) { function in class:PythonCallable
967 bool PythonFile::Check(PyObject *py_obj) { function in class:PythonFile
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopVersioning.h82 void setSCEVChecks(SCEVUnionPredicate Check);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp1 // MallocOverflowSecurityChecker.cpp - Check for malloc overflows -*- C++ -*-=//
151 auto P = [DR, Pred](const MallocOverflowCheck &Check) {
152 if (const auto *CheckDR = dyn_cast<T1>(Check.variable))
153 return getDecl(CheckDR) == getDecl(DR) && Pred(Check);
170 // Check if the argument to malloc is assigned a value
215 denomExtVal](const MallocOverflowCheck &Check) {
217 (numeratorKnown && (denomExtVal >= Check.maxVal.getExtValue()));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopVersioning.cpp52 void LoopVersioning::setSCEVChecks(SCEVUnionPredicate Check) { argument
53 Preds = std::move(Check);
202 for (const auto &Check : AliasChecks)
203 GroupToNonAliasingScopes[Check.first].push_back(GroupToScope[Check.second]);
/freebsd-13-stable/contrib/unbound/contrib/
H A Dcreate_unbound_ad_servers.cmd14 rem Check Wget installed
H A Dunbound_cache.cmd15 rem Check Unbound installed
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGuardWidening.cpp607 GuardWideningImpl::RangeCheck Check(
611 if (!isKnownNonNegative(Check.getLength(), DL))
614 // What we have in \c Check now is a correct interpretation of \p CheckCond.
626 auto *BaseInst = dyn_cast<Instruction>(Check.getBase());
631 if (match(Check.getBase(), m_Add(m_Value(OpLHS), m_ConstantInt(OpRHS)))) {
632 Check.setBase(OpLHS);
633 APInt NewOffset = Check.getOffsetValue() + OpRHS->getValue();
634 Check.setOffset(ConstantInt::get(Ctx, NewOffset));
636 } else if (match(Check.getBase(),
640 Check
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCChecker.h33 /// Check for a valid bundle.
119 explicit HexagonMCChecker(HexagonMCChecker const &Check,
H A DHexagonMCInstrInfo.cpp126 HexagonMCChecker *Check) {
127 // Check the bundle for errors.
128 bool CheckOk = Check ? Check->check(false) : true;
151 if (Check)
152 Check->reportError("invalid instruction packet: out of slots");
155 // Check the bundle for errors.
156 CheckOk = Check ? Check->check(true) : true;
167 HexagonMCChecker *Check,
124 canonicalizePacketImpl(MCInstrInfo const &MCII, MCSubtargetInfo const &STI, MCContext &Context, MCInst &MCB, HexagonMCChecker *Check) argument
164 canonicalizePacket(MCInstrInfo const &MCII, MCSubtargetInfo const &STI, MCContext &Context, MCInst &MCB, HexagonMCChecker *Check, bool AttemptCompatibility) argument
[all...]
/freebsd-13-stable/stand/i386/boot2/
H A Dsio.S49 sio_flush.1: call sio_ischar # Check for character
/freebsd-13-stable/contrib/netbsd-tests/bin/sh/
H A Dt_varval.sh79 atf_set "descr" "Check that this test has a hope of working. " \
114 atf_set "descr" "Check that all chars can be assigned to vars"
131 atf_set "descr" "Check vars containing all chars can be used"
152 atf_set "descr" "Check vars containing all chars can be used"
199 atf_set "descr" "Check vars containing all chars can be used"
/freebsd-13-stable/stand/i386/btx/btxldr/
H A Dbtxldr.S72 testl $OPT_SET(RBX_MUTE), 4(%esp) # Check first argument
119 testl $KARGS_FLAGS_EXTARG, BA_BOOTFLAGS+4(%esp) # Check for extra data
296 putchr: testb $1,muted # Check muted

Completed in 293 milliseconds

1234