/arkcompiler/runtime_core/libpandabase/ |
D | macros.h | 180 #define ASSERT(cond) \ argument 186 #define ASSERT_DO(cond, func) \ argument 194 #define ASSERT_PRINT(cond, message) \ argument 202 #define ASSERT_RETURN(cond) assert(cond) argument 210 #define ASSERT(cond) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 211 #define ASSERT_DO(cond, func) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 212 #define ASSERT_PRINT(cond, message) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 213 #define ASSERT_RETURN(cond) static_cast<void>(cond) // NOLINT(cppcoreguidelines-macro-usage) argument
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | defaultParameterAddsUndefinedWithStrictNullChecks.ts | 154 declare const cond: boolean; constant
|
D | literalTypes2.ts | 25 let cond: boolean; variable
|
/arkcompiler/ets_runtime/ecmascript/ |
D | log_wrapper.h | 31 #define LOG_ECMA_IF(cond, level) (cond) && ARK_LOG(level, Component::ALL) argument
|
D | ecma_macros.h | 154 #define DASSERT(cond) assert(cond) argument 156 #define DASSERT_PRINT(cond, message) \ argument 162 #define DASSERT(cond) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 163 #define DASSERT_PRINT(cond, message) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument 167 #define RASSERT(cond) assert(cond) argument 169 #define RASSERT_PRINT(cond, message) \ argument
|
/arkcompiler/runtime_core/libpandafile/ |
D | helpers.h | 51 #define THROW_IF(cond, msg) \ argument 56 #define THROW_IF(cond, msg) \ argument
|
/arkcompiler/toolchain/tooling/test/utils/ |
D | test_util.h | 238 #define ASSERT_TRUE(cond) \ argument 246 #define ASSERT_FALSE(cond) \ argument
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | logger.h | 498 #define LOG_IF(cond, level, component) (cond) && LOG(level, component) argument 501 #define PLOG_IF(cond, level, component) (cond) && PLOG(level, component) argument
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/ |
D | assembler_aarch64.cpp | 888 …emblerAarch64::CMov(const Register &rd, const Register &rn, const Operand &operand, Condition cond) in CMov() 937 void AssemblerAarch64::B(Condition cond, Label *label) in B() 945 void AssemblerAarch64::B(Condition cond, int32_t imm) in B()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | llvm_ir_builder.cpp | 1305 LLVMValueRef cond = gate2LValue_[cmp]; in VisitBranch() local 1330 LLVMValueRef cond = gate2LValue_[input]; in VisitSwitch() local 1840 LLVMIntPredicate LLVMIRBuilder::ConvertLLVMPredicateFromICMP(ICmpCondition cond) in ConvertLLVMPredicateFromICMP() 1870 LLVMRealPredicate LLVMIRBuilder::ConvertLLVMPredicateFromFCMP(FCmpCondition cond) in ConvertLLVMPredicateFromFCMP() 1906 auto cond = acc_.GetICmpCondition(gate); in VisitCmp() local 1910 auto cond = acc_.GetFCmpCondition(gate); in VisitCmp() local 2164 LLVMValueRef cond = gate2LValue_[cmp]; in HandleDeoptCheck() local
|