Searched defs:inside (Results 1 - 25 of 30) sorted by relevance

12

/external/webrtc/webrtc/modules/desktop_capture/
H A Dmouse_cursor_monitor_win.cc106 bool inside = cursor_info.flags == CURSOR_SHOWING; local
113 inside = false;
115 if (inside) {
117 inside = windowUnderCursor ?
125 if (inside)
126 inside = rect.Contains(position);
130 callback_->OnMouseCursorPosition(inside ? INSIDE : OUTSIDE, position);
H A Ddesktop_and_cursor_composer_unittest.cc202 bool inside; member in struct:webrtc::__anon30896::__anon30897
227 MouseCursorMonitor::CursorState state = tests[i].inside
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
H A Dclip.cpp92 // Checks whether vertex v lies inside clipping plane
96 inline int inside(const float v[4]) function
130 int s_in = inside<ClippingPlane>(&pInPts[s*4]);
131 int p_in = inside<ClippingPlane>(&pInPts[p*4]);
140 if (p_in) // 2nd vertex is inside clipping volume, add it to output
H A Dclip.h663 inline simdscalar inside(const simdvector& v) function in class:Clipper
701 // compute inside mask
702 simdscalar s_in = inside<ClippingPlane>(vInPos0);
703 simdscalar p_in = inside<ClippingPlane>(vInPos1);
709 // store s if inside
792 // compute inside mask
793 simdscalar s_in = inside<ClippingPlane>(vInPos0);
794 simdscalar p_in = inside<ClippingPlane>(vInPos1);
800 // store s if inside
833 // store p if inside
[all...]
/external/python/cpython2/Mac/Modules/drag/
H A D_Dragmodule.c586 Boolean inside; local
592 &inside))
596 inside);
722 PyDoc_STR("(RgnHandle hiliteFrame, Boolean inside) -> None")},
/external/ImageMagick/MagickCore/
H A Dimage.c685 % const MagickBooleanType inside,ExceptionInfo *exception)
694 % o inside: if non-zero, later operations take effect inside clipping path.
707 const MagickBooleanType inside,ExceptionInfo *exception)
754 if (inside == MagickFalse)
698 ClipImagePath(Image *image,const char *pathname, const MagickBooleanType inside,ExceptionInfo *exception) argument
/external/opencv/cxcore/src/
H A Dcxdrawing.cpp1418 int inside = center.x >= radius && center.x < size.width - radius && local
1430 if( inside )
/external/skia/src/core/
H A DSkRegion.cpp647 int inside, left, rite SK_INIT_TO_AVOID_WARNING; local
657 inside = 1;
666 inside = 2;
675 inside = 3;
706 fInside = inside;
/external/skia/src/pathops/
H A DSkOpAngle.cpp279 bool inside; local
281 if (this->endToSide(rh, &inside)) {
282 return inside;
284 if (rh->endToSide(this, &inside)) {
285 return !inside;
288 if (this->midToSide(rh, &inside)) {
289 return inside;
291 if (rh->midToSide(this, &inside)) {
292 return !inside;
535 bool SkOpAngle::endToSide(const SkOpAngle* rh, bool* inside) cons
[all...]
/external/skqp/src/core/
H A DSkRegion.cpp647 int inside, left, rite SK_INIT_TO_AVOID_WARNING; local
657 inside = 1;
666 inside = 2;
675 inside = 3;
706 fInside = inside;
/external/skqp/src/pathops/
H A DSkOpAngle.cpp279 bool inside; local
281 if (this->endToSide(rh, &inside)) {
282 return inside;
284 if (rh->endToSide(this, &inside)) {
285 return !inside;
288 if (this->midToSide(rh, &inside)) {
289 return inside;
291 if (rh->midToSide(this, &inside)) {
292 return !inside;
535 bool SkOpAngle::endToSide(const SkOpAngle* rh, bool* inside) cons
[all...]
/external/deqp/framework/referencerenderer/
H A DrrRenderer.cpp284 const TriangleVertex& inside = v1; local
288 const ClipFloat hitDist = plane.clipLineSegmentEnd(inside.position, outside.position);
297 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside.position, hitDist);
298 const ClipVec4 anotherPointOnLine = (hitDist > (ClipFloat)0.5) ? (inside.position) : (outside.position);
301 middle.weight[0] = tcu::mix(inside.weight[0], outside.weight[0], hitDist);
302 middle.weight[1] = tcu::mix(inside.weight[1], outside.weight[1], hitDist);
303 middle.weight[2] = tcu::mix(inside.weight[2], outside.weight[2], hitDist);
308 const TriangleVertex& inside = v2; local
312 const ClipFloat hitDist = plane.clipLineSegmentEnd(inside.position, outside.position);
321 const ClipVec4 approximatedClipPoint = tcu::mix(inside
359 const TriangleVertex& inside = v0; local
383 const TriangleVertex& inside = v0; local
[all...]
/external/kotlinc/lib/
H A Dkotlin-source-sections-compiler-plugin.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/kotlin-source-sections-compiler ...
/external/ImageMagick/MagickWand/
H A Dmagick-image.c1364 % present. Later operations take effect inside the path. Id may be a number
1371 % const char *pathname,const MagickBooleanType inside)
1380 % o inside: if non-zero, later operations take effect inside clipping path.
1385 const char *pathname,const MagickBooleanType inside)
1396 status=ClipImagePath(wand->images,pathname,inside,wand->exception);
1357 MagickClipImagePath(MagickWand *wand, const char *pathname,const MagickBooleanType inside) argument
/external/robolectric/v3/
H A Drobolectric-utils-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/util/ org/robolectric/internal/ org/ ...
/external/vulkan-validation-layers/layers/
H A Dcore_validation.cpp1966 // Flags validation error if the associated call is made inside a render pass. The apiName routine should ONLY be called outside a
1970 bool inside = false; local
1972 inside = log_msg(dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT,
1974 "%s: It is invalid to issue this call inside an active render pass (0x%" PRIx64 "). %s", apiName,
1977 return inside;
1981 // routine should ONLY be called inside a render pass.
1989 "%s: This call must be issued inside an active render pass. %s", apiName, validation_error_map[msgCode]);
/external/guice/lib/build/
H A Dcglib-3.1.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/cglib/ net/sf/cglib/beans/ ...
/external/guice/extensions/persist/lib/
H A Dcglib-nodep-3.0.jarMETA-INF/MANIFEST.MF LICENSE NOTICE net/sf/cglib/beans/BeanCopier$BeanCopierKey.class BeanCopier. ...
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...
/external/junit-params/lib/
H A Dassertj-core-1.7.1.jarMETA-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org.assertj/ META- ...
/external/robolectric/v1/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 1106 milliseconds

12