/third_party/typescript/tests/baselines/reference/ |
H A D | classStaticBlock17.js | 2 let friendA: { getX(o: A): number, setX(o: A, v: number): void }; 11 getX () { 17 getX(obj) { return obj.#x }, 25 const x = friendA.getX(a); // ok 32 a.getX();
53 getX() {
60 getX(obj) { return __classPrivateFieldGet(obj, _A_x, "f"); },
67 const x = friendA.getX(a); // ok
74 a.getX();
|
H A D | privateNameComputedPropertyName2(target=es2015).js | 2 let getX: (a: A) => number; 6 [(getX = (a: A) => a.#x, "_")]() {} 9 console.log(getX(new A)); 19 let getX;
24 [(_A_x = new WeakMap(), getX = (a) => __classPrivateFieldGet(a, _A_x, "f"), "_")]() { }
26 console.log(getX(new A));
|
H A D | classStaticBlock16.js | 2 let getX: (c: C) => number; 10 // getX has privileged access to #x 11 getX = (obj: C) => obj.#x; 22 getX = (obj: C) => obj.#x; 40 let getX;
49 // getX has privileged access to #x
50 getX = (obj) => __classPrivateFieldGet(obj, _C_x, "f");
62 getX = (obj) => obj.;
|
H A D | classStaticBlock11(target=es2015).js | 2 let getX; 10 // getX has privileged access to #x 11 getX = (obj: C) => obj.#x; 29 let getX;
38 // getX has privileged access to #x
39 getX = (obj) => __classPrivateFieldGet(obj, _C_x, "f");
|
H A D | privateInstanceVisibility.js | 32 getX() { return this.x; } 60 C.prototype.getX = function () { return this.x; };
|
/third_party/skia/third_party/externals/angle2/samples/multi_window/ |
H A D | MultiWindow.cpp | 79 int baseX = rootWindow.osWindow->getX(); 109 int left = rootWindow->getX(); 110 int right = rootWindow->getX() + rootWindow->getWidth(); 117 left = std::min(left, window->getX()); 118 right = std::max(right, window->getX() + window->getWidth()); 139 Matrix4::ortho(static_cast<float>(window->getX()), 140 static_cast<float>(window->getX() + window->getWidth()),
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGFeLighting.cpp | 112 this->resolveXYZ(ctx, fctx, light->getX(), light->getY(), light->getZ()), in makePointLight() 128 this->resolveXYZ(ctx, fctx, light->getX(), light->getY(), light->getZ()), in makeSpotLight() 165 this->resolveXYZ(ctx, fctx, light->getX(), light->getY(), light->getZ()), in makePointLight() 180 this->resolveXYZ(ctx, fctx, light->getX(), light->getY(), light->getZ()), in makeSpotLight()
|
H A D | SkSVGText.cpp | 123 , fX(ResolveLengths(lctx, txt.getX(), SkSVGLengthContext::LengthType::kHorizontal)) in ScopedPosResolver()
|
/third_party/skia/third_party/externals/angle2/samples/WindowTest/ |
H A D | WindowTest.cpp | 124 if (window->getX() != x || window->getY() != y) in main() 128 std::cout << "X: " << x << " vs. " << window->getX() << std::endl; in main()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/ |
H A D | GameSurfaceView.java | 59 native_onTouchInput(0, e.getEventTime(), (int)e.getX(), (int)e.getY()); in onTouchEvent()
|
/third_party/skia/third_party/externals/angle2/util/ |
H A D | OSWindow.h | 32 int getX() const;
|
H A D | OSWindow.cpp | 367 int OSWindow::getX() const in getX() function in OSWindow
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/ |
H A D | js_canvas_image_data.h | 50 int32_t getX() const in getX() function in OHOS::Ace::Framework::JSCanvasImageData
|
/third_party/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/ |
H A D | ViewerActivity.java | 144 final float x = event.getX(i); in onTouch()
|
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/ |
H A D | CubeActivity.java | 127 mCurrentDrag = normalVec(e.getX(), e.getY()); in startDrag() 133 v = normalVec(e.getX(), e.getY()); // new drag position in drag()
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/ |
H A D | RBManagerGUI.java | 278 int selRow = jTreeDisplay.getRowForLocation(ev.getX(), ev.getY()); in valueChanged() 279 TreePath selPath = jTreeDisplay.getPathForLocation(ev.getX(), ev.getY()); in valueChanged() 572 int selRow = jTreeDisplay.getRowForLocation(ev.getX(), ev.getY()); in mousePopup() 573 TreePath selPath = jTreeDisplay.getPathForLocation(ev.getX(), ev.getY()); in mousePopup() 599 popupMenu.show(ev.getComponent(), ev.getX(), ev.getY()); in mousePopup() 603 int selRow = projectTree.getRowForLocation(ev.getX(), ev.getY()); in mousePopup() 604 TreePath selPath = projectTree.getPathForLocation(ev.getX(), ev.getY()); in mousePopup() 620 popupMenu.show(ev.getComponent(), ev.getX(), ev.getY()); in mousePopup() 635 popupMenu.show(ev.getComponent(), ev.getX(), ev.getY()); in mousePopup() 647 popupMenu.show(ev.getComponent(), ev.getX(), e in mousePopup() [all...] |
/third_party/skia/src/effects/imagefilters/ |
H A D | SkDisplacementMapImageFilter.cpp | 87 unsigned getX(SkColor c) const { return (c >> fShiftX) & 0xFF; } in getX() function 218 SkScalar displX = scaleForColor.fX * ex.getX(c) + scaleAdj.fX; in compute_displacement()
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/ |
H A D | MusicKeyboardView.java | 216 float x = event.getX(pointerIndex); in onTouchEvent()
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | node_extened.cpp | 306 offset.x = impl->getExtendedAPI()->getX(node->uiNodeHandle); in GetLayoutPosition()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | DependenceAnalysis.h | 410 /// getX - If constraint is a point <X, Y>, returns X. 412 const SCEV *getX() const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 319 const SCEV *DependenceInfo::Constraint::getX() const { in getX() function in DependenceInfo::Constraint 416 OS << " Point is <" << *getX() << ", " << *getY() << ">\n"; in dump() 569 const SCEV *A1X1 = SE->getMulExpr(Y->getA(), X->getX()); in intersectConstraints() 3194 const SCEV *XA_K = SE->getMulExpr(A_K, CurConstraint.getX()); in propagatePoint() 3238 CurConstraint.getX())) in updateDirection() 3243 CurConstraint.getX())) in updateDirection() 3248 CurConstraint.getX())) in updateDirection()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/cjui/ |
H A D | cjui_api.h | 3385 ArkUI_Int32 (*getX)(ArkUINodeHandle node);
member
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/ |
H A D | arkoala_api.h | 5220 ArkUI_Int32 (*getX)(ArkUINodeHandle node); member
|