Searched defs:cond (Results 1 – 6 of 6) sorted by relevance
/ark/runtime_core/libpandabase/ |
D | macros.h | 167 #define ASSERT(cond) \ argument 173 #define ASSERT_DO(cond, func) \ argument 179 #define ASSERT_PRINT(cond, message) \ argument 185 #define ASSERT_RETURN(cond) assert(cond) argument 193 #define ASSERT(cond) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 194 #define ASSERT_DO(cond, func) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 195 #define ASSERT_PRINT(cond, message) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 196 #define ASSERT_RETURN(cond) static_cast<void>(cond) // NOLINT(cppcoreguidelines-macro-usage) argument
|
/ark/js_runtime/ecmascript/ |
D | ecma_macros.h | 161 #define DASSERT(cond) assert(cond) argument 163 #define DASSERT_PRINT(cond, message) \ argument 169 #define DASSERT(cond) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 170 #define DASSERT_PRINT(cond, message) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 174 #define RASSERT(cond) assert(cond) argument 176 #define RASSERT_PRINT(cond, message) \ argument
|
/ark/js_runtime/ecmascript/tooling/test/utils/ |
D | test_util.h | 200 #define ASSERT_TRUE(cond) \ argument 208 #define ASSERT_FALSE(cond) \ argument
|
/ark/runtime_core/runtime/ |
D | intrinsics.cpp | 228 void Assert(uint8_t cond) in Assert() 241 void AssertPrint(uint8_t cond, coretypes::String *s) in AssertPrint()
|
/ark/runtime_core/libpandabase/utils/ |
D | logger.h | 430 #define LOG_IF(cond, level, component) (cond) && LOG(level, component) argument 433 #define PLOG_IF(cond, level, component) (cond) && PLOG(level, component) argument
|
/ark/js_runtime/ecmascript/compiler/ |
D | llvm_ir_builder.cpp | 942 LLVMValueRef cond = gateToLLVMMaps_[cmp]; in VisitBranch() local 965 LLVMValueRef cond = gateToLLVMMaps_[input]; in VisitSwitch() local
|