Searched refs:isNegative (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/regexp/ |
H A D | regexp_executor.cpp | 143 bool isNegative = stateStack[ahead].type_ == StateType::STATE_NEGATIVE_MATCH_AHEAD; in ExecuteInternal() local 145 PopRegExpState(isNegative); in ExecuteInternal() 147 if (isNegative && MatchFailed(false)) { in ExecuteInternal()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_number_stub_builder.cpp | 369 GateRef isNegative = Int32LessThan(number, Int32(0));
in NumberToString() local 370 BRANCH(isNegative, &numIsNegative, &numNotNegative);
in NumberToString() 404 BRANCH(isNegative, &lenAddOne, &lenNotAddOne);
in NumberToString() 469 BRANCH(isNegative, &strInsertSign, &exit);
in NumberToString()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | number_helper.cpp | 135 bool isNegative = number < 0; 137 if (!isNegative) { 150 uint32_t length = isNegative ? 1 : 0; 167 if (isNegative) {
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | typed_native_inline_lowering.cpp | 1804 Label *isNegative = &labelsForFloatCaseRef.at(labelsIdx++); in BuildMathSignDouble() local 1808 builder->Branch(builder->DoubleLessThan(value, builder->Double(0)), isNegative, notNegative); in BuildMathSignDouble() 1809 builder->Bind(isNegative); in BuildMathSignDouble()
|
H A D | stub_builder.cpp | 8645 Label isNegative(env); in TryStringOrSymbolToElementIndex() 8646 BRANCH(Int32Equal(*c, Int32('-')), &isNegative, &exit); in TryStringOrSymbolToElementIndex() 8647 Bind(&isNegative); in TryStringOrSymbolToElementIndex()
|
Completed in 27 milliseconds