Home
last modified time | relevance | path

Searched full:contains (Results 1 – 25 of 172) sorted by relevance

1234567

/arkcompiler/runtime_core/verification/util/tests/
Dint_set_test.cpp35 EXPECT_TRUE(iset.Contains(5)); in TEST_F()
36 EXPECT_FALSE(iset.Contains(3)); in TEST_F()
42 EXPECT_TRUE(iset.Contains(1)); in TEST_F()
43 EXPECT_TRUE(iset.Contains(5)); in TEST_F()
44 EXPECT_FALSE(iset.Contains(3)); in TEST_F()
51 EXPECT_TRUE(iset1.Contains(1)); in TEST_F()
52 EXPECT_TRUE(iset1.Contains(5)); in TEST_F()
53 EXPECT_FALSE(iset1.Contains(3)); in TEST_F()
56 EXPECT_TRUE(iset2.Contains(1)); in TEST_F()
57 EXPECT_TRUE(iset2.Contains(5)); in TEST_F()
[all …]
/arkcompiler/runtime_core/verification/util/
Daddr_map.h161 return AddrRange_.Contains(addr); in IsInAddressSpace()
166 if (!AddrRange_.Contains(addr_from) || !AddrRange_.Contains(addr_to)) { in Mark()
176 if (!AddrRange_.Contains(addr_from) || !AddrRange_.Contains(addr_to)) { in Clear()
186 if (!AddrRange_.Contains(addr_from) || !AddrRange_.Contains(addr_to)) { in HasMarks()
Dint_set.h46 bool Contains(T x) const in Contains() function
48 return repr_->Contains(x); in Contains()
221 virtual bool Contains(T x) const = 0;
245 bool Contains(T x) const override in Contains() function
276 if (other.Contains(value)) { in Intersect()
297 … repr_.erase(std::remove_if(repr_.begin(), repr_.end(), [&](T x) { return !other.Contains(x); }), in IntersectInPlace()
398 bool Contains(T x) const override in Contains() function
Drelation.h122 return from < Direct_.size() && Direct_[from].Contains(to); in IsInDirectRelation()
127 return from < Inverse_.size() && Inverse_[from].Contains(to); in IsInInverseRelation()
/arkcompiler/ets_frontend/test262/
DREADME.md3 es5_tests.txt: This file contains a list of ES5 test cases. If useful cases are found missing, you…
4 es2015_tests.txt: This file contains a full list of use cases of ES2015 except those filtered out …
5 es2021_tests.txt: This file contains a full list of use cases of ES2021 except those filtered out …
6 intl_tests.txt: This file contains a list of internationalization test cases. If you find useful c…
7 skip_tests.json: This file contains a list of use cases that do not meet the requirements. If usefu…
8 intl_skip_tests.json: This file contains a list of non-compliant internationalization use cases. If…
39 Run test262 - ES2015. all: Contains all use cases for
80 #### 2.4.2 Contains all use cases for ES5 and ES2015
/arkcompiler/runtime_core/runtime/tests/
Dframe_allocator_test.cpp183 ASSERT_FALSE(alloc.Contains(invalid_addr)); in CheckAddrInsideAllocator()
188 ASSERT_TRUE(alloc.Contains(addr1_inside)); in CheckAddrInsideAllocator()
189 ASSERT_FALSE(alloc.Contains(invalid_addr)); in CheckAddrInsideAllocator()
192 ASSERT_FALSE(alloc.Contains(addr1_inside)); in CheckAddrInsideAllocator()
193 ASSERT_FALSE(alloc.Contains(invalid_addr)); in CheckAddrInsideAllocator()
200 ASSERT_TRUE(alloc.Contains(addr1_inside)); in CheckAddrInsideAllocator()
201 ASSERT_TRUE(alloc.Contains(addr2_inside)); in CheckAddrInsideAllocator()
202 ASSERT_FALSE(alloc.Contains(invalid_addr)); in CheckAddrInsideAllocator()
/arkcompiler/runtime_core/tests/checked/
Dchecker.rb69 def contains?(str, match)
94 @current_index = @lines.index { |line| contains?(line, match) }
102 index = @lines.drop(@current_index).index { |line| contains?(line, match) }
111 raise_error "#{@name} should not occur: #{match_str(match)}" if contains?(line, match)
119 raise_error "#{@name} should not occur: #{match_str(match)}" if contains?(line, match)
275 @events_scope.lines.count { |event| contains?(event, match) }
293 res = @events_scope.lines.count { |event| contains?(event, match) }
314 @ir_scope.lines.count { |inst| contains?(inst, match) }
366 …if line.start_with?('METHOD_INFO:') && contains?(@disasm_lines[index + 1].split(':', 2)[1].strip, …
396 if contains?(line, match)
/arkcompiler/runtime_core/docs/
Druntime-compiled_code-interaction.md54 must contains a valid pointer to `panda::ManagedThread` on entry to each compiled function.
83 A stack frame contains data necessary to execute the function the frame belongs to.
88 …rames are organized into a linked list. The field `panda::Frame::prev_` contains a pointer to the …
140 `stack pointer` register contains a pointer to the last stack element.
141 `frame pointer` register contains a pointer to the place in the stack where the return address is s…
143 Panda contains special class for getting cframe layout: `class CFrameLayout`. Everything related to…
156 // r0 contains a pointer to the current `panda::Method`
161 // r0 contains a pointer to `panada::Method` which describes `int max(int, int)` function.
168 // r0 contains the function result
172 The Compiler have an entrypoints table. Each entrypoint contains a link to the Bridge Function.
[all …]
Daot.md23 - `.text` - Contains compiled native code. Code of each compiled method is placed sequentially into…
25 - `.aot_got` - Contains table of the runtime's entrypoint handlers. Must be placed right before `.t…
26 - `.aot` - Contains all information that describes AOT structure. All used structures can be found …
37 `.aot` section contains combination of the following structures:
/arkcompiler/runtime_core/libpandabase/mem/
Dgc_barrier.h170 BOOL_ADDRESS, // contains address of bool value (bool*)
171 UINT8_ADDRESS, // contains address of uint8_t value
172 … FUNC_WITH_OBJ_REF_ADDRESS, // contains address of function with this sig: void foo(void* );
173 UINT8_LITERAL, // contains uint8_t value
174 …FUNC_WITH_TWO_OBJ_REF_ADDRESSES, // contains address of function with this sig: void foo(void* , …
Dmem_range.h55 bool Contains(const MemRange &other) const in Contains() function
60 bool Contains(uintptr_t addr) const in Contains() function
/arkcompiler/toolchain/tooling/base/
Dpt_json.cpp63 ASSERT(key != nullptr && !Contains(key)); in Add()
91 ASSERT(key != nullptr && !Contains(key)); in Add()
109 ASSERT(key != nullptr && !Contains(key)); in Add()
127 ASSERT(key != nullptr && !Contains(key)); in Add()
221 ASSERT(key != nullptr && Contains(key)); in Remove()
227 bool PtJson::Contains(const char *key) const in Contains() function in panda::ecmascript::tooling::PtJson
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dliveness_analyzer.h42 // Check if range contains other range
43 bool Contains(const LiveRange &other) const in Contains() function
47 // Check if range contains point
48 bool Contains(LifeNumber number) const in Contains() function
140 } else if (!live_ranges_.front().Contains(live_range)) { in AppendRange()
163 if (live_ranges_.front().Contains(live_ranges_[i])) { in AppendGroupRange()
166 } else if (live_ranges_.front().Contains(live_ranges_[i].GetBegin())) { in AppendGroupRange()
482 if (GetBlockLiveRange(bb).Contains(ln)) { in GetBlockCoversPoint()
/arkcompiler/runtime_core/runtime/bridge/arch/arm/
Dhandle_call_v4_v4_v4_imm4_id16_arm.S27 orr r3, r9, r3 // r3 now contains v4_v4_v4_imm4
29 and r9, r9, #0xF // r9 now contains acc position
Dhandle_call_v4_v4_v4_imm4_id16_armhf.S32 orr r10, ip, r10 // r10 now contains v4_v4_v4_imm4
34 and ip, ip, #0xF // ip now contains acc position
/arkcompiler/ets_runtime/docs/
Doverview.md3 …able multi-language compilation and runtime platform of OpenHarmony. It contains core components s…
34 JS Runtime Subsystem contains various modules related to JS runtime:
51 …r JS Runtime is planned to statically generate a C/C++ header file that contains the TS object lay…
/arkcompiler/runtime_core/runtime/bridge/arch/aarch64/
Dhandle_call_v4_v4_v4_imm4_id16_aarch64.S26 orr w5, w14, w5, lsl #8 // w5 now contains v4_v4_v4_imm4
28 and w14, w14, #0xF // w14 now contains acc position
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
Dencoder.md22 …or spill/fill registers and access for native parameters. That's why it contains Labels list for h…
83 Class **TypeInfo** contains information about supported types: BOOL, INT8, INT16, INT32, INT64, FLO…
93 Class **Reg** contains number of register(id) and **TypeInfo**.
104 Class **Imm** contains value of the following types: int8_t, int16_t, int32_t, int64_t, float, doub…
117 Class **MemRef** contains base **Reg**, index **Reg**, scale **Imm** and disp **Imm**.
/arkcompiler/runtime_core/compiler/docs/
Dtry_catch_blocks_ir.md125 …sters in the points where throwable instructions are placed. `CatchPhi` contains vector of throwab…
127 In the next example `CatchPhi` has 3 inputs: `a0`, `a1`, `a2` and contains vector of 3 throwable in…
142 `Try` - pseudo instruction which is added to the `Try-begin` basic block. It contains pointer to th…
Dplt.md10 Unique `SlowPath` blob is generated for each place it is called, and as it contains saving register…
23 …reserved in PLT-GOT table. `FirstSlot` is filled during AOT file creation and contains `method Id`.
24 `SecondSlot` is filled during AOT file loading into runtime and contains `PLT CallStatic Resolver` …
67 slots are reserved in PLT-GOT table. `FirstSlot` is filled during AOT file creation and contains `m…
117 … reserved in PLT-GOT table. `FirstSlot` is filled during AOT file creation and contains `class Id`.
/arkcompiler/runtime_core/scripts/
Dmemdump.py24 The report contains:
34 option is used. If the dump is collected during runtime destruction this report will contains
60 """Contains information about all allocated memory"""
/arkcompiler/runtime_core/verification/type/
Dtype_set.h61 bool Contains(const Type &t) const in Contains() function
63 … t.GetTypeSystemKind() == kind_ && t.GetThreadNum() == threadnum_ && Numbers_.Contains(t.Number()); in Contains()
/arkcompiler/runtime_core/verification/models/
DREADME.md24 This file contains two execution modes:
/arkcompiler/runtime_core/runtime/mem/
Dheap_verifier.h46 …* HeapObjectVerifier iterates over HeapManager's allocated objects. If an object contains referenc…
137 * @param object the object which contains verifying reference
/arkcompiler/runtime_core/isa/
DREADME6 The main file that contains the whole data about Panda Bytecode.

1234567