HomeSort by relevance Sort by last modified time
    Searched full:edge (Results 76 - 100 of 2700) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skia/src/core/
SkEdgeBuilder.cpp 26 SkEdge* edge = typedAllocThrow<SkEdge>(fAlloc); local
27 if (edge->setLine(pts[0], pts[1], fShiftUp)) {
28 fList.push(edge);
30 // TODO: unallocate edge from storage...
35 SkQuadraticEdge* edge = typedAllocThrow<SkQuadraticEdge>(fAlloc); local
36 if (edge->setQuadratic(pts, fShiftUp)) {
37 fList.push(edge);
39 // TODO: unallocate edge from storage...
44 SkCubicEdge* edge = typedAllocThrow<SkCubicEdge>(fAlloc); local
45 if (edge->setCubic(pts, NULL, fShiftUp))
100 SkEdge* edge = reinterpret_cast<SkEdge*>(storage); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelineHandler.java 95 /** Whether the left edge is being moved/resized */
98 /** Whether the right edge is being moved/resized */
101 /** Whether the top edge is being moved/resized */
104 /** Whether the bottom edge is being moved/resized */
178 * The current match on the left edge, or null if no match or if the left edge is not
184 * The current match on the top edge, or null if no match or if the top edge is not
190 * The current match on the right edge, or null if no match or if the right edge i
    [all...]
MoveHandler.java 49 * different segment types -- the left edge, the right edge, the baseline, the center
210 Segment edge = new Segment(b.y, b.x, b.x2(), null, null, TOP, NO_MARGIN); local
211 List<Match> horizontalMatches = findClosest(edge, mHorizontalEdges);
212 edge = new Segment(b.y2(), b.x, b.x2(), null, null, BOTTOM, NO_MARGIN);
213 addClosest(edge, mHorizontalEdges, horizontalMatches);
215 edge = new Segment(b.x, b.y, b.y2(), null, null, LEFT, NO_MARGIN);
216 List<Match> verticalMatches = findClosest(edge, mVerticalEdges);
217 edge = new Segment(b.x2(), b.y, b.y2(), null, null, RIGHT, NO_MARGIN);
218 addClosest(edge, mVerticalEdges, verticalMatches)
    [all...]
  /external/opencv/cvaux/src/
enmin.cpp 81 // struct Edge is used for storing edges of graph
82 // weight - weight of the edge ( maximum flow via the edge )
83 // flow - current flow via the edge
86 struct Edge
198 getSizeForGraph( Edge ),
231 /* adding edge oriented from alpha vertex to current vertex */
233 ( ( Edge* )newEdgePtr ) -> weight = dFunc( leftLine,
238 ( ( Edge* )newEdgePtr ) -> flow = 0;
245 ( ( Edge* )newEdgePtr ) -> weight +
    [all...]
cvsubdiv2.cpp 59 CvQuadEdge2D* edge = (CvQuadEdge2D*)cvGetSetElem(subdiv->edges,i); local
61 if( edge && CV_IS_SET_ELEM( edge ))
65 CvSubdiv2DEdge e = (CvSubdiv2DEdge)edge + j;
107 draw_subdiv_facet( CvSubdiv2D * subdiv, IplImage * dst, IplImage * src, CvSubdiv2DEdge edge )
109 CvSubdiv2DEdge t = edge;
120 while( t != edge && count < subdiv->quad_edges * 4 );
128 t = edge;
142 CvSubdiv2DPoint *pt = cvSubdiv2DEdgeDst( cvSubdiv2DRotateEdge( edge, 1 ));
173 CvQuadEdge2D *edge = (CvQuadEdge2D *) cvGetSetElem( subdiv->edges, i ) local
    [all...]
  /external/llvm/runtime/libprofile/
EdgeProfiling.c 1 /*===-- EdgeProfiling.c - Support library for edge profiling --------------===*\
10 |* This file implements the call back routines for the edge profiling
11 |* instrumentation pass. This should be used with the -insert-edge-profiling
28 * collected into simple edge profiles. Since we directly count each edge, we
35 /* llvm_start_edge_profiling - This is the main entry point of the edge
OptimalEdgeProfiling.c 1 /*===-- OptimalEdgeProfiling.c - Support library for opt. edge profiling --===*\
10 |* This file implements the call back routines for the edge profiling
12 |* -insert-opt-edge-profiling LLVM pass.
26 /* Note that, although the array has a counter for each edge, not all
35 /* llvm_start_opt_edge_profiling - This is the main entry point of the edge
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 75 Edge e = getEdge(0, BB);
79 // the sum of the edge frequencies from the incoming edges.
102 Edge e = getEdge(BB,0);
183 void ProfileInfoT<Function,BasicBlock>::addEdgeWeight(Edge e, double w) {
185 assert (oldw != MissingValue && "Adding weight to Edge with no previous weight");
186 DEBUG(dbgs() << "Adding to Edge " << e
212 void ProfileInfoT<Function,BasicBlock>::removeEdge(Edge e) {
223 replaceEdge(const Edge &oldedge, const Edge &newedge) {
260 Edge e = getEdge(BB,*Succ)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ACyclicDFACodeGenerator.java 99 Transition edge = (Transition) s.transition(i); local
100 //System.out.println("edge "+s.stateNumber+"-"+edge.label.toString()+"->"+edge.target.stateNumber);
101 if ( edge.label.getAtom()==Label.EOT ) {
102 // don't generate a real edge for EOT; track alt EOT predicts
104 EOTTarget = (DFAState)edge.target;
108 edge.target.stateNumber+" predicates alt "+
116 List labels = edge.label.getSet().toList();
127 parentGenerator.genLabelExpr(templates,edge,k))
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_window_util.h 26 // the 16 px at the end of each edge triggers diagonal resizing.
39 // Returns the resize cursor corresponding to the window |edge|.
40 GdkCursorType GdkWindowEdgeToGdkCursorType(GdkWindowEdge edge);
50 // a window manager "feature" that can prevent this in some edge cases.
71 // returns true and sets |edge| to the appropriate GdkWindowEdge value.
73 // |top_edge_inset| specifies how much smaller (in px) than the default edge
74 // size the top edge should be, used by browser windows to make it easier to
80 GdkWindowEdge* edge);
  /external/chromium_org/third_party/WebKit/ManualTests/win/
select-menu-off-screen.html 5 <li>Click on left menu and make sure whole menu (all of the entries should be completely visible) appears on screen against the left edge of the screen.</li>
6 <li>Click on right menuand make sure whole menu (all of the entries should be completely visible) appears on screen against the right edge of the screen.</li>
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFrameSet.h 46 bool preventResize(FrameEdge edge) const { return m_preventResize[edge]; }
47 bool allowBorder(FrameEdge edge) const { return m_allowBorder[edge]; }
49 void setPreventResize(FrameEdge edge, bool preventResize) { m_preventResize[edge] = preventResize; }
50 void setAllowBorder(FrameEdge edge, bool allowBorder) { m_allowBorder[edge] = allowBorder; }
  /dalvik/dx/tests/088-ssa-combine-blocks/
info.txt 1 This is a test case for the identical-block combining algorithm, which runs after the SSA optimizer to recombine identical blocks (usually exception handlers) created during edge-splitting.
  /external/bison/doc/figs/
example-reduce.dot 4 edge [fontname=courier]
  /external/chromium_org/content/browser/android/
edge_effect.h 27 enum Edge {
35 EdgeEffect(scoped_refptr<cc::Layer> edge, scoped_refptr<cc::Layer> glow);
46 void ApplyToLayers(gfx::SizeF size, Edge edge);
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSValueKeywords.in 238 before-edge
239 after-edge
242 text-before-edge
243 text-after-edge
  /external/chromium_org/ui/gfx/
text_constants.h 23 // Align the text's left edge with that of its display area.
27 // Align the text's right edge with that of its display area.
33 // Align the text's top edge with that of its display area.
37 // Align the text's bottom edge with that of its display area.
  /external/chromium_org/ui/webui/resources/js/cr/ui/
position_util.js 24 * The popup's right edge is aligned with the left edge of the anchor.
25 * The popup's top edge is aligned with the top edge of the anchor.
30 * The popop's left edge is aligned with the right edge of the anchor.
31 * The popup's top edge is aligned with the top edge of the anchor.
36 * The popop's bottom edge is aligned with the top edge of the anchor
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Post/
CartoonEdge.j3md 1 MaterialDef Cartoon Edge {
  /frameworks/base/docs/html/training/
building-graphics.jd 9 that can give your app an edge on the competition.
  /ndk/tests/device/test-stlport_shared-exception/jni/
loop1.cpp 1 // Verify that loop optimization takes into account the exception edge
  /ndk/tests/device/test-stlport_static-exception/jni/
loop1.cpp 1 // Verify that loop optimization takes into account the exception edge
  /external/freetype/src/cff/
cf2blues.h 43 * Each zone is defined by a top and bottom edge in character space.
61 * alignment point may be adjusted to the scaled flat edge of
63 * curved edge of a zone.
87 CF2_GhostBottom = 0x1, /* a single bottom edge */
88 CF2_GhostTop = 0x2, /* a single top edge */
89 CF2_PairBottom = 0x4, /* the bottom edge of a stem hint */
90 CF2_PairTop = 0x8, /* the top edge of a stem hint */
91 CF2_Locked = 0x10, /* this edge has been aligned */
93 CF2_Synthetic = 0x20 /* this edge was synthesized */
120 CF2_UInt flags; /* attributes of the edge */
    [all...]
  /external/pixman/pixman/
Makefile.sources 14 pixman-edge.c \
15 pixman-edge-accessors.c \
39 pixman-edge-imp.h \
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DOTGenerator.java 131 // make a DOT edge for each transition
133 Transition edge = (Transition) s.transition(i); local
136 " edge from s"+s.stateNumber+" ["+i+"] of "+s.getNumberOfTransitions());
139 if ( edge.target instanceof DFAState &&
140 ((DFAState)edge.target).getAcceptStateReachable()!=DFA.REACHABLE_YES )
145 st = stlib.getInstanceOf("edge");
146 st.add("label", getEdgeLabel(edge));
148 st.add("target", getStateLabel(edge.target));
151 walkCreatingDFADOT(dot, (DFAState)edge.target); // keep walkin'
205 // make a DOT edge for each transitio
208 Transition edge = (Transition) s.transition(i); local
    [all...]

Completed in 1838 milliseconds

1 2 34 5 6 7 8 91011>>