Home
last modified time | relevance | path

Searched refs:iface (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DinterfaceSubtyping.ts21 interface iface {
24 class Camera implements iface{
DarrayBestCommonTypes.ts22 interface iface { }
23 class base implements iface { }
24 class base2 implements iface { }
326 let ifaceObj: iface = null;
372 interface iface { x: string; } interface
373 class base implements iface { x: string; y: string; }
374 class base2 implements iface { x: string; z: string; }
676 let ifaceObj: iface = null;
/arkcompiler/runtime_core/bytecode_optimizer/
Doptimize_bytecode.h25 bool RunOptimizations(compiler::Graph *graph, BytecodeOptIrInterface *iface = nullptr);
Dcodegen.h42 const BytecodeOptIrInterface *iface, pandasm::Program *prog) in BytecodeGen() argument
43 : compiler::Optimization(graph), function_(function), ir_interface_(iface), program_(prog) in BytecodeGen()
Doptimize_bytecode.cpp61 bool RunOptimizations(compiler::Graph *graph, BytecodeOptIrInterface *iface) in RunOptimizations() argument
/arkcompiler/runtime_core/libpandafile/
Dfile_items.cpp334 for (auto iface : ifaces_) { in WriteIfaces() local
335 ASSERT(iface->HasIndex(this)); in WriteIfaces()
336 if (!writer->Write<uint16_t>(iface->GetIndex(this))) { in WriteIfaces()
Dfile_items.h1040 void AddInterface(BaseClassItem *iface) in AddInterface() argument
1042 AddIndexDependency(iface); in AddInterface()
1043 ifaces_.push_back(iface); in AddInterface()
/arkcompiler/runtime_core/assembler/
Dassembly-emitter.cpp781 auto &iface = it->second; in HandleInterfaces() local
783 if (iface.metadata->IsForeign()) { in HandleInterfaces()
784 …record->AddInterface(items->GetOrCreateForeignClassItem(iface_type.GetDescriptor(iface.conflict))); in HandleInterfaces()
786 … record->AddInterface(items->GetOrCreateClassItem(iface_type.GetDescriptor(iface.conflict))); in HandleInterfaces()