HomeSort by relevance Sort by last modified time
    Searched refs:edge (Results 101 - 125 of 363) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
pps.h 77 int edge; member in struct:pps_bind_args
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
pps.h 77 int edge; member in struct:pps_bind_args
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
pps.h 77 int edge; member in struct:pps_bind_args
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
pps.h 77 int edge; member in struct:pps_bind_args
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
pps.h 77 int edge; member in struct:pps_bind_args
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
pps.h 77 int edge; member in struct:pps_bind_args
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 104 final String edge = parent.name + lastNode.name; local
105 scene.addEdge(edge);
106 scene.setEdgeSource(edge, parent);
107 scene.setEdgeTarget(edge, lastNode);
ViewHierarchyScene.java 120 protected Widget attachEdgeWidget(String edge) {
127 protected void attachEdgeSourceAnchor(String edge, ViewNode oldSourceNode, ViewNode sourceNode) {
128 final ConnectionWidget connection = (ConnectionWidget) findWidget(edge);
136 protected void attachEdgeTargetAnchor(String edge, ViewNode oldTargetNode, ViewNode targetNode) {
137 final ConnectionWidget connection = (ConnectionWidget) findWidget(edge);
  /external/chromium_org/tools/clang/blink_gc_plugin/
BlinkGCPlugin.cpp 224 void VisitMember(Member* edge) override { might_be_collected_ = true; }
225 void VisitCollection(Collection* edge) override {
226 if (edge->on_heap()) {
227 might_be_collected_ = !edge->is_root();
229 edge->AcceptMembers(this);
286 point->edge()->Accept(&visitor);
369 if (it->second.edge()->IsWeakMember())
540 if (IsWeakCallback() && !it->second.edge()->IsWeakMember())
586 it->second.edge()->Accept(this);
592 void VisitValue(Value* edge) override
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 212 // the bottom edge (with some tolerance). Similar for horizCheck.
218 // Check whether the position is near some edge(s).
232 // Not near any edge but inside the rectangle: move.
241 // The "edge" parameter specifies which edges the user is dragging.
242 void handleMotion(int edge, float dx, float dy) {
244 if (edge == GROW_NONE) {
246 } else if (edge == MOVE) {
251 if (((GROW_LEFT_EDGE | GROW_RIGHT_EDGE) & edge) == 0) {
255 if (((GROW_TOP_EDGE | GROW_BOTTOM_EDGE) & edge) == 0) {
262 growBy((((edge & GROW_LEFT_EDGE) != 0) ? -1 : 1) * xDelta
    [all...]
  /external/opencv/cv/include/
cv.h 642 /* Locates a point within the Delaunay triangulation (finds the edge
647 CvSubdiv2DEdge* edge,
662 /************ Basic quad-edge navigation and operations ************/
664 CV_INLINE CvSubdiv2DEdge cvSubdiv2DNextEdge( CvSubdiv2DEdge edge )
666 return CV_SUBDIV2D_NEXT_EDGE(edge);
670 CV_INLINE CvSubdiv2DEdge cvSubdiv2DRotateEdge( CvSubdiv2DEdge edge, int rotate )
672 return (edge & ~3) + ((edge + rotate) & 3);
675 CV_INLINE CvSubdiv2DEdge cvSubdiv2DSymEdge( CvSubdiv2DEdge edge )
677 return edge ^ 2
    [all...]
  /external/chromium_org/cc/output/
shader.cc 382 "edge",
405 uniform TexCoordPrecision vec3 edge[8]; local
406 varying TexCoordPrecision vec4 edge_dist[2]; // 8 edge distances.
413 edge_dist[0] = vec4(dot(edge[0], screen_pos),
414 dot(edge[1], screen_pos),
415 dot(edge[2], screen_pos),
416 dot(edge[3], screen_pos)) * gl_Position.w;
417 edge_dist[1] = vec4(dot(edge[4], screen_pos),
418 dot(edge[5], screen_pos),
419 dot(edge[6], screen_pos)
464 uniform TexCoordPrecision vec3 edge[8]; local
568 uniform TexCoordPrecision vec3 edge[8]; local
    [all...]
  /system/core/libpixelflinger/
trap.cpp 604 // the following routine fills a triangle via edge stepping, which
631 struct Edge
633 int32_t x; // edge position in 16.16 coordinates
640 edge_dump( Edge* edge )
643 edge->y_top, edge->y_top/float(TRI_ONE),
644 edge->y_bot, edge->y_bot/float(TRI_ONE),
645 edge->x, edge->x/float(FIXED_ONE)
672 Edge* edge = edges + *pcount; local
862 AAEdge* edge = edges + *pcount; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFA.java 171 /** Map an edge transition table to a unique set number; ordered so
188 /** The unique edge transition class number; every time we see a new
191 * some of the big edge transition tables are seen about 57 times.
215 /** just the Vector<Integer> indicating which unique edge table is at
504 Transition edge = (Transition) s.transition(j);
505 Label label = edge.label;
555 Transition edge = (Transition) s.transition(j);
556 Label label = edge.label;
560 Utils.integer(edge.target.stateNumber));
570 Utils.integer(edge.target.stateNumber))
    [all...]
  /external/chromium_org/ash/wm/workspace/
workspace_window_resizer.cc 116 // Returns true if the window should stick to the edge.
123 int CoordinateAlongSecondaryAxis(SecondaryMagnetismEdge edge,
127 switch (edge) {
143 const MatchedEdge& edge) {
145 switch (edge.primary_edge) {
159 switch (edge.primary_edge) {
163 edge.secondary_edge, attach_to.x(), attach_to.right() - src.width(),
169 edge.secondary_edge, attach_to.y(), attach_to.bottom() - src.height(),
178 // and |edge| identifies the edge to attach to
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c     [all...]
  /external/chromium_org/v8/src/compiler/
generic-algorithm.h 82 visitor->PreEdge(Traits::from(top.first), top.first.edge().index(),
88 visitor->PostEdge(Traits::from(top.first), top.first.edge().index(),
js-inlining.cc 277 if (NodeProperties::IsEffectEdge(iter.edge())) {
279 } else if (NodeProperties::IsControlEdge(iter.edge())) {
291 if (NodeProperties::IsEffectEdge(iter.edge())) {
293 } else if (NodeProperties::IsControlEdge(iter.edge())) {
296 DCHECK(NodeProperties::IsValueEdge(iter.edge()));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
coretypes.h 151 typedef struct edge_def *edge; typedef in typeref:struct:edge_def
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
background.js 80 var edge = ctx.canvas.width-ctx.lineWidth;
83 ctx.lineTo(edge, edge);
84 ctx.lineTo(s*55, edge);
86 ctx.lineTo(edge, edge);
  /hardware/samsung_slsi/exynos5/libcamera2/
MetadataConverter.cpp 417 dst->ctl.edge.mode = PROCESSING_MODE_FAST;
418 dst->ctl.edge.strength = 0;
436 dst->ctl.edge.mode = PROCESSING_MODE_FAST;
437 dst->ctl.edge.strength = 0;
455 dst->ctl.edge.mode = PROCESSING_MODE_FAST;
456 dst->ctl.edge.strength = 0;
473 dst->ctl.edge.mode = PROCESSING_MODE_FAST;
474 dst->ctl.edge.strength = 0;
488 dst->ctl.edge.mode = PROCESSING_MODE_OFF;
489 dst->ctl.edge.strength = 0
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 995 edge[2];
1167 CvPolyEdge edge; local
    [all...]
  /external/deqp/framework/referencerenderer/
rrRasterizer.cpp 57 static inline void initEdgeCCW (EdgeFunction& edge, const HorizontalFill horizontalFill, const VerticalFill verticalFill, const deInt64 x0, const deInt64 y0, const deInt64 x1, const deInt64 y1)
70 edge.a = (y0 - y1);
71 edge.b = (x1 - x0);
72 edge.c = x0*y1 - y0*x1;
73 edge.inclusive = inclusive; //!< \todo [pyry] Swap for CW triangles
76 static inline void reverseEdge (EdgeFunction& edge)
78 edge.a = -edge.a;
79 edge.b = -edge.b
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpSegment.cpp 13 #define F (false) // discard the edge
14 #define T (true) // keep the edge
90 // edge leading into junction
360 SkPoint edge[4]; local
367 subDivide(start, end, edge);
368 ePtr = edge;
439 // add 2 to edge or out of range values to get T extremes
545 // Defer all coincident edge processing until
676 // FIXME: there's probably an edge case that can be constructed where
    [all...]
  /external/skia/src/pathops/
SkOpSegment.cpp 13 #define F (false) // discard the edge
14 #define T (true) // keep the edge
90 // edge leading into junction
359 SkPoint edge[4]; local
366 subDivide(start, end, edge);
367 ePtr = edge;
435 // add 2 to edge or out of range values to get T extremes
541 // Defer all coincident edge processing until
670 // FIXME: there's probably an edge case that can be constructed where
    [all...]

Completed in 658 milliseconds

1 2 3 45 6 7 8 91011>>