/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_segment_iterator.cpp | 35 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuBreakIterator() local 36 native->ResetExternalPointer(thread, icuBreakIterator); in SetIcuBreakIterator() 52 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetUString() local 53 native->ResetExternalPointer(thread, icuUnicodeString); in SetUString()
|
H A D | js_segments.cpp | 35 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuBreakIterator() local 36 native->ResetExternalPointer(thread, icuBreakIterator); in SetIcuBreakIterator() 52 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetUString() local 53 native->ResetExternalPointer(thread, icuUnicodeString); in SetUString()
|
H A D | js_plural_rules.cpp | 55 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuNumberFormatter() local 56 native->ResetExternalPointer(thread, icuPointer); in SetIcuNumberFormatter() 93 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuPluralRules() local 94 native->ResetExternalPointer(thread, icuPointer); in SetIcuPluralRules()
|
H A D | object_factory-inl.h | 127 // In some cases, the size of JS/TS object is too small and the native binding size is too large. in NewJSNativePointer() 155 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in NewJSIntlIcuData() local 156 native->ResetExternalPointer(thread_, icuPoint); in NewJSIntlIcuData()
|
H A D | js_segmenter.cpp | 34 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuBreakIterator() local 35 native->ResetExternalPointer(thread, icuBreakIterator); in SetIcuBreakIterator()
|
H A D | js_date_time_format.cpp | 116 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuLocale() local 117 native->ResetExternalPointer(thread, icuPointer); in SetIcuLocale() 154 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuSimpleDateFormat() local 155 native->ResetExternalPointer(thread, icuPointer); in SetIcuSimpleDateFormat() 158 // According to the observed native memory, we give an approximate native binding value. in SetIcuSimpleDateFormat()
|
H A D | js_list_format.cpp | 53 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuListFormatter() local 54 native->ResetExternalPointer(thread, icuListFormatter); in SetIcuListFormatter()
|
H A D | js_displaynames.cpp | 99 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuLocaleDisplayNames() local 100 native->ResetExternalPointer(thread, iculocaledisplaynames); in SetIcuLocaleDisplayNames()
|
H A D | js_collator.cpp | 95 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in SetIcuCollator() local 96 native->ResetExternalPointer(thread, icuCollator); in SetIcuCollator()
|
H A D | object_factory.cpp | 450 JSNativePointer *native = JSNativePointer::Cast(data.GetTaggedObject()); in NewJSRegExpByteCodeData() local 451 native->ResetExternalPointer(thread_, newBuffer); in NewJSRegExpByteCodeData()
|
/arkcompiler/ets_runtime/tools/ap_file_viewer/native/src/ |
H A D | main.cpp | 36 size_t length = native::ConvertApToJson(input.c_str(), input.length()); in main() 52 auto result = native::GetConvertResult(buffer, length); in main()
|
H A D | prof_dump_json.cpp | 22 namespace native { namespace 86 } // namespace native
|
/arkcompiler/ets_runtime/tools/ap_file_viewer/native/include/ |
H A D | prof_dump_json.h | 28 namespace native { namespace 33 } // namespace native
|
H A D | prof_convert_json.h | 23 namespace native { namespace 171 } // namespace native
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | generate.py | 160 """Check 'native' near the source and link to destdir.""" 161 native = full.parent.joinpath('native') 162 if native.is_dir(): 163 log.trace('Native: %s', native) 164 force_link(dest.joinpath('native'), native) 209 'native': BenchGenerator.check_native(
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 1309 // str is from snapshot file, which is in native heap. in DeserializeString() 1698 EncodeBit native(0); in NativePointerToEncodeBit() 1713 native.SetNativePointerOrObjectIndex(index); in NativePointerToEncodeBit() 1715 return native; in NativePointerToEncodeBit() 1727 LOG_FULL(FATAL) << "native method did not register in g_table, please register it first"; in SearchNativeMethodIndex() 1756 EncodeBit native(*value); in DeserializeNativePointer() 1757 size_t index = native.GetNativePointerOrObjectIndex(); in DeserializeNativePointer()
|
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
H A D | js_stackinfo.cpp | 222 data.append(" at native method (").append(strm.str()).append(")\n"); in BuildJsStackTrace() 278 uintptr_t *native = nullptr; in BuildJsStackInfo() local 290 if (native != nullptr) { in BuildJsStackInfo() 291 frameInfo.nativePointer = native; in BuildJsStackInfo() 292 native = nullptr; in BuildJsStackInfo() 337 native = reinterpret_cast<uintptr_t *>(extraInfo->GetData()); in BuildJsStackInfo() 1083 // js && jit -> true, native -> false 1117 // js -> true, native -> false
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | debugger_api.cpp | 178 LOG_DEBUGGER(ERROR) << "GetVregIndex: native frame not support"; in GetVregIndex() 916 void *native = nullptr; in GetNativePointer() local 937 native = cb(reinterpret_cast<void *>(extraInfo->GetData())); in GetNativePointer() 938 nativePointer.push_back(native); in GetNativePointer()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_sample.cpp | 737 Local<NativePointerRef> native = NativePointerRef::New(vm, static_cast<void *>(a)); in NativePointer() local 738 bool b = object->ConvertToNativeBindingObject(vm, native); in NativePointer()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 3979 cc.warn("Spine Skeleton getTextureAtlas not support in native"); 4073 cc.warn("Spine Skeleton _ensureListener not need in native"); 9469 15004: "The native folder may be generated from older versions, please refer https://docs.cocos.com/creator/manual/en/release-notes/ to upgrade.", 18687 get native() { 18823 get native() { 18991 get native() { 19106 const e = this.targets.map((e => e.native[t] || e.native)); 19109 get native() { [all...] |