HomeSort by relevance Sort by last modified time
    Searched full:edge (Results 51 - 75 of 576) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/res/raw/
v21_complicated.vcf 14 ADR;WORK:;;100 Waters Edge;Baytown;LA;30314;United States of America
15 LABEL;WORK;ENCODING=QUOTED-PRINTABLE:100 Waters Edge=0D=0ABaytown, LA 30314=0D=0AUnited States of America
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemRequestRectAboveThinFirstItemTest.java 44 assertTrue("first child needs to be within fading edge height",
50 // reproduce bug 998501: when first item fits within fading edge,
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchBottomGravityTest.java 71 assertEquals("Last item is not touching the bottom edge",
90 assertEquals("Last item is not touching the bottom edge",
  /frameworks/base/telephony/tests/telephonytests/src/android/telephony/
PhoneNumberWatcherTest.java 33 // Move the cursor to the left edge
56 // Make sure it deals with left edge boundary case
  /external/bison/src/
lalr.c 173 goto_number *edge = xnmalloc (ngotos + 1, sizeof *edge); local
193 edge[nedges++] = map_goto (stateno, sym);
201 memcpy (reads[i], edge, nedges * sizeof edge[0]);
213 free (edge);
232 goto_number *edge = xnmalloc (ngotos + 1, sizeof *edge); local
274 edge[nedges++] = map_goto (states1[--length],
289 includes[i][j] = edge[j]
    [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...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
HighlightView.java 186 // the bottom edge (with some tolerance). Similar for horizCheck.
190 // Check whether the position is near some edge(s).
204 // Not near any edge but inside the rectangle: move.
213 // The "edge" parameter specifies which edges the user is dragging.
214 void handleMotion(int edge, float dx, float dy) {
216 if (edge == GROW_NONE) {
218 } else if (edge == MOVE) {
222 if (((GROW_LEFT_EDGE | GROW_RIGHT_EDGE) & edge) == 0) {
226 if (((GROW_TOP_EDGE | GROW_BOTTOM_EDGE) & edge) == 0) {
233 growBy((((edge & GROW_LEFT_EDGE) != 0) ? -1 : 1) * xDelta, (((edge & GROW_TOP_EDGE) != 0) ? -1 : 1) * yDelta)
    [all...]
  /dalvik/dx/tests/086-ssa-edge-split/
Blort.java 20 * This method requires the edge-splitter to add a node
  /device/htc/passion/
AndroidBoard.mk 17 # edge-cases that can't be managed otherwise. No new rules
  /external/jpeg/
transupp.h 66 * at the bottom, but leaves any partial iMCUs at the right edge untouched.
67 * Similarly flip_v leaves any partial iMCUs at the bottom edge untouched.
69 * and process edge blocks in a way that preserves the equivalence.
75 * (For example, -rot 270 -trim trims only the bottom edge, but -rot 90 -trim
  /external/kernel-headers/original/linux/
a1026.h 80 #define CtrlMode_FE 0x0003 /* Falling Edge */
81 #define CtrlMode_RE 0x0004 /* Rising Edge */
115 #define PCMLatchEdge_Tx_F_Rx_R 0x00 /* Tx/Rx on falling/rising edge */
116 #define PCMLatchEdge_Tx_R_Rx_F 0x03 /* Tx/Rx on falling/rising edge */
  /external/quake/quake/src/QW/client/
render.h 74 float vrectrightedge; // rightmost right edge we care about,
75 // for use in edge list
82 float fvrectright; // rightmost edge, for Alias clamping
83 float fvrectbottom; // bottommost edge, for Alias clamping
  /external/quake/quake/src/WinQuake/
render.h 80 float vrectrightedge; // rightmost right edge we care about,
81 // for use in edge list
88 float fvrectright; // rightmost edge, for Alias clamping
89 float fvrectbottom; // bottommost edge, for Alias clamping
server.h 119 #define MOVETYPE_STEP 4 // gravity, special edge handling
133 #define SOLID_TRIGGER 1 // touch on edge, but not blocking
134 #define SOLID_BBOX 2 // touch on edge, block
135 #define SOLID_SLIDEBOX 3 // touch on edge, but not an onground
136 #define SOLID_BSP 4 // bsp clip, touch on edge, block
  /external/skia/include/core/
SkLineClipper.h 16 edge of the clip.
  /external/skia/include/utils/
SkUnitMappers.h 45 center of the sphere, and 1 maps to the edge.
  /frameworks/base/core/java/android/view/animation/
RotateAnimation.java 97 * edge.
100 * edge.
125 * left edge. This value can either be an absolute number if
133 * top edge. This value can either be an absolute number if
  /frameworks/base/graphics/java/android/graphics/
BlurMaskFilter.java 20 * This takes a mask, and blurs its edge by the specified radius. Whether or
  /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);
  /frameworks/base/core/java/android/view/
FocusFinder.java 225 // edge to be closer to the source's top edge than rect1's bottom edge.
245 * Includes an edge case for an empty rect (which is used in some cases when
307 * @return The distance from the edge furthest in the given direction
308 * of source to the edge nearest in the given direction of dest. If the
332 * edge of source to the far edge of dest. If the
357 * edge of the destination rectange.
389 * @param deltas Offset from the <x, y> to the edge of the nearest view. Note that this arra
    [all...]
  /external/skia/include/effects/
SkGradientShader.h 60 @param colors The array[count] of colors, to be distributed between the center and edge of the circle
63 the the colors are distributed evenly between the center and edge of the circle.
85 @param colors The array[count] of colors, to be distributed between the center and edge of the circle
88 the the colors are distributed evenly between the center and edge of the circle.
113 the the colors are distributed evenly between the center and edge of the circle.
  /frameworks/base/core/java/android/widget/
RelativeLayout.java 74 * Rule that aligns a child's right edge with another child's left edge.
78 * Rule that aligns a child's left edge with another child's right edge.
82 * Rule that aligns a child's bottom edge with another child's top edge.
86 * Rule that aligns a child's top edge with another child's bottom edge.
95 * Rule that aligns a child's left edge with another child's left edge
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaConverter.java 33 * Returns an SSA representation, edge-split and with phi
56 * The exit block, added here, is not considered for edge splitting
65 * Returns an SSA represention with only the edge-splitter run.
71 * @return an SSA represention with only the edge-splitter run
91 * @return an SSA represention with only the edge-splitter run
110 * Converts CFG into "edge-split" form, such that each node either a
  /external/webkit/WebCore/css/
SVGCSSParser.cpp 55 // auto | baseline | before-edge | text-before-edge | middle |
56 // central | after-edge | text-after-edge | ideographic | alphabetic |
75 // text-after-edge | text-before-edge | inherit

Completed in 83 milliseconds

1 23 4 5 6 7 8 91011>>