Searched refs:classObject (Results 1 – 6 of 6) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/v2/ |
H A D | v2_view.ts | 149 …public observeComponentCreation2(compilerAssignedUpdateFunc: UpdateFunc, classObject: { prototype:… 154 …const _componentName: string = (classObject && ('name' in classObject)) ? Reflect.get(classObject,… 155 …const _popFunc: () => void = (classObject && 'pop' in classObject) ? classObject.pop! : (): void =… 183 this.updateFuncByElmtId.set(elmtId, { updateFunc: updateFunc, classObject: classObject });
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_node/src/ |
H A D | builder_node.ts | 269 …public observeComponentCreation2(compilerAssignedUpdateFunc: UpdateFunc, classObject: { prototype:… 270 …const _componentName: string = classObject && 'name' in classObject ? (Reflect.get(classObject, 'n… 272 classObject && 'pop' in classObject ? classObject.pop! : () => { };
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/puv2_common/ |
H A D | puv2_updatefunc.ts | 54 …constructor(params: { updateFunc: UpdateFunc, classObject?: UIClassObject, node?: ArkComponent }) { 56 this.classObject_ = params.classObject; 94 …public set(elmtId: number, params: UpdateFunc | { updateFunc: UpdateFunc, classObject?: UIClassObj…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/partial_update/ |
H A D | pu_view.ts | 684 …public observeComponentCreation2(compilerAssignedUpdateFunc: UpdateFunc, classObject: UIClassObjec… 689 …const _componentName: string = (classObject && ('name' in classObject)) ? Reflect.get(classObject,… 693 …const _popFunc: () => void = (classObject && 'pop' in classObject) ? classObject.pop! : (): void =… 744 this.updateFuncByElmtId.set(elmtId, { updateFunc: updateFunc, classObject: classObject });
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | jsXNode.js | 289 observeComponentCreation2(compilerAssignedUpdateFunc, classObject) { argument 290 …const _componentName = classObject && 'name' in classObject ? Reflect.get(classObject, 'name') : '… 291 const _popFunc = classObject && 'pop' in classObject ? classObject.pop : () => { };
|
H A D | stateMgmt.js | 3909 this.classObject_ = params.classObject; 6783 observeComponentCreation2(compilerAssignedUpdateFunc, classObject) { 6788 …const _componentName = (classObject && ('name' in classObject)) ? Reflect.get(classObject, 'name')… 6792 const _popFunc = (classObject && 'pop' in classObject) ? classObject.pop : () => { }; 6835 this.updateFuncByElmtId.set(elmtId, { updateFunc: updateFunc, classObject: classObject }); 9140 observeComponentCreation2(compilerAssignedUpdateFunc, classObject) { 9145 …const _componentName = (classObject && ('name' in classObject)) ? Reflect.get(classObject, 'name')… 9146 const _popFunc = (classObject && 'pop' in classObject) ? classObject.pop : () => { }; 9168 this.updateFuncByElmtId.set(elmtId, { updateFunc: updateFunc, classObject: classObject });
|