Home
last modified time | relevance | path

Searched full:o (Results 1 – 25 of 195) sorted by relevance

12345678

/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Disinstance.yaml53 …Object of type O is instance of type T if O is the same as T or is subtype of T. For arrays T shou…
54 …type in type hierarchy or T is such array that O array elements are the same or subtype of T array…
330 …Object of type O is instance of type T if O is the same as T or is subtype of T. For arrays T shou…
331 …type in type hierarchy or T is such array that O array elements are the same or subtype of T array…
344 # O has a type of T
347 # O and T are of the same type, std object
353 # O and T are of the same type, custom object
359 # O and T are of the same type, string
364 # O and T are of the same type, type
367 # O is a subtype of T
[all …]
Dcheckcast.yaml245 … description: Object of type O can be cast to type T if O is the same as T or is subtype of T.
289 … description: Object of type O can be cast to type T if O is the same as T or is subtype of T.
346 … description: Object of type O can be cast to type T if O is the same as T or is subtype of T.
390 … description: Object of type O can be cast to type T if O is the same as T or is subtype of T.
448 … description: Object of type O can be cast to type T if O is the same as T or is subtype of T.
488 …Object of type O can be cast to type T if O is the same as T or is subtype of T. For arrays O can …
489 …to T if T is a root type in type hierarchy or T is such array that O array elements are the same o…
526 …Object of type O can be cast to type T if O is the same as T or is subtype of T. For arrays O can …
527 …to T if T is a root type in type hierarchy or T is such array that O array elements are the same o…
570 For arrays O can be cast
[all …]
/arkcompiler/runtime_core/assembler/templates/
Dins_create_api.h.erb26 % signature_str = signature.map { |o| "#{o.type} #{o.name}" }.join(', ')
32 % format.each { |o| o.width = storage_width(o.width) }
34 % format.each_with_index do |o, i|
35 % if o.name.start_with?('v')
42 % format.each_with_index do |o, i|
43 % if o.name.start_with?('imm')
47 <%=group.first.emitter_name%>_.imms.emplace_back(<%= o.name %>);
49 % elsif o.name.start_with?('id')
50 <%=group.first.emitter_name%>_.ids.push_back(<%= o.name %>);
52 <%=group.first.emitter_name%>_.regs.push_back(<%= o.name %>);
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_object.h37 // 19.1.2.2Object.create ( O [ , Properties ] )
39 // 19.1.2.3Object.defineProperties ( O, Properties )
41 // 19.1.2.4Object.defineProperty ( O, P, Attributes )
43 // 19.1.2.5Object.freeze ( O )
45 // 19.1.2.6Object.getOwnPropertyDescriptor ( O, P )
47 // 19.1.2.7Object.getOwnPropertyNames ( O )
49 // 19.1.2.8Object.getOwnPropertySymbols ( O )
51 // 19.1.2.9Object.getPrototypeOf ( O )
55 // 19.1.2.11Object.isExtensible ( O )
57 // 19.1.2.12Object.isFrozen ( O )
[all …]
Dbuiltins_object.cpp141 // 1.If Type(O) is not Object, throw a TypeError exception. in ObjectDefineProperties()
198 // c.Let status be DefinePropertyOrThrow(O,P, desc). in ObjectDefineProperties()
207 // 9.Return O. in ObjectDefineProperties()
211 // 19.1.2.2 Object.create ( O [ , Properties ] )
218 // 1.If Type(O) is neither Object nor Null, throw a TypeError exception. in Create()
222 …THROW_TYPE_ERROR_AND_RETURN(thread, "Create: O is neither Object nor Null", JSTaggedValue::Excepti… in Create()
227 // 2.Let obj be ObjectCreate(O). in Create()
240 // 19.1.2.3 Object.defineProperties ( O, Properties )
247 // 1.Return ObjectDefineProperties(O, Properties). in DefineProperties()
251 // 19.1.2.4 Object.defineProperty ( O, P, Attributes )
[all …]
Dbuiltins_array.cpp407 // 1. Let O be ToObject(this value). in Concat()
410 // 2. ReturnIfAbrupt(O). in Concat()
414 // 3. Let A be ArraySpeciesCreate(O, 0). in Concat()
542 // 1. Let O be ToObject(this value). in CopyWithin()
544 // 2. ReturnIfAbrupt(O). in CopyWithin()
548 // 3. Let len be ToLength(Get(O, "length")). in CopyWithin()
617 // c. Let fromPresent be HasProperty(O, fromKey). in CopyWithin()
620 // i. Let fromVal be Get(O, fromKey). in CopyWithin()
622 // iii. Let setStatus be Set(O, toKey, fromVal, true). in CopyWithin()
625 // i. Let deleteStatus be DeletePropertyOrThrow(O, toKey). in CopyWithin()
[all …]
Dbuiltins_dataview.cpp88 …// 13. Let O be OrdinaryCreateFromConstructor OrdinaryCreateFromConstructor(NewTarget, "%DataViewP… in DataViewConstructor()
92 // 14. ReturnIfAbrupt(O). in DataViewConstructor()
95 // 15. Set O’s [[DataView]] internal slot to true. in DataViewConstructor()
97 // 16. Set O’s [[ViewedArrayBuffer]] internal slot to buffer. in DataViewConstructor()
99 // 17. Set O’s [[ByteLength]] internal slot to viewByteLength. in DataViewConstructor()
101 // 18. Set O’s [[ByteOffset]] internal slot to offset. in DataViewConstructor()
103 // 19. Return O. in DataViewConstructor()
114 // 1. Let O be the this value. in GetBuffer()
116 // 2. f Type(O) is not Object, throw a TypeError exception. in GetBuffer()
118 THROW_TYPE_ERROR_AND_RETURN(thread, "Type(O) is not Object", JSTaggedValue::Exception()); in GetBuffer()
[all …]
Dbuiltins_typedarray.cpp354 // 1. Let O be the this value. in GetBuffer()
356 // 2. If Type(O) is not Object, throw a TypeError exception. in GetBuffer()
360 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetBuffer()
365 // 4. Let buffer be the value of O’s [[ViewedArrayBuffer]] internal slot. in GetBuffer()
379 // 1. Let O be the this value. in GetByteLength()
381 // 2. If Type(O) is not Object, throw a TypeError exception. in GetByteLength()
385 // 3. If O does not have a [[ViewedArrayBuffer]] internal slot, throw a TypeError exception. in GetByteLength()
390 // 4. Let buffer be the value of O’s [[ViewedArrayBuffer]] internal slot. in GetByteLength()
397 // 6. Let size be the value of O’s [[ByteLength]] internal slot. in GetByteLength()
409 // 1. Let O be the this value. in GetByteOffset()
[all …]
Dbuiltins_string_iterator.cpp33 // 1. Let O be the this value. in Next()
35 // 2. If Type(O) is not Object, throw a TypeError exception. in Next()
36 // 3. If O does not have all of the internal slots of an String Iterator Instance (21.1.5.3), in Next()
41 // 4. Let s be the value of the [[IteratedString]] internal slot of O. in Next()
47 // 6. Let position be the value of the [[StringIteratorNextIndex]] internal slot of O. in Next()
53 // a. Set the value of the [[IteratedString]] internal slot of O to in Next()
90 …// 13. Set the value of the [[StringIteratorNextIndex]] internal slot of O to position+ resultSize. in Next()
/arkcompiler/runtime_core/libpandafile/
Dpandafile_isapi.rb61 sig = format_ops(group.first.format).each { |o| o.width = storage_width(o.width) }
63 insn.operands.each_with_index do |o, i|
64 sig[i].width = [o.width, sig[i].width].max
67 sig.each do |o|
68 if o.name.start_with?('imm')
69 o.type, o.name = is_jump ? ['const Label &', 'label'] : ["int#{o.width}_t", o.name]
71 o.type = "uint#{o.width}_t"
/arkcompiler/runtime_core/ldscripts/
Dpanda.ld67 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
73 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
78 KEEP (*crtbegin.o(.ctors))
79 KEEP (*crtbegin?.o(.ctors))
80 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
85 KEEP (*crtbegin.o(.dtors))
86 KEEP (*crtbegin?.o(.dtors))
87 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
Dpanda_test_asan.ld219 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
226 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
231 /* gcc uses crtbegin.o to find the start of
235 actually link against crtbegin.o; the
238 doesn't matter which directory crtbegin.o
240 KEEP (*crtbegin.o(.ctors))
241 KEEP (*crtbegin?.o(.ctors))
243 the crtend.o file until after the sorted ctors.
246 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
252 KEEP (*crtbegin.o(.dtors))
[all …]
/arkcompiler/runtime_core/assembler/
Dasm_isapi.rb90 format_ops(insn.format).each do |o|
91 if o.name.start_with?('imm')
93 o.type, o.name = is_jump ? ['const std::string &', 'label'] : ['double', o.name]
95 o.type, o.name = is_jump ? ['const std::string &', 'label'] : ['int64_t', o.name]
97 elsif o.name.start_with?('id')
98 o.type, o.name = ['const std::string &', o.name]
100 o.type = 'uint16_t'
/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2o=(e,t)=>function(){const r=e.apply(n,arguments);return`[${38+t};2;${r[0]};${r[1]};${r[2]}m`};Obj… class
/arkcompiler/ets_runtime/ecmascript/
Djs_typed_array.cpp39 // 2. Assert: O is an Object that has a [[ViewedArrayBuffer]] internal slot. in GetOwnProperty()
44 // i. Let value be IntegerIndexedElementGet (O, numericIndex). in GetOwnProperty()
66 // 4. Return OrdinaryGetOwnProperty(O, P). in GetOwnProperty()
76 // 2. Assert: O is an Object that has a [[ViewedArrayBuffer]] internal slot. in HasProperty()
81 // i. Let buffer be the value of O’s [[ViewedArrayBuffer]] internal slot. in HasProperty()
86 // vi. If numericIndex ≥ the value of O’s [[ArrayLength]] internal slot, return false. in HasProperty()
117 // 4. Return OrdinaryHasProperty(O, P). in HasProperty()
135 // 2. Assert: O is an Object that has a [[ViewedArrayBuffer]] internal slot. in DefineOwnProperty()
149 // v. Let length be the value of O’s [[ArrayLength]] internal slot. in DefineOwnProperty()
157 // 2. Return IntegerIndexedElementSet (O, intIndex, value). in DefineOwnProperty()
[all …]
Djs_array_iterator.cpp32 // 1.Let O be the this value. in Next()
35 // 2.If Type(O) is not Object, throw a TypeError exception. in Next()
36 …// 3.If O does not have all of the internal slots of an TaggedArray Iterator Instance (22.1.5.3), … in Next()
42 // 4.Let a be O.[[IteratedArrayLike]]. in Next()
49 // 6.Let index be O.[[ArrayLikeNextIndex]]. in Next()
51 // 7.Let itemKind be O.[[ArrayLikeIterationKind]]. in Next()
56 // a. Let len be the value of O’s [[ArrayLength]] internal slot. in Next()
71 // Set O.[[IteratedArrayLike]] to undefined. in Next()
76 // 11.Set O.[[ArrayLikeNextIndex]] to index + 1. in Next()
Djs_regexp_iterator.cpp34 // 1. Let O be the this value. in Next()
36 // 2. If Type(O) is not Object, throw a TypeError exception. in Next()
37 // 3. If O does not have all of the internal slots of a RegExp String Iterator Object Instance in Next()
45 // 4. If O.[[Done]] is true, then in Next()
51 // 5. Let R be O.[[IteratingRegExp]]. in Next()
52 // 6. Let S be O.[[IteratedString]]. in Next()
53 // 7. Let global be O.[[Global]]. in Next()
54 // 8. Let fullUnicode be O.[[Unicode]]. in Next()
66 // a. Set O.[[Done]] to true. in Next()
101 // i. Set O.[[Done]] to true. in Next()
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/unittest/
Ddebug_info_test.js48 add(o) { argument
49 this.x += o;
52 sub(o) { argument
53 this.x -= o;
57 function bar(o) { argument
70 data.sub(o);
73 if (o) {
Dgraph_test.js26 Add(o) { argument
27 this.x = o.x;
28 this.y = o.y;
47 let func1 = function (o) { argument
52 bar(c, o);
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/
DrecursiveTypeofWithProperty.ts17 var o: { variable
19 t: typeof o.b.c,
20 z: typeof o.b.k.t
23 c: typeof o.a.z,
25 t: typeof o.a.t,
/arkcompiler/runtime_core/compiler/optimizer/templates/
DIR-instructions.md.erb20 null_check_users = IR::instructions.select { |x| x.operands.any? { |o| o.tokens.include? Tokens::Ot…
21 zero_check_users = IR::instructions.select { |x| x.operands.any? { |o| o.tokens.include? Tokens::Ot…
22 bounds_check_users = IR::instructions.select { |x| x.operands.any? { |o| o.tokens.include? Tokens::…
23 negative_check_users = IR::instructions.select { |x| x.operands.any? { |o| o.tokens.include? Tokens…
/arkcompiler/runtime_core/tests/cts-coverage-tool/
DREADME.md13 -o path_to_output_yaml_file_with_irrelevant_tests \
14 -O path_to_output_markdown_file_with_irrelevant_tests \
29 --orphaned (-o) - output list of test files that found not relevant to the current spec (the assert…
30 --orphaned_md (-O) - same as --orphaned, but in markdown format
43 -o orphaned.yaml \
/arkcompiler/runtime_core/gn/build/toolchain/
DBUILD.gn54 …{{defines}} {{include_dirs}} {{cflags}} {{cflags_c}} ${extra_cppflags} -c {{source}} -o {{output}}"
58 [ "$object_subdir/{{target_output_name}}.{{source_name_part}}.o" ]
63 …{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}} ${extra_cppflags} -c {{source}} -o {{output}}"
67 [ "$object_subdir/{{target_output_name}}.{{source_name_part}}.o" ]
72 …F $depfile {{defines}} {{include_dirs}} {{asmflags}} ${extra_asmflags} -c {{source}} -o {{output}}"
76 [ "$object_subdir/{{target_output_name}}.{{source_name_part}}.o" ]
97 command = "$ld -shared {{ldflags}} ${extra_ldflags} -o $sofile $os_specific_option @$rspfile"
119 …command = "$ld {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group {{li…
/arkcompiler/ets_runtime/ecmascript/base/
Dtyped_array_helper.cpp55 // 4. Let O be ? AllocateTypedArray(constructorName, NewTarget, "%TypedArray.prototype%"). in TypedArrayConstructor()
106 // c. Perform ? AllocateTypedArrayBuffer(O, len). in CreateFromOrdinaryObject()
125 // iii. Perform ? Set(O, Pk, kValue, true). in CreateFromOrdinaryObject()
138 // g. Return O. in CreateFromOrdinaryObject()
150 // 10. Perform ? AllocateTypedArrayBuffer(O, len). in CreateFromOrdinaryObject()
157 // c. Perform ? Set(O, Pk, kValue, true). in CreateFromOrdinaryObject()
171 // 13. Return O. in CreateFromOrdinaryObject()
262 // 19. Set O’s [[ViewedArrayBuffer]] internal slot to data. in CreateFromTypedArray()
263 // 20. Set O’s [[ByteLength]] internal slot to byteLength. in CreateFromTypedArray()
264 // 21. Set O’s [[ByteOffset]] internal slot to 0. in CreateFromTypedArray()
[all …]
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_namespace.cpp70 // a. Return ? OrdinaryGet(O, P, Receiver). in GetProperty()
75 // 3. Let exports be O.[[Exports]]. in GetProperty()
84 // 5. Let m be O.[[Module]]. in GetProperty()
115 // 1. Let exports be a copy of O.[[Exports]]. in OwnPropertyKeys()
123 // 2. Let symbolKeys be ! OrdinaryOwnPropertyKeys(O). in OwnPropertyKeys()
142 // 1. If Type(P) is Symbol, return ! OrdinaryDefineOwnProperty(O, P, Desc). in DefineOwnProperty()
148 // 2. Let current be ? O.[[GetOwnProperty]](P). in DefineOwnProperty()
186 // 1. If Type(P) is Symbol, return OrdinaryHasProperty(O, P). in HasProperty()
190 // 2. Let exports be O.[[Exports]]. in HasProperty()
216 // 1. If Type(P) is Symbol, return OrdinaryGetOwnProperty(O, P). in GetOwnProperty()
[all …]

12345678