/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/templates/ |
D | report.erb | 15 Total number of tests: <%= rep['tests']['total']%> 16 Tests accepted for coverage: <%= rep['tests']['counted_for_coverage']%> 17 Tests with not matching assertions: <%= rep['tests']['orphaned']%> 20 …Total number of assertions: <%= rep['assertions']['testable'] + rep['assertions']['non_testable']%> 21 Testable assertions: <%= rep['assertions']['testable']%> 22 Non-testable assertions: <%= rep['assertions']['non_testable']%> 23 Covered assertions: <%= rep['assertions']['covered']%> 24 Not covered assertions: <%= rep['assertions']['not_covered']%> 26 Coverage by Groups:<% rep['coverage_by_groups'].each do |g| %> 30 Overall Coverage Metric: <%= rep['coverage_metric']%>
|
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/ |
D | report_md.rb | 25 def initialize(rep) argument 27 @rep = rep
|
/arkcompiler/ets_runtime/ecmascript/ |
D | property_attributes.h | 240 auto rep = GetRepresentation(); in IsDoubleRep() local 241 return rep == Representation::DOUBLE; in IsDoubleRep() 246 auto rep = GetRepresentation(); in IsIntRep() local 247 return rep == Representation::INT; in IsIntRep()
|
D | js_hclass.h | 1812 inline void SetRepresentation(Representation rep) in SetRepresentation() argument 1814 RepresentationBits::Set(rep, &data_); in SetRepresentation()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | number_speculative_retype.h | 60 GateRef SetOutputType(GateRef gate, Representation rep);
|
D | llvm_ir_builder.h | 395 LLVMTypeRef GetMachineRepType(MachineRep rep) const; 406 LLVMValueRef PointerAdd(LLVMValueRef baseAddr, LLVMValueRef offsetInByte, LLVMTypeRef rep);
|
D | number_speculative_retype.cpp | 54 GateRef NumberSpeculativeRetype::SetOutputType(GateRef gate, Representation rep) in SetOutputType() argument 58 if (rep == Representation::INT) { in SetOutputType() 60 } else if (rep == Representation::DOUBLE) { in SetOutputType()
|
D | stub_builder-inl.h | 1700 GateRef glue, GateRef array, GateRef index, GateRef val, GateRef rep, Label *repChange) in SetValueToTaggedArrayWithRep() argument 1704 SetValueWithRep(glue, array, dataOffset, val, rep, repChange); in SetValueToTaggedArrayWithRep() 2061 inline GateRef StubBuilder::IsIntRepInPropAttr(GateRef rep) in IsIntRepInPropAttr() argument 2063 return Int32Equal(rep, Int32(static_cast<int32_t>(Representation::INT))); in IsIntRepInPropAttr() 2066 inline GateRef StubBuilder::IsDoubleRepInPropAttr(GateRef rep) in IsDoubleRepInPropAttr() argument 2068 return Int32Equal(rep, Int32(static_cast<int32_t>(Representation::DOUBLE))); in IsDoubleRepInPropAttr()
|
D | stub_builder.cpp | 459 GateRef rep = GetRepInPropAttr(attr); in JSObjectGetProperty() local 481 Branch(IsDoubleRepInPropAttr(rep), &doubleToTagged, &nonDoubleToTagged); in JSObjectGetProperty() 490 Branch(IsIntRepInPropAttr(rep), &intToTagged, &exit); in JSObjectGetProperty() 1035 GateRef rep = GetRepInPropAttr(attr); in SetValueWithAttr() local 1036 SetValueWithRep(glue, obj, offset, value, rep, &repChange); in SetValueWithAttr() 1050 GateRef glue, GateRef obj, GateRef offset, GateRef value, GateRef rep, Label *repChange) in SetValueWithRep() argument 1059 Branch(IsDoubleRepInPropAttr(rep), &repIsDouble, &repIsNonDouble); in SetValueWithRep() 1093 Branch(IsIntRepInPropAttr(rep), &repIsInt, &repIsTagged); in SetValueWithRep() 1477 GateRef rep = HandlerBaseGetRep(handlerInfo); in LoadFromField() local 1478 Branch(IsDoubleRepInPropAttr(rep), &doubleToTagged, &nonDoubleToTagged); in LoadFromField() [all …]
|
D | stub_builder.h | 419 GateRef glue, GateRef array, GateRef index, GateRef val, GateRef rep, Label *repChange); 535 …void SetValueWithRep(GateRef glue, GateRef obj, GateRef offset, GateRef value, GateRef rep, Label …
|
D | llvm_ir_builder.cpp | 444 LLVMTypeRef LLVMIRBuilder::GetMachineRepType(MachineRep rep) const in GetMachineRepType() 447 switch (rep) { in GetMachineRepType() 1464 …lueRef LLVMIRBuilder::PointerAdd(LLVMValueRef baseAddr, LLVMValueRef offsetInByte, LLVMTypeRef rep) in PointerAdd() argument 1468 LLVMValueRef result = LLVMBuildPointerCast(builder_, dstRef8, rep, ""); in PointerAdd()
|