HomeSort by relevance Sort by last modified time
    Searched refs:anchor (Results 126 - 150 of 788) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
AnchorNode.java 29 return NodeId.anchor;
  /external/opencv3/modules/imgproc/test/ocl/
test_boxfilter.cpp 61 Point anchor; local
88 anchor.x = randomInt(-1, ksize.width);
89 anchor.y = randomInt(-1, ksize.height);
109 OCL_OFF(cv::boxFilter(src_roi, dst_roi, -1, ksize, anchor, normalize, borderType));
110 OCL_ON(cv::boxFilter(usrc_roi, udst_roi, -1, ksize, anchor, normalize, borderType));
126 OCL_OFF(cv::sqrBoxFilter(src_roi, dst_roi, ddepth, ksize, anchor, normalize, borderType));
127 OCL_ON(cv::sqrBoxFilter(usrc_roi, udst_roi, ddepth, ksize, anchor, normalize, borderType));
  /frameworks/base/core/java/android/widget/
PopupMenu.java 35 * {@link View}. The popup will appear below the anchor view if there is room,
51 * Constructor to create a new popup menu with an anchor view.
55 * @param anchor Anchor view for this popup. The popup will appear below
56 * the anchor if there is room, or above it if there is not.
58 public PopupMenu(Context context, View anchor) {
59 this(context, anchor, Gravity.NO_GRAVITY);
63 * Constructor to create a new popup menu with an anchor view and alignment
68 * @param anchor Anchor view for this popup. The popup will appear belo
    [all...]
  /external/opencv3/modules/imgproc/src/
morph.cpp 101 MorphRowIVec(int _ksize, int _anchor) : ksize(_ksize), anchor(_anchor) {}
137 int ksize, anchor; member in struct:cv::MorphRowIVec
143 MorphRowFVec(int _ksize, int _anchor) : ksize(_ksize), anchor(_anchor) {}
167 int ksize, anchor; member in struct:cv::MorphRowFVec
175 MorphColumnIVec(int _ksize, int _anchor) : ksize(_ksize), anchor(_anchor) {}
273 int ksize, anchor; member in struct:cv::MorphColumnIVec
279 MorphColumnFVec(int _ksize, int _anchor) : ksize(_ksize), anchor(_anchor) {}
401 int ksize, anchor; member in struct:cv::MorphColumnFVec
641 anchor = _anchor;
695 anchor = _anchor
1133 Point anchor; member in class:cv::MorphologyRunner
1891 cv::Point anchor = cv::Point(anchorX, anchorY); local
1953 cv::Point anchor; local
1964 cv::Point anchor; local
1976 cv::Point anchor; local
    [all...]
  /frameworks/support/compat/java/android/support/v4/widget/
PopupWindowCompat.java 37 void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, int gravity);
54 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
57 ViewCompat.getLayoutDirection(anchor)) & Gravity.HORIZONTAL_GRAVITY_MASK;
60 // anchor instead of left.
61 xoff -= (popup.getWidth() - anchor.getWidth());
63 popup.showAsDropDown(anchor, xoff, yoff);
127 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
129 PopupWindowCompatKitKat.showAsDropDown(popup, anchor, xoff, yoff, gravity);
190 * corner of the anchor view offset by the specified x and y coordinates.
194 * corner of the popup is pinned at the top left corner of the anchor view.</p
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AppCompatPopupWindow.java 87 public void showAsDropDown(View anchor, int xoff, int yoff) {
90 yoff -= anchor.getHeight();
92 super.showAsDropDown(anchor, xoff, yoff);
97 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) {
100 yoff -= anchor.getHeight();
102 super.showAsDropDown(anchor, xoff, yoff, gravity);
106 public void update(View anchor, int xoff, int yoff, int width, int height) {
109 yoff -= anchor.getHeight();
111 super.update(anchor, xoff, yoff, width, height);
127 // we have an anchor view
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PKIXCertPathValidator.java 117 for (TrustAnchor anchor : params.trustAnchors()) {
118 X509Certificate trustedCert = anchor.getTrustedCert();
120 // if this trust anchor is not worth trying,
131 debug.println("anchor.getTrustedCert()."
138 + "anchor.getTrustedCert() == null");
143 return validate(anchor, params);
150 // could not find a trust anchor that verified
161 private static PKIXCertPathValidatorResult validate(TrustAnchor anchor,
171 certPathCheckers.add(new AlgorithmChecker(anchor));
188 BasicChecker bc = new BasicChecker(anchor, params.date()
    [all...]
  /external/opencv3/modules/cudafilters/src/
filtering.cpp 76 void normalizeAnchor(int& anchor, int ksize)
78 if (anchor < 0)
79 anchor = ksize >> 1;
81 CV_Assert( 0 <= anchor && anchor < ksize );
84 void normalizeAnchor(Point& anchor, Size ksize)
86 normalizeAnchor(anchor.x, ksize.width);
87 normalizeAnchor(anchor.y, ksize.height);
99 NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal);
116 NPPBoxFilter::NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMTargetMachine.h 64 virtual void anchor();
74 void anchor() override;
85 void anchor() override;
98 virtual void anchor();
109 void anchor() override;
120 void anchor() override;
  /external/toybox/scripts/
config2help.c 256 struct double_list *cfrom, *tfrom, *anchor; local
280 anchor = catch->help;
302 anchor = cfrom->prev;
309 if (!anchor) {
311 anchor = cfrom->prev;
324 if (!anchor->data) dlist_zap(&anchor);
327 while (!*trim(anchor->prev->data)) {
328 anchor = anchor->prev
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/joints/
PulleyJoint.java 36 /** Get the first ground anchor. */
46 private native void jniGetGroundAnchorA (long addr, float[] anchor); /*
48 anchor[0] = joint->GetGroundAnchorA().x;
49 anchor[1] = joint->GetGroundAnchorA().y;
52 /** Get the second ground anchor. */
61 private native void jniGetGroundAnchorB (long addr, float[] anchor); /*
63 anchor[0] = joint->GetGroundAnchorB().x;
64 anchor[1] = joint->GetGroundAnchorB().y;
RopeJoint.java 47 private native void jniGetLocalAnchorA (long addr, float[] anchor); /*
49 anchor[0] = joint->GetLocalAnchorA().x;
50 anchor[1] = joint->GetLocalAnchorA().y;
59 private native void jniGetLocalAnchorB (long addr, float[] anchor); /*
61 anchor[0] = joint->GetLocalAnchorB().x;
62 anchor[1] = joint->GetLocalAnchorB().y;
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfoImpls.h 41 virtual void anchor(); // Out of line virtual method.
73 virtual void anchor(); // Out of line virtual method.
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.cpp 19 void PPCMCAsmInfoDarwin::anchor() { } function in class:PPCMCAsmInfoDarwin
45 void PPCELFMCAsmInfo::anchor() { } function in class:PPCELFMCAsmInfo
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
ScalarEvent.java 34 public ScalarEvent(String anchor, String tag, ImplicitTuple implicit, String value,
36 super(anchor, startMark, endMark);
  /external/llvm/include/llvm/ADT/
DAGDeltaAlgorithm.h 39 virtual void anchor();
  /external/llvm/include/llvm/MC/
MCWinCOFFObjectWriter.h 22 virtual void anchor();
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUMCCodeEmitter.h 28 virtual void anchor();
  /external/llvm/lib/Target/MSP430/
MSP430MachineFunctionInfo.h 24 virtual void anchor();
MSP430Subtarget.cpp 26 void MSP430Subtarget::anchor() { } function in class:MSP430Subtarget
  /external/llvm/lib/Target/NVPTX/MCTargetDesc/
NVPTXMCAsmInfo.cpp 26 void NVPTXMCAsmInfo::anchor() {} function in class:NVPTXMCAsmInfo
  /external/llvm/lib/Target/Sparc/
SparcTargetStreamer.h 18 virtual void anchor();
  /external/llvm/lib/Target/X86/
X86MachineFunctionInfo.cpp 16 void X86MachineFunctionInfo::anchor() { } function in class:X86MachineFunctionInfo
  /external/regex-re2/re2/testing/
tester.h 63 Prog::Anchor anchor);
69 Prog::Anchor anchor,
73 const StringPiece& context, Prog::Anchor anchor);
101 Prog::Anchor anchor);
103 // Run TestCase(text, text, anchor) for all anchoring modes.
106 // Run TestCase(text, context, anchor) for all anchoring modes
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/
com.badlogic.gdx.physics.box2d.joints.PrismaticJoint.cpp 7 float* anchor = (float*)env->GetPrimitiveArrayCritical(obj_anchor, 0); local
13 anchor[0] = joint->GetLocalAnchorA().x;
14 anchor[1] = joint->GetLocalAnchorA().y;
16 env->ReleasePrimitiveArrayCritical(obj_anchor, anchor, 0);
21 float* anchor = (float*)env->GetPrimitiveArrayCritical(obj_anchor, 0); local
27 anchor[0] = joint->GetLocalAnchorB().x;
28 anchor[1] = joint->GetLocalAnchorB().y;
30 env->ReleasePrimitiveArrayCritical(obj_anchor, anchor, 0);
35 float* anchor = (float*)env->GetPrimitiveArrayCritical(obj_anchor, 0); local
41 anchor[0] = joint->GetLocalAxisA().x
    [all...]

Completed in 535 milliseconds

1 2 3 4 56 7 8 91011>>