/arkcompiler/ets_frontend/ets2panda/checker/types/ts/ |
H A D | tupleType.h | 36 std::tuple<ObjectDescriptor *, ArenaVector<ElementFlags> &&, ElementFlags, NamedTupleMemberPool &&> contents, in TupleType() 38 : ObjectType(ObjectType::ObjectTypeKind::TUPLE, std::get<ObjectDescriptor *>(contents)), in TupleType() 39 elementFlags_(std::move(std::get<ArenaVector<ElementFlags> &&>(contents))), in TupleType() 40 combinedFlags_(std::get<ElementFlags>(contents)), in TupleType() 43 namedMembers_(std::move(std::get<NamedTupleMemberPool &&>(contents))), in TupleType() 35 TupleType( std::tuple<ObjectDescriptor *, ArenaVector<ElementFlags> &&, ElementFlags, NamedTupleMemberPool &&> contents, uint32_t minLength, uint32_t fixedLength, bool readonly) TupleType() argument
|
/arkcompiler/ets_frontend/test262/ |
H A D | babel-preprocessor.js | 23 test.contents = babel.transform(test.contents, config).code;
|
/arkcompiler/runtime_core/static_core/libllvmbackend/ |
H A D | llvm_irtoc_compiler.cpp | 185 auto contents = llvm::getBitcodeFileContents(*buffer.get()); in InitializeModule() local 186 LLVM_LOG_IF(!contents, FATAL, INFRA) << "Could get bitcode file contents from file = '" << moduleFile in InitializeModule() 187 << "', error: '" << toString(contents.takeError()) << "'"; in InitializeModule() 190 LLVM_LOG_IF(contents->Mods.size() != EXPECTED_MODULES, FATAL, INFRA) in InitializeModule() 191 << "Inline module file '" << moduleFile << "' has unexpected number of modules = " << contents->Mods.size() in InitializeModule() 193 auto module = contents->Mods[0].parseModule(*GetLLVMContext()); in InitializeModule()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/object_code/ |
H A D | created_object_file.cpp | 75 auto contents = cantFail(section.getContents()); in GetSection() local 76 auto memory = reinterpret_cast<const uint8_t *>(contents.data()); in GetSection() 77 return SectionReference {memory, contents.size(), name, section.getAlignment()}; in GetSection() 120 auto contents = cantFail(section.getContents()); in GetRoDataSections() local 121 auto memory = reinterpret_cast<const uint8_t *>(contents.data()); in GetRoDataSections() 122 references.emplace_back(memory, contents.size(), name.str(), section.getAlignment()); in GetRoDataSections()
|
/arkcompiler/ets_runtime/test/ |
H A D | run_ts_test262.py | 164 contents = ['{'] variable 168 contents.append('\n') 169 contents.extend(file.readlines()) 170 contents.append('\n') 181 c.extend(contents)
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | obj_emit.h | 400 : Emitter(cg, objFileName), alloc(memPool), sections(alloc.Adapter()), contents(alloc.Adapter()) in ObjEmitter() 413 contents.resize(funcNum); in ObjEmitter() 516 return contents; in GetContents() 522 for (auto *content : contents) { in GetBeforeTextDataSize() 556 MapleVector<ObjFuncEmitInfo *> contents; /* each item is the code info of a cgfunc */ member in maplebe::ObjEmitter
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | ETSchecker.cpp | 483 ETSObjectType *ETSChecker::GlobalBuiltinBoxType(Type *contents) in GlobalBuiltinBoxType() argument 485 switch (TypeKind(contents)) { in GlobalBuiltinBoxType() 505 substitution->emplace(base->TypeArguments()[0]->AsETSTypeParameter(), contents); in GlobalBuiltinBoxType()
|
H A D | ETSchecker.h | 128 ETSObjectType *GlobalBuiltinBoxType(Type *contents);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
H A D | aarch64_obj_emitter.cpp | 70 LogInfo::MapleLogger() << "contents: " << std::hex << GetTextDataElem32(useOffset) << "\n"; in HandleLocalBranchFixup() 76 LogInfo::MapleLogger() << "after contents: " << std::hex << GetTextDataElem32(useOffset) << "\n"; in HandleLocalBranchFixup() 82 LogInfo::MapleLogger() << "contents: " << std::hex << GetTextDataElem32(useOffset) << "\n"; in HandleLocalBranchFixup() 88 LogInfo::MapleLogger() << "after contents: " << std::hex << GetTextDataElem32(useOffset) << "\n"; in HandleLocalBranchFixup() 109 for (auto *content : contents) { 163 auto &contents = GetContents(); 164 for (auto *content : contents) { 176 auto &contents = GetContents(); 178 for (size_t i = 0; i < contents.size(); i++) { 179 auto *content = contents[ [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
H A D | aarch64_obj_emitter.h | 75 contents.insert(contents.begin() + cgFunc.GetFunction().GetPuidxOrigin(), content); in CreateFuncEmitInfo()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | [all...] |