/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | shader_module_gles.cpp | 161 void ProcessShaderModule(ShaderBase& me, const ShaderModuleCreateInfo& createInfo) in ProcessShaderModule() argument 163 me.pipelineLayout_ = createInfo.reflectionData.GetPipelineLayout(); in ProcessShaderModule() 164 if (me.shaderStageFlags_ & CORE_SHADER_STAGE_VERTEX_BIT) { in ProcessShaderModule() 165 me.vertexInputAttributeDescriptions_ = createInfo.reflectionData.GetInputDescriptions(); in ProcessShaderModule() 166 me.vertexInputBindingDescriptions_.reserve(me.vertexInputAttributeDescriptions_.size()); in ProcessShaderModule() 167 for (const auto& attrib : me.vertexInputAttributeDescriptions_) { in ProcessShaderModule() 172 me.vertexInputBindingDescriptions_.push_back(bindingDesc); in ProcessShaderModule() 174 me.vidv_.bindingDescriptions = { me in ProcessShaderModule() [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/font_napi/ |
H A D | js_font.cpp | 134 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); in CreatePathForText() local 135 return (me != nullptr) ? me->OnCreatePathForText(env, info) : nullptr; in CreatePathForText() 163 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); in EnableSubpixel() local 164 return (me != nullptr) ? me->OnEnableSubpixel(env, info) : nullptr; in EnableSubpixel() 169 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); in EnableEmbolden() local 170 return (me != nullptr) ? me->OnEnableEmbolden(env, info) : nullptr; in EnableEmbolden() 175 JsFont* me in EnableLinearMetrics() local 181 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetBaselineSnap() local 187 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetEmbeddedBitmaps() local 193 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetForceAutoHinting() local 199 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetSize() local 205 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetTypeface() local 211 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetTypeface() local 217 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetSize() local 223 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetMetrics() local 229 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetWidths() local 235 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetBounds() local 241 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); IsBaselineSnap() local 247 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); IsEmbeddedBitmaps() local 253 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); IsForceAutoHinting() local 259 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); MeasureSingleCharacter() local 265 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); MeasureText() local 271 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetScaleX() local 277 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetSkewX() local 283 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetEdging() local 289 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); SetHinting() local 295 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); CountText() local 301 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); IsSubpixel() local 307 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); IsLinearMetrics() local 313 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetSkewX() local 319 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); IsEmbolden() local 325 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetScaleX() local 331 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetHinting() local 337 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); GetEdging() local 343 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); TextToGlyphs() local 349 JsFont* me = CheckParamsAndGetThis<JsFont>(env, info); CreatePathForGlyph() local [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/path_napi/ |
H A D | js_path.cpp | 175 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); in MoveTo() local 176 return (me != nullptr) ? me->OnMoveTo(env, info) : nullptr; in MoveTo() 181 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); in LineTo() local 182 return (me != nullptr) ? me->OnLineTo(env, info) : nullptr; in LineTo() 187 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); in ArcTo() local 188 return (me != nullptr) ? me->OnArcTo(env, info) : nullptr; in ArcTo() 193 JsPath* me in QuadTo() local 199 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); ConicTo() local 205 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); CubicTo() local 211 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); RMoveTo() local 217 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); RLineTo() local 223 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); RQuadTo() local 229 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); RConicTo() local 235 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); RCubicTo() local 241 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); AddPolygon() local 247 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); AddOval() local 253 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); AddCircle() local 259 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); AddArc() local 265 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); AddRect() local 271 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); AddRoundRect() local 277 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); AddPath() local 283 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); Transform() local 289 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); Contains() local 295 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); SetFillType() local 301 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); GetBounds() local 307 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); Close() local 313 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); Offset() local 319 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); Reset() local 325 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); GetLength() local 331 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); GetPositionAndTangent() local 337 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); GetMatrix() local 343 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); BuildFromSvgString() local 349 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); IsClosed() local 355 JsPath* me = CheckParamsAndGetThis<JsPath>(env, info); Op() local [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/matrix_napi/ |
H A D | js_matrix.cpp | 133 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info);
in GetValue() local 134 return (me != nullptr) ? me->OnGetValue(env, info) : nullptr;
in GetValue() 161 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info);
in PostRotate() local 162 return (me != nullptr) ? me->OnPostRotate(env, info) : nullptr;
in PostRotate() 189 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info);
in PostTranslate() local 190 return (me != nullptr) ? me->OnPostTranslate(env, info) : nullptr;
in PostTranslate() 214 JsMatrix* me in PreRotate() local 242 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); PreScale() local 272 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); PreTranslate() local 298 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); SetRotation() local 325 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); SetScale() local 354 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); SetTranslation() local 379 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); SetMatrix() local 429 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); PreConcat() local 457 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); IsEqual() local 484 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); Invert() local 511 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); IsIdentity() local 527 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); MapPoints() local 572 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); PostScale() local 602 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); Reset() local 619 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); GetAll() local 643 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); SetPolyToPoly() local 682 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); SetRectToRect() local 717 JsMatrix* me = CheckParamsAndGetThis<JsMatrix>(env, info); MapRect() local [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/paragraph_napi/ |
H A D | js_paragraph.cpp | 127 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); in Layout() local 128 return (me != nullptr) ? me->OnLayout(env, info) : nullptr; in Layout() 155 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); in Paint() local 156 return (me != nullptr) ? me->OnPaint(env, info) : nullptr; in Paint() 188 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); in PaintOnPath() local 189 return (me != nullptr) ? me->OnPaintOnPath(env, info) : nullptr; in PaintOnPath() 223 JsParagraph* me in GetMaxWidth() local 239 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetHeight() local 255 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetLongestLine() local 271 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetLongestLineWithIndent() local 287 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetMinIntrinsicWidth() local 303 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetMaxIntrinsicWidth() local 319 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetAlphabeticBaseline() local 335 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetIdeographicBaseline() local 351 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetRectsForRange() local 400 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetRectsForPlaceholders() local 423 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetGlyphPositionAtCoordinate() local 452 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetWordBoundary() local 480 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetLineCount() local 496 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetLineHeight() local 524 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetLineWidth() local 552 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); DidExceedMaxLines() local 568 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetActualTextRange() local 605 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetLineMetrics() local 657 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetFontMetricsByTextStyle() local 686 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetLineFontMetrics() local 754 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); GetTextLines() local 797 JsParagraph* me = CheckParamsAndGetThis<JsParagraph>(env, info); LayoutAsync() local [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/run_napi/ |
H A D | js_run.cpp | 129 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info);
in GetGlyphCount() local 130 return (me != nullptr) ? me->OnGetGlyphCount(env, info) : nullptr;
in GetGlyphCount() 145 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info);
in GetGlyphs() local 146 return (me != nullptr) ? me->OnGetGlyphs(env, info) : nullptr;
in GetGlyphs() 183 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info);
in GetPositions() local 184 return (me != nullptr) ? me->OnGetPositions(env, info) : nullptr;
in GetPositions() 221 JsRun* me in GetOffsets() local 245 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info); GetFont() local 279 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info); Paint() local 317 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info); GetStringRange() local 349 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info); GetStringIndices() local 387 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info); GetImageBounds() local 403 JsRun* me = CheckParamsAndGetThis<JsRun>(env, info); GetTypographicBounds() local [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/canvas_napi/ |
H A D | js_canvas.cpp | 471 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); in Clear() local 472 return (me != nullptr) ? me->OnClear(env, info) : nullptr; in Clear() 516 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); in DrawShadow() local 517 return (me != nullptr) ? me->OnDrawShadow(env, info) : nullptr; in DrawShadow() 583 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); in DrawArc() local 584 return (me != nullptr) ? me->OnDrawArc(env, info) : nullptr; in DrawArc() 619 JsCanvas* me in DrawRect() local 667 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawCircle() local 700 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawImage() local 772 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawColor() local 848 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawOval() local 878 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawPoint() local 927 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawPoints() local 988 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawPath() local 1021 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawLine() local 1055 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawText() local 1087 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawSingleCharacter() local 1143 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawPixelMapMesh() local 1261 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawRegion() local 1289 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawBackground() local 1319 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawRoundRect() local 1345 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawNestedRoundRect() local 1374 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); GetTotalMatrix() local 1394 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); AttachPen() local 1422 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); AttachBrush() local 1450 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DetachPen() local 1467 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DetachBrush() local 1483 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); Skew() local 1508 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); Rotate() local 1535 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); GetSaveCount() local 1550 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); GetWidth() local 1565 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); GetHeight() local 1580 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); ClipPath() local 1624 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); ClipRegion() local 1660 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); Translate() local 1685 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); Save() local 1700 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); SaveLayer() local 1776 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); RestoreToCount() local 1799 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); Restore() local 1815 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); ClipRect() local 1858 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); ClipRoundRect() local 1902 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); SetMatrix() local 1930 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); Scale() local 1955 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); ConcatMatrix() local 1983 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); IsClipEmpty() local 1999 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); GetLocalClipBounds() local 2051 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawImageRect() local 2107 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); DrawImageRectWithSrc() local 2196 JsCanvas* me = CheckParamsAndGetThis<JsCanvas>(env, info); ResetMatrix() local [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/color_manager/color_space_object_convertor/ |
H A D | js_color_space.cpp | 40 JsColorSpace* me = CheckParamsAndGetThis<JsColorSpace>(env, info); in GetColorSpaceName() local 41 if (me == nullptr) { in GetColorSpaceName() 47 return me->OnGetColorSpaceName(env, info); in GetColorSpaceName() 52 JsColorSpace* me = CheckSendableParamsAndGetThis<JsColorSpace>(env, info); in GetSendableColorSpaceName() local 53 if (me == nullptr) { in GetSendableColorSpaceName() 59 return me->OnGetSendableColorSpaceName(env, info); in GetSendableColorSpaceName() 64 JsColorSpace* me = CheckParamsAndGetThis<JsColorSpace>(env, info); in GetWhitePoint() local 65 if (me == nullptr) { in GetWhitePoint() 71 return me->OnGetWhitePoint(env, info); in GetWhitePoint() 76 JsColorSpace* me in GetSendableWhitePoint() local 88 JsColorSpace* me = CheckParamsAndGetThis<JsColorSpace>(env, info); GetGamma() local 100 JsColorSpace* me = CheckSendableParamsAndGetThis<JsColorSpace>(env, info); GetSendableGamma() local [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/region_napi/ |
H A D | js_region.cpp | 95 JsRegion* me = CheckParamsAndGetThis<JsRegion>(env, info); in IsPointContained() local 96 return (me != nullptr) ? me->OnIsPointContained(env, info) : nullptr; in IsPointContained() 119 JsRegion* me = CheckParamsAndGetThis<JsRegion>(env, info); in IsRegionContained() local 120 return (me != nullptr) ? me->OnIsRegionContained(env, info) : nullptr; in IsRegionContained() 145 JsRegion* me = CheckParamsAndGetThis<JsRegion>(env, info); in Op() local 146 return (me != nullptr) ? me->OnOp(env, info) : nullptr; in Op() 180 JsRegion* me in QuickReject() local 209 JsRegion* me = CheckParamsAndGetThis<JsRegion>(env, info); SetRect() local 238 JsRegion* me = CheckParamsAndGetThis<JsRegion>(env, info); SetPath() local [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/ |
H A D | js_offscreen_canvas.cpp | 181 JSOffscreenCanvas* me = static_cast<JSOffscreenCanvas*>(GetNapiCallbackInfoAndThis(env, info)); in JsGetWidth() local 184 return (me != nullptr && !me->isDetached_) ? me->OnGetWidth(env) : defaultWidth; in JsGetWidth() 190 JSOffscreenCanvas* me = static_cast<JSOffscreenCanvas*>(GetNapiCallbackInfoAndThis(env, info)); in JsGetHeight() local 193 return (me != nullptr && !me->isDetached_) ? me->OnGetHeight(env) : defaultHeight; in JsGetHeight() 199 JSOffscreenCanvas* me = static_cast<JSOffscreenCanvas*>(GetNapiCallbackInfoAndThis(env, info)); in JsSetWidth() local 200 return (me ! in JsSetWidth() 206 JSOffscreenCanvas* me = static_cast<JSOffscreenCanvas*>(GetNapiCallbackInfoAndThis(env, info)); JsSetHeight() local 212 JSOffscreenCanvas* me = static_cast<JSOffscreenCanvas*>(GetNapiCallbackInfoAndThis(env, info)); JsTransferToImageBitmap() local 226 JSOffscreenCanvas* me = static_cast<JSOffscreenCanvas*>(GetNapiCallbackInfoAndThis(env, info)); JsGetContext() local [all...] |
H A D | js_render_image.cpp | 217 JSRenderImage* me = static_cast<JSRenderImage*>(GetNapiCallbackInfoAndThis(env, info)); in JsGetWidth() local 218 return (me != nullptr) ? me->OnGetWidth(env) : nullptr; in JsGetWidth() 223 JSRenderImage* me = static_cast<JSRenderImage*>(GetNapiCallbackInfoAndThis(env, info)); in JsGetHeight() local 224 return (me != nullptr) ? me->OnGetHeight(env) : nullptr; in JsGetHeight() 229 JSRenderImage* me = static_cast<JSRenderImage*>(GetNapiCallbackInfoAndThis(env, info)); in JsClose() local 230 return (me != nullptr) ? me->OnClose() : nullptr; in JsClose() 235 JSRenderImage* me in JsSetWidth() local 241 JSRenderImage* me = static_cast<JSRenderImage*>(GetNapiCallbackInfoAndThis(env, info)); JsSetHeight() local [all...] |
/foundation/window/window_manager/interfaces/kits/napi/embeddable_window_stage/ |
H A D | js_embeddable_window_stage.cpp | 47 JsEmbeddableWindowStage* me = CheckParamsAndGetThis<JsEmbeddableWindowStage>(env, info); in GetMainWindow() local 48 return (me != nullptr) ? me->OnGetMainWindow(env, info) : nullptr; in GetMainWindow() 54 JsEmbeddableWindowStage* me = CheckParamsAndGetThis<JsEmbeddableWindowStage>(env, info); in GetMainWindowSync() local 55 return (me != nullptr) ? me->OnGetMainWindowSync(env, info) : nullptr; in GetMainWindowSync() 61 JsEmbeddableWindowStage* me = CheckParamsAndGetThis<JsEmbeddableWindowStage>(env, info); in On() local 62 return (me != nullptr) ? me->OnEvent(env, info) : nullptr; in On() 68 JsEmbeddableWindowStage* me in Off() local 75 JsEmbeddableWindowStage* me = CheckParamsAndGetThis<JsEmbeddableWindowStage>(env, info); LoadContent() local 82 JsEmbeddableWindowStage* me = CheckParamsAndGetThis<JsEmbeddableWindowStage>(env, info); LoadContentByName() local 89 JsEmbeddableWindowStage* me = CheckParamsAndGetThis<JsEmbeddableWindowStage>(env, info); CreateSubWindow() local 96 JsEmbeddableWindowStage* me = CheckParamsAndGetThis<JsEmbeddableWindowStage>(env, info); GetSubWindow() local [all...] |
/foundation/window/window_manager/window_scene/interfaces/kits/napi/screen_session_manager/ |
H A D | js_screen_session_manager.cpp | 123 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); in RegisterCallback() local 124 return (me != nullptr) ? me->OnRegisterCallback(env, info) : nullptr; in RegisterCallback() 130 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); in UpdateScreenRotationProperty() local 131 return (me != nullptr) ? me->OnUpdateScreenRotationProperty(env, info) : nullptr; in UpdateScreenRotationProperty() 137 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); in GetCurvedCompressionArea() local 138 return (me != nullptr) ? me->OnGetCurvedCompressionArea(env, info) : nullptr; in GetCurvedCompressionArea() 144 JsScreenSessionManager* me in RegisterShutdownCallback() local 151 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); UnRegisterShutdownCallback() local 158 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); GetPhyScreenProperty() local 165 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); NotifyScreenLockEvent() local 172 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); UpdateAvailableArea() local 179 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); SetScreenOffDelayTime() local 186 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); NotifyFoldToExpandCompletion() local 193 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); GetFoldStatus() local 200 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); GetScreenSnapshot() local 207 JsScreenSessionManager* me = CheckParamsAndGetThis<JsScreenSessionManager>(env, info); GetDeviceScreenConfig() local [all...] |
/foundation/window/window_manager/window_scene/interfaces/kits/napi/session_manager_service/napi/ |
H A D | js_session_manager_service.cpp | 49 JsSessionManagerService* me = CheckParamsAndGetThis<JsSessionManagerService>(env, info); in InitSessionManagerService() local 50 return (me != nullptr) ? me->OnInitSessionManagerService(env, info) : nullptr; in InitSessionManagerService() 56 JsSessionManagerService* me = CheckParamsAndGetThis<JsSessionManagerService>(env, info); in NotifySceneBoardAvailable() local 57 return (me != nullptr) ? me->OnNotifySceneBoardAvailable(env, info) : nullptr; in NotifySceneBoardAvailable()
|
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/text_line_napi/ |
H A D | js_text_line.cpp | 126 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); in GetGlyphCount() local 127 return (me != nullptr) ? me->OnGetGlyphCount(env, info) : nullptr; in GetGlyphCount() 132 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); in GetGlyphRuns() local 133 return (me != nullptr) ? me->OnGetGlyphRuns(env, info) : nullptr; in GetGlyphRuns() 138 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); in GetTextRange() local 139 return (me != nullptr) ? me->OnGetTextRange(env, info) : nullptr; in GetTextRange() 144 JsTextLine* me in Paint() local 150 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); CreateTruncatedLine() local 156 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); GetTypographicBounds() local 162 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); GetImageBounds() local 168 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); GetTrailingSpaceWidth() local 174 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); GetStringIndexForPosition() local 180 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); GetOffsetForStringIndex() local 186 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); EnumerateCaretOffsets() local 192 JsTextLine* me = CheckParamsAndGetThis<JsTextLine>(env, info); GetAlignmentOffset() local [all...] |
/foundation/window/window_manager/window_scene/interfaces/kits/napi/scene_session_manager/ |
H A D | js_scene_session_manager.cpp | 568 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); in RegisterCallback() local 569 return (me != nullptr) ? me->OnRegisterCallback(env, info) : nullptr; in RegisterCallback() 575 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); in UpdateFocus() local 576 return (me != nullptr) ? me->OnUpdateFocus(env, info) : nullptr; in UpdateFocus() 582 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); in ProcessBackEvent() local 583 return (me != nullptr) ? me->OnProcessBackEvent(env, info) : nullptr; in ProcessBackEvent() 590 JsSceneSessionManager* me in CheckSceneZOrder() local 597 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); InitUserInfo() local 604 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); InitScheduleUtils() local 624 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetRootSceneSession() local 631 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RequestSceneSession() local 642 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UpdateSceneSessionWant() local 649 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RequestSceneSessionActivation() local 660 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RequestSceneSessionBackground() local 671 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RequestSceneSessionDestruction() local 685 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); NotifyForegroundInteractiveStatus() local 692 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); IsSceneSessionValid() local 699 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RequestSceneSessionByCall() local 706 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); StartAbilityBySpecified() local 713 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); StartUIAbilityBySCB() local 720 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); ChangeUIAbilityVisibilityBySCB() local 727 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetWindowSceneConfig() local 734 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UpdateRotateAnimationConfig() local 741 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetSessionSnapshotFilePath() local 748 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); SetVmaCacheStatus() local 755 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); InitWithRenderServiceAdded() local 762 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetAllWindowVisibilityInfos() local 769 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); SetSystemAnimatedScenes() local 776 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetAllAbilityInfos() local 783 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetBatchAbilityInfos() local 790 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); PrepareTerminate() local 797 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); PerfRequestEx() local 804 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UpdateWindowMode() local 811 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); AddWindowDragHotArea() local 818 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetRootSceneUIContext() local 825 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); SendTouchEvent() local 832 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); PreloadInLakeApp() local 839 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RequestFocusStatus() local 846 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RequestAllAppSessionUnfocus() local 853 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); SetScreenLocked() local 860 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UpdateMaximizeMode() local 867 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); ReportData() local 874 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetRssData() local 881 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RegisterRssData() local 888 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UnregisterRssData() local 895 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UpdateSessionDisplayId() local 902 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); NotifyStackEmpty() local 909 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); NotifySwitchingUser() local 916 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); NotifyStatusBarShowStatus() local 923 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); NotifyAINavigationBarShowStatus() local 930 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); NotifySessionRecoverStatus() local 937 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UpdateTitleInTargetPos() local 944 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetSessionSnapshotPixelMap() local 951 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); SwitchFreeMultiWindow() local 958 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetIsLayoutFullScreen() local 965 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetFreeMultiWindowConfig() local 972 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); NotifyEnterRecentTask() local 979 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UpdateDisplayHookInfo() local 986 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); UpdateAppHookDisplayInfo() local 993 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); IsScbCoreEnabled() local 999 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetMaxInstanceCount() local 1009 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetInstanceCount() local 1019 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetLastInstanceKey() local 1029 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RefreshAppInfo() local 1039 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetWindowPid() local 1050 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); RefreshPcZOrder() local 2962 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); GetCustomDecorHeight() local 3166 JsSceneSessionManager* me = CheckParamsAndGetThis<JsSceneSessionManager>(env, info); SetAppForceLandscapeConfig() local [all...] |
/foundation/window/window_manager/interfaces/kits/napi/picture_in_picture_napi/inner/ |
H A D | js_pip_manager.cpp | 66 JsPipManager* me = CheckParamsAndGetThis<JsPipManager>(env, info); in InitXComponentController() local 67 return (me != nullptr) ? me->OnInitXComponentController(env, info) : nullptr; in InitXComponentController() 104 JsPipManager* me = CheckParamsAndGetThis<JsPipManager>(env, info); in GetCustomUIController() local 105 return (me != nullptr) ? me->OnGetCustomUIController(env, info) : nullptr; in GetCustomUIController() 135 JsPipManager* me = CheckParamsAndGetThis<JsPipManager>(env, info); in GetTypeNode() local 136 return (me != nullptr) ? me->OnGetTypeNode(env, info) : nullptr; in GetTypeNode() 166 JsPipManager* me in SetTypeNodeEnabled() local 191 JsPipManager* me = CheckParamsAndGetThis<JsPipManager>(env, info); SetPipNodeType() local 222 JsPipManager* me = CheckParamsAndGetThis<JsPipManager>(env, info); RegisterCallback() local 264 JsPipManager* me = CheckParamsAndGetThis<JsPipManager>(env, info); UnregisterCallback() local [all...] |
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/paragraph_builder_napi/ |
H A D | js_paragraph_builder.cpp | 124 JsParagraphBuilder* me = CheckParamsAndGetThis<JsParagraphBuilder>(env, info); in PushStyle() local 125 return (me != nullptr) ? me->OnPushStyle(env, info) : nullptr; in PushStyle() 152 JsParagraphBuilder* me = CheckParamsAndGetThis<JsParagraphBuilder>(env, info); in AddText() local 153 return (me != nullptr) ? me->OnAddText(env, info) : nullptr; in AddText() 183 JsParagraphBuilder* me = CheckParamsAndGetThis<JsParagraphBuilder>(env, info); in PopStyle() local 184 return (me != nullptr) ? me->OnPopStyle(env, info) : nullptr; in PopStyle() 198 JsParagraphBuilder* me in AddPlaceholder() local 232 JsParagraphBuilder* me = CheckParamsAndGetThis<JsParagraphBuilder>(env, info); Build() local 249 JsParagraphBuilder* me = CheckParamsAndGetThis<JsParagraphBuilder>(env, info); BuildLineTypeset() local 268 JsParagraphBuilder* me = CheckParamsAndGetThis<JsParagraphBuilder>(env, info); AppendSymbol() local [all...] |
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_napi/ |
H A D | js_window.cpp | 115 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info);
in Show() local 116 return (me != nullptr) ? me->OnShow(env, info) : nullptr;
in Show() 122 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info);
in ShowWindow() local 123 return (me != nullptr) ? me->OnShowWindow(env, info) : nullptr;
in ShowWindow() 129 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info);
in ShowWithAnimation() local 130 return (me != nullptr) ? me->OnShowWithAnimation(env, info) : nullptr;
in ShowWithAnimation() 136 JsWindow* me in Destroy() local 143 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); DestroyWindow() local 150 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Hide() local 157 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); HideWithAnimation() local 164 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Recover() local 170 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Restore() local 178 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); MoveTo() local 186 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); MoveWindowTo() local 194 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); MoveWindowToAsync() local 202 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Resize() local 210 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); ResizeWindow() local 218 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); ResizeWindowAsync() local 225 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowType() local 233 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowMode() local 240 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetProperties() local 247 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetWindowPropertiesSync() local 254 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); RegisterWindowCallback() local 261 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); UnregisterWindowCallback() local 268 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); BindDialogTarget() local 274 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetDialogBackGestureEnabled() local 281 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); LoadContent() local 288 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); LoadContentByName() local 295 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetUIContext() local 302 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetUIContent() local 309 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetFullScreen() local 316 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetLayoutFullScreen() local 323 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetTitleAndDockHoverShown() local 330 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowLayoutFullScreen() local 337 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetSystemBarEnable() local 344 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowSystemBarEnable() local 351 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetSpecificSystemBarEnabled() local 358 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); EnableLandscapeMultiWindow() local 365 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); DisableLandscapeMultiWindow() local 372 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetSystemBarProperties() local 379 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetWindowSystemBarPropertiesSync() local 386 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowSystemBarProperties() local 393 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetAvoidArea() local 400 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetWindowAvoidAreaSync() local 407 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); IsShowing() local 414 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); IsWindowShowingSync() local 421 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); IsSupportWideGamut() local 428 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); IsWindowSupportWideGamut() local 435 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetBackgroundColor() local 442 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowBackgroundColorSync() local 449 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetBrightness() local 456 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowBrightness() local 463 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetDimBehind() local 470 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetFocusable() local 477 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowFocusable() local 485 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetTopmost() local 493 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowTopmost() local 500 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetKeepScreenOn() local 507 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowKeepScreenOn() local 514 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWakeUpScreen() local 521 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetOutsideTouchable() local 528 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetPrivacyMode() local 535 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowPrivacyMode() local 542 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetTouchable() local 549 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetTouchableAreas() local 556 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetResizeByDragEnabled() local 564 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetRaiseByClickEnabled() local 571 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); HideNonSystemFloatingWindows() local 578 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowTouchable() local 585 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetTransparent() local 592 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetCallingWindow() local 599 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetPreferredOrientation() local 606 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetPreferredOrientation() local 613 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetSnapshotSkip() local 620 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetSingleFrameComposerEnabled() local 628 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); RaiseToAppTop() local 635 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); DisableWindowDecor() local 642 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetColorSpace() local 649 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowColorSpace() local 656 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetColorSpace() local 663 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetWindowColorSpaceSync() local 670 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Dump() local 677 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetForbidSplitMove() local 684 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Opacity() local 691 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Scale() local 698 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Rotate() local 705 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Translate() local 712 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetTransitionController() local 719 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetCornerRadius() local 726 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetShadow() local 733 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetBlur() local 740 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetBackdropBlur() local 747 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetBackdropBlurStyle() local 754 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWaterMarkFlag() local 761 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetHandwritingFlag() local 768 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetAspectRatio() local 775 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); ResetAspectRatio() local 782 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Minimize() local 789 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Maximize() local 797 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); RaiseAboveTarget() local 804 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); KeepKeyboardOnFocus() local 811 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); EnableDrag() local 819 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetWindowLimits() local 827 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowLimits() local 834 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowDecorVisible() local 841 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetSubWindowModal() local 848 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowDecorHeight() local 855 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetWindowDecorHeight() local 862 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetTitleButtonRect() local 869 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowContainerColor() local 876 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowMask() local 883 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetTitleButtonVisible() local 890 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowTitleButtonVisible() local 897 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetWindowGrayScale() local 904 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetImmersiveModeEnabledState() local 911 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetImmersiveModeEnabledState() local 918 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetWindowStatus() local 925 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); IsFocused() local 932 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); RequestFocus() local 939 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); StartMoving() local 946 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); CreateSubWindowWithOptions() local 953 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); SetGestureBackEnabled() local 960 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); GetGestureBackEnabled() local 4817 JsWindow* me = CheckParamsAndGetThis<JsWindow>(env, info); Snapshot() local [all...] |
/foundation/window/window_manager/interfaces/kits/napi/extension_window/ |
H A D | js_extension_window.cpp | 138 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info);
in GetWindowAvoidArea() local 139 return (me != nullptr) ? me->OnGetWindowAvoidArea(env, info) : nullptr;
in GetWindowAvoidArea() 145 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info);
in RegisterExtensionWindowCallback() local 146 return (me != nullptr) ? me->OnRegisterExtensionWindowCallback(env, info) : nullptr;
in RegisterExtensionWindowCallback() 152 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info);
in UnRegisterExtensionWindowCallback() local 153 return (me != nullptr) ? me->OnUnRegisterExtensionWindowCallback(env, info) : nullptr;
in UnRegisterExtensionWindowCallback() 159 JsExtensionWindow* me in HideNonSecureWindows() local 166 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); CreateSubWindowWithOptions() local 173 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); SetWaterMarkFlag() local 180 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); HidePrivacyContentForHost() local 187 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); LoadContent() local 194 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); LoadContentByName() local 201 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); ShowWindow() local 208 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); IsWindowShowingSync() local 215 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); SetUIContent() local 222 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); DestroyWindow() local 229 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); SetWindowBackgroundColorSync() local 236 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); GetWindowPropertiesSync() local 243 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); MoveWindowTo() local 250 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); ResizeWindow() local 257 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); SetSpecificSystemBarEnabled() local 264 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); SetPreferredOrientation() local 271 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); GetPreferredOrientation() local 278 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); GetUIContext() local 285 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); SetWindowBrightness() local 292 JsExtensionWindow* me = CheckParamsAndGetThis<JsExtensionWindow>(env, info); SetWindowKeepScreenOn() local [all...] |
/foundation/window/window_manager/interfaces/kits/napi/picture_in_picture_napi/ |
H A D | js_pip_controller.cpp | 87 JsPipController* me = CheckParamsAndGetThis<JsPipController>(env, info); in StartPictureInPicture() local 88 return (me != nullptr) ? me->OnStartPictureInPicture(env, info) : nullptr; in StartPictureInPicture() 129 JsPipController* me = CheckParamsAndGetThis<JsPipController>(env, info); in StopPictureInPicture() local 130 return (me != nullptr) ? me->OnStopPictureInPicture(env, info) : nullptr; in StopPictureInPicture() 167 JsPipController* me = CheckParamsAndGetThis<JsPipController>(env, info); in SetAutoStartEnabled() local 168 return (me != nullptr) ? me->OnSetAutoStartEnabled(env, info) : nullptr; in SetAutoStartEnabled() 196 JsPipController* me in UpdateContentSize() local 234 JsPipController* me = CheckParamsAndGetThis<JsPipController>(env, info); UpdatePiPControlStatus() local 272 JsPipController* me = CheckParamsAndGetThis<JsPipController>(env, info); SetPiPControlEnabled() local 311 JsPipController* me = CheckParamsAndGetThis<JsPipController>(env, info); RegisterCallback() local 457 JsPipController* me = CheckParamsAndGetThis<JsPipController>(env, info); UnregisterCallback() local [all...] |
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_stage_napi/ |
H A D | js_window_stage.cpp | 53 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); in SetUIContent() local 54 return (me != nullptr) ? me->OnSetUIContent(env, info) : nullptr; in SetUIContent() 60 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); in GetMainWindow() local 61 return (me != nullptr) ? me->OnGetMainWindow(env, info) : nullptr; in GetMainWindow() 67 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); in GetMainWindowSync() local 68 return (me != nullptr) ? me->OnGetMainWindowSync(env, info) : nullptr; in GetMainWindowSync() 74 JsWindowStage* me in On() local 81 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); Off() local 88 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); LoadContent() local 95 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); LoadContentByName() local 102 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); GetWindowMode() local 109 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); CreateSubWindow() local 116 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); CreateSubWindowWithOptions() local 123 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); GetSubWindow() local 131 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); SetShowOnLockScreen() local 138 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); DisableWindowDecor() local 145 JsWindowStage* me = CheckParamsAndGetThis<JsWindowStage>(env, info); SetDefaultDensityEnabled() local [all...] |
/foundation/window/window_manager/window_scene/interfaces/kits/napi/transaction_manager/ |
H A D | js_transaction_manager.cpp | 69 JsTransactionManager* me = CheckParamsAndGetThis<JsTransactionManager>(env, info); in OpenSyncTransaction() local 70 return (me != nullptr) ? me->OnOpenSyncTransaction(env, info) : nullptr; in OpenSyncTransaction() 76 JsTransactionManager* me = CheckParamsAndGetThis<JsTransactionManager>(env, info); in CloseSyncTransaction() local 77 return (me != nullptr) ? me->OnCloseSyncTransaction(env, info) : nullptr; in CloseSyncTransaction()
|
/foundation/ability/ability_runtime/frameworks/js/napi/particleAbility/ |
H A D | particle_ability.cpp | 209 JsParticleAbility *me = CheckParamsAndGetThis<JsParticleAbility>(env, info); in PAConnectAbility() local 210 return (me != nullptr) ? me->JsConnectAbility(env, info, AbilityType::UNKNOWN) : nullptr; in PAConnectAbility() 215 JsParticleAbility *me = CheckParamsAndGetThis<JsParticleAbility>(env, info); in PADisConnectAbility() local 216 return (me != nullptr) ? me->JsDisConnectAbility(env, info, AbilityType::UNKNOWN) : nullptr; in PADisConnectAbility() 221 JsParticleAbility *me = CheckParamsAndGetThis<JsParticleAbility>(env, info); in PAStartAbility() local 222 return (me != nullptr) ? me->JsStartAbility(env, info, AbilityType::UNKNOWN) : nullptr; in PAStartAbility()
|
/foundation/ability/dmsfwk/interfaces/kits/napi/continuation_manager/ |
H A D | js_continuation_manager.cpp | 54 JsContinuationManager* me = CheckParamsAndGetThis<JsContinuationManager>(env, info); in Register() local 55 return (me != nullptr) ? me->OnRegister(env, info) : nullptr; in Register() 60 JsContinuationManager* me = CheckParamsAndGetThis<JsContinuationManager>(env, info); in Unregister() local 61 return (me != nullptr) ? me->OnUnregister(env, info) : nullptr; in Unregister() 66 JsContinuationManager* me = CheckParamsAndGetThis<JsContinuationManager>(env, info); in RegisterDeviceSelectionCallback() local 67 return (me != nullptr) ? me->OnRegisterDeviceSelectionCallback(env, info) : nullptr; in RegisterDeviceSelectionCallback() 72 JsContinuationManager* me in UnregisterDeviceSelectionCallback() local 78 JsContinuationManager *me = CheckParamsAndGetThis<JsContinuationManager>(env, info); UpdateConnectStatus() local 84 JsContinuationManager *me = CheckParamsAndGetThis<JsContinuationManager>(env, info); StartDeviceManager() local 90 JsContinuationManager *me = CheckParamsAndGetThis<JsContinuationManager>(env, info); InitDeviceConnectStateObject() local 96 JsContinuationManager *me = CheckParamsAndGetThis<JsContinuationManager>(env, info); InitContinuationModeObject() local 102 JsContinuationManager* me = CheckParamsAndGetThis<JsContinuationManager>(env, info); RegisterContinuation() local 108 JsContinuationManager* me = CheckParamsAndGetThis<JsContinuationManager>(env, info); UnregisterContinuation() local 114 JsContinuationManager *me = CheckParamsAndGetThis<JsContinuationManager>(env, info); UpdateContinuationState() local 120 JsContinuationManager *me = CheckParamsAndGetThis<JsContinuationManager>(env, info); StartContinuationDeviceManager() local [all...] |