Home
last modified time | relevance | path

Searched defs:cond (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/runtime_core/libpandabase/
Dmacros.h180 #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/
DdefaultParameterAddsUndefinedWithStrictNullChecks.ts154 declare const cond: boolean; constant
DliteralTypes2.ts25 let cond: boolean; variable
/arkcompiler/ets_runtime/ecmascript/
Dlog_wrapper.h31 #define LOG_ECMA_IF(cond, level) (cond) && ARK_LOG(level, Component::ALL) argument
Decma_macros.h154 #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/
Dhelpers.h51 #define THROW_IF(cond, msg) \ argument
56 #define THROW_IF(cond, msg) \ argument
/arkcompiler/toolchain/tooling/test/utils/
Dtest_util.h238 #define ASSERT_TRUE(cond) \ argument
246 #define ASSERT_FALSE(cond) \ argument
/arkcompiler/runtime_core/libpandabase/utils/
Dlogger.h498 #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/
Dassembler_aarch64.cpp888 …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/
Dllvm_ir_builder.cpp1305 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