Home
last modified time | relevance | path

Searched refs:innerResult (Results 1 - 9 of 9) sorted by relevance

/arkcompiler/toolchain/tooling/test/testcases/
H A Djs_closure_scope_test.h90 std::unique_ptr<PtJson> innerResult; in JsClosureScopeTest()
91 ret = result->GetArray("result", &innerResult); in JsClosureScopeTest()
97 ret = innerResult->Get(0)->GetString("name", &name); in JsClosureScopeTest()
103 ret = innerResult->Get(0)->GetObject("value", &value); in JsClosureScopeTest()
131 std::unique_ptr<PtJson> innerResult; in JsClosureScopeTest()
132 ret = result->GetArray("result", &innerResult); in JsClosureScopeTest()
138 ret = innerResult->Get(0)->GetString("name", &name); in JsClosureScopeTest()
144 ret = innerResult->Get(0)->GetObject("value", &value); in JsClosureScopeTest()
155 ret = innerResult->Get(1)->GetString("name", &name); in JsClosureScopeTest()
160 ret = innerResult in JsClosureScopeTest()
[all...]
H A Djs_local_variable_scope_test.h73 std::unique_ptr<PtJson> innerResult; in JsLocalVariableScopeTest()
74 ret = result->GetArray("result", &innerResult); in JsLocalVariableScopeTest()
83 for (int32_t i = 0; i < innerResult->GetSize(); i++) { in JsLocalVariableScopeTest()
84 ret = innerResult->Get(i)->GetString("name", &name); in JsLocalVariableScopeTest()
89 ret = innerResult->Get(i)->GetObject("value", &value); in JsLocalVariableScopeTest()
H A Djs_container_test.h93 std::unique_ptr<PtJson> innerResult; in JsContainerTest()
94 ret = result->GetArray("result", &innerResult); in JsContainerTest()
105 for (int32_t i = 0; i < innerResult->GetSize(); i++) { in JsContainerTest()
107 ret = innerResult->Get(i)->GetString("name", &name); in JsContainerTest()
112 ret = innerResult->Get(i)->GetObject("value", &value); in JsContainerTest()
H A Djs_module_variable_test.h105 std::unique_ptr<PtJson> innerResult; in JsModuleVariableTest()
106 ret = result->GetArray("result", &innerResult); in JsModuleVariableTest()
132 std::unique_ptr<PtJson> innerResult; in JsModuleVariableTest()
133 ret = result->GetArray("result", &innerResult); in JsModuleVariableTest()
139 for (int32_t i = 0; i < innerResult->GetSize(); i++) { in JsModuleVariableTest()
140 auto variableInfo = PropertyDescriptor::Create(*(innerResult->Get(i))); in JsModuleVariableTest()
/arkcompiler/ets_frontend/es2panda/compiler/base/
H A Diterators.cpp84 VReg innerResult = pg_->AllocReg(); in Close() local
93 pg_->StoreConst(node_, innerResult, Constant::JS_UNDEFINED); in Close()
101 // 4. Let innerResult be GetMethod(iterator, "return"). in Close()
104 // 5. If innerResult.[[Type]] is normal, then in Close()
106 // a. Let return be innerResult.[[Value]]. in Close()
109 // c. Set innerResult to Call(return, iterator). in Close()
112 // d. If innerResult.[[Type]] is normal, set innerResult to Await(innerResult.[[Value]]). in Close()
115 pg_->StoreAccumulator(node_, innerResult); in Close()
[all...]
/arkcompiler/ets_frontend/ets2panda/compiler/base/
H A Diterators.cpp84 VReg innerResult = pg_->AllocReg(); in CloseInnerResultNormal() local
89 // a. Let return be innerResult.[[Value]]. in CloseInnerResultNormal()
105 // c. Set innerResult to Call(return, iterator). in CloseInnerResultNormal()
107 // d. If innerResult.[[Type]] is normal, set innerResult to Await(innerResult.[[Value]]). in CloseInnerResultNormal()
109 pg_->StoreAccumulator(node_, innerResult); in CloseInnerResultNormal()
114 pg_->StoreAccumulator(node_, innerResult); in CloseInnerResultNormal()
132 VReg innerResult = pg_->AllocReg(); in Close() local
144 // 4. Let innerResult b in Close()
[all...]
/arkcompiler/toolchain/tooling/client/domain/
H A Druntime_client.cpp245 std::unique_ptr<PtJson> innerResult; in HandleGetProperties() local
246 ret = result->GetArray("result", &innerResult); in HandleGetProperties()
248 LOGE("arkdb: find innerResult error"); in HandleGetProperties()
273 for (int32_t i = 0; i < innerResult->GetSize(); i++) { in HandleGetProperties()
274 std::unique_ptr<PropertyDescriptor> variableInfo = PropertyDescriptor::Create(*(innerResult->Get(i))); in HandleGetProperties()
/arkcompiler/ets_runtime/ecmascript/
H A Djs_iterator.cpp263 // 6.Let innerResult be Call(return, iterator, «‍ »). in IteratorClose()
271 JSHandle<JSTaggedValue> innerResult(thread, ret); in IteratorClose()
283 // 8.If innerResult.[[type]] is throw, return Completion(innerResult). in IteratorClose()
285 return innerResult; in IteratorClose()
287 // 9.If Type(innerResult.[[value]]) is not Object, throw a TypeError exception. in IteratorClose()
288 if (!innerResult->IsECMAObject()) { in IteratorClose()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
H A Dllvm_ir_constructor.cpp4610 llvm::Value *innerResult = nullptr; in VisitIsInstance() local
4616 innerResult = ctor->builder_.CreateZExt(cmp, ctor->builder_.getInt8Ty()); in VisitIsInstance()
4621 innerResult = ctor->CreateIsInstanceInnerBlock(inst, klassObj, klassId); in VisitIsInstance()
4635 resultPhi->addIncoming(innerResult, incomingBlock); in VisitIsInstance()

Completed in 15 milliseconds