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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatRect.h 101 void shiftXEdgeTo(float edge)
103 float delta = edge - x();
104 setX(edge);
107 void shiftMaxXEdgeTo(float edge)
109 float delta = edge - maxX();
112 void shiftYEdgeTo(float edge)
114 float delta = edge - y();
115 setY(edge);
118 void shiftMaxYEdgeTo(float edge)
120 float delta = edge - maxY()
    [all...]
IntRect.h 96 void shiftXEdgeTo(int edge)
98 int delta = edge - x();
99 setX(edge);
102 void shiftMaxXEdgeTo(int edge)
104 int delta = edge - maxX();
107 void shiftYEdgeTo(int edge)
109 int delta = edge - y();
110 setY(edge);
113 void shiftMaxYEdgeTo(int edge)
115 int delta = edge - maxY()
    [all...]
LayoutRect.h 109 void shiftXEdgeTo(LayoutUnit edge)
111 LayoutUnit delta = edge - x();
112 setX(edge);
115 void shiftMaxXEdgeTo(LayoutUnit edge)
117 LayoutUnit delta = edge - maxX();
120 void shiftYEdgeTo(LayoutUnit edge)
122 LayoutUnit delta = edge - y();
123 setY(edge);
126 void shiftMaxYEdgeTo(LayoutUnit edge)
128 LayoutUnit delta = edge - maxY()
    [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/chromium_org/chrome/tools/
history-viz.py 82 class Edge(object):
83 """Represents an edge in the history graph, connecting two pages.
85 If a link is traversed twice, it is one Edge with two entries in
109 # edge['chain'] = chain
161 edges = {} # Map of urlid->urlid->Edge.
168 edge = edges[src][dst] = edges[src].get(dst, Edge(src, dst))
172 edge.transitions.append(trans)
211 for dst, edge in dsts.items():
213 label = [] # Label for the edge
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 73 /// SplitCriticalEdge - If this edge is a critical edge, insert a new node to
74 /// split the critical edge. This will update DominatorTree and
76 /// will not invalidate either of them. This returns the new block if the edge
80 /// specified successor will be merged into the same critical edge block.
84 /// the standard definition of a "critical edge".
86 /// It is invalid to call this function on a critical edge that starts at an
101 /// SplitCriticalEdge - If the edge from *PI to BB is not critical, return
115 /// SplitCriticalEdge - If an edge from Src to Dst is critical, split the edge
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow.h 396 /* Location to track pending stmt for edge insertion. */
424 extern edge find_taken_edge (basic_block, tree);
433 extern void extract_true_false_edges_from_block (basic_block, edge *, edge *);
434 extern bool gimple_duplicate_sese_region (edge, edge, basic_block *, unsigned,
436 extern bool gimple_duplicate_sese_tail (edge, edge, basic_block *, unsigned,
441 extern void add_phi_args_after_copy (basic_block *, unsigned, edge);
461 void remove_edge_and_dominated_blocks (edge);
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow.h 396 /* Location to track pending stmt for edge insertion. */
424 extern edge find_taken_edge (basic_block, tree);
433 extern void extract_true_false_edges_from_block (basic_block, edge *, edge *);
434 extern bool gimple_duplicate_sese_region (edge, edge, basic_block *, unsigned,
436 extern bool gimple_duplicate_sese_tail (edge, edge, basic_block *, unsigned,
441 extern void add_phi_args_after_copy (basic_block *, unsigned, edge);
461 void remove_edge_and_dominated_blocks (edge);
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-flow.h 396 /* Location to track pending stmt for edge insertion. */
424 extern edge find_taken_edge (basic_block, tree);
433 extern void extract_true_false_edges_from_block (basic_block, edge *, edge *);
434 extern bool gimple_duplicate_sese_region (edge, edge, basic_block *, unsigned,
436 extern bool gimple_duplicate_sese_tail (edge, edge, basic_block *, unsigned,
441 extern void add_phi_args_after_copy (basic_block *, unsigned, edge);
461 void remove_edge_and_dominated_blocks (edge);
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-flow.h 396 /* Location to track pending stmt for edge insertion. */
424 extern edge find_taken_edge (basic_block, tree);
433 extern void extract_true_false_edges_from_block (basic_block, edge *, edge *);
434 extern bool gimple_duplicate_sese_region (edge, edge, basic_block *, unsigned,
436 extern bool gimple_duplicate_sese_tail (edge, edge, basic_block *, unsigned,
441 extern void add_phi_args_after_copy (basic_block *, unsigned, edge);
461 void remove_edge_and_dominated_blocks (edge);
    [all...]
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 35 * instance for each edge that should show the effect, feed it input data using
39 * false after drawing, the edge effect's animation is not yet complete and the widget
45 * The edge effect may then be drawn on top of the view's content using the
110 // How much dragging should effect the height of the edge image.
155 * Set the size of this edge effect in pixels.
166 * Set the position of this edge effect in pixels. This position is
169 * @param x The position of the edge effect on the X axis
170 * @param y The position of the edge effect on the Y axis
197 * A view should call this when content is pulled away from an edge by the user.
204 * back toward the edge reached to initiate the effect
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
MachineProbe.java 61 // for (Edge e : startState.edges) { // walk edges looking for valid
78 /** Return a list of edge labels from start state to targetState. */
85 // walk looking for edge whose target is next dfa state
113 * nfaStates[i] will have an edge intersecting with labels[i].
122 // find NFA state with edge whose label matches labels[i]
173 // // add all reaches from all edge targets
174 // for (Edge e : d.edges) {
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
CartoonEdgeFilter.java 45 * Applies a cartoon-style edge detection filter to all objects in the scene.
135 * Defines at what threshold of difference of depth an edge is outlined default is 0.1f
146 * returns the edge intensity<br>
155 * sets the edge intensity<br>
175 * sets the witdh of the edge in pixels default is 1
228 * returns the edge color
236 * Sets the edge color, default is black
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleTest.java 92 assertTrue("top blob needs to be lower than the fading edge region",
107 // fading edge)
129 // room for the vertical fading edge
147 // on screen, positioned at top (with room for fading edge)
166 // with room for vertical fading edge
195 * Assert that view overlaps the bottom edge of the screen
216 * Assert that view overlaps the bottom edge of the screen
ScrollViewButtonsAndLabelsTest.java 57 assertTrue("vertical fading edge width needs to be non-zero for this "
63 // onto the screen just above the vertical fading edge
78 + "are expecting the fading edge to be there).",
93 // there should be no offset for vertical fading edge
134 // top should take into account fading edge
137 assertEquals("top should take into account fading edge",
160 + " into account vertical fading edge.",
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridMatch.java 25 * edge, or a margin, or centering, or a gap distance from another edge and so on.
28 /** The distance to the matched edge - used to pick best matches */
31 /** Type of edge that was matched (this refers to the edge on the dragged node,
50 * @param type the edge of the dragged element that was matched
136 * precedence than centering which in turn is ordered before external edge matches
  /external/opencv/cxcore/src/
cxdatastructs.cpp 2979 CvGraphEdge *edge = vtx->first; local
3014 CvGraphEdge *edge = vtx->first; local
3036 CvGraphEdge *edge = 0; local
3075 CvGraphEdge *edge = 0; local
3107 CvGraphEdge *edge = 0; local
3211 CvGraphEdge *edge, *next_edge, *prev_edge; local
3294 CvGraphEdge *edge; local
3321 CvGraphEdge *edge; local
3350 CvGraphEdge* edge; member in struct:CvGraphItem
3528 CvGraphEdge* edge; local
3734 CvGraphEdge* edge = (CvGraphEdge*)reader.ptr; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestThemeControlWin.h 135 // If drawEdges is true, draw an edge around the control. If
145 // The box will have a border drawn in the default edge color.
150 // filled with the given color. The box will have an edge drawn in the
151 // default edge color.
155 // with the specified color (and with a border in the default edge color).
159 // and with a border in the default edge color.
164 // default edge color.
168 // with a border in the default edge color, and then draws another box
170 // inner color and with a border in the default edge color.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ResizeHandler.java 57 * @param horizontalEdgeType the type of horizontal edge being resized, or null
58 * @param verticalEdgeType the type of vertical edge being resized, or null
153 protected boolean isEdgeTypeCompatible(SegmentType edge, SegmentType dragged, int delta) {
154 boolean compatible = super.isEdgeTypeCompatible(edge, dragged, delta);
157 // width) we cannot use -negative- margins to jump back to a closer edge; we
221 if (mHorizontalDeps.contains(match.edge.node)) {
225 snapHorizontal(hEdge, match.edge.at, newBounds);
245 if (mVerticalDeps.contains(match.edge.node)) {
250 snapVertical(vEdge, match.edge.at, newBounds);
  /external/bison/src/
graphviz.h 41 /** Output a Dot edge.
44 * \param label human readable label of the edge
46 * \param style Dot style of the edge (e.g., "dotted" or "solid").
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_split_prim.h 14 void (*edge)(void *priv, boolean enabled); member in struct:util_split_prim
53 s->edge(s->priv, TRUE);
75 s->edge(s->priv, FALSE);
  /external/chromium_org/third_party/skia/include/effects/
SkMatrixConvolutionImageFilter.h 19 effects such as sharpening, blurring, edge detection, etc.
26 kClamp_TileMode, /*!< Clamp to the image's edge pixels. */
27 kRepeat_TileMode, /*!< Wrap around to the image's opposite edge. */
  /external/clang/utils/analyzer/
ubiviz 35 elif action == 'edge':
38 edge = G.new_edge(src,dst)
40 G.set_edge_attribute(edge, attribute[0], attribute[1])
  /external/mesa3d/src/gallium/auxiliary/util/
u_split_prim.h 14 void (*edge)(void *priv, boolean enabled); member in struct:util_split_prim
53 s->edge(s->priv, TRUE);
75 s->edge(s->priv, FALSE);
  /external/skia/include/effects/
SkMatrixConvolutionImageFilter.h 19 effects such as sharpening, blurring, edge detection, etc.
26 kClamp_TileMode, /*!< Clamp to the image's edge pixels. */
27 kRepeat_TileMode, /*!< Wrap around to the image's opposite edge. */

Completed in 2096 milliseconds

1 2 3 4 5 67 8 91011>>