HomeSort by relevance Sort by last modified time
    Searched refs:Point (Results 126 - 150 of 575) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/ui/touch/tabs/
touch_tab.h 13 #include "ui/gfx/point.h"
33 void set_background_offset(const gfx::Point& offset) {
75 gfx::Point background_offset_;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
LineGraph.java 18 import org.eclipse.swt.graphics.Point;
46 Point getSize(GC g) {
47 Point e1= g.stringExtent(this.description);
48 Point e2= g.stringExtent(this.title);
49 return new Point(Math.max(e1.x, e2.x), e1.y+e2.y);
73 Point ee= g.stringExtent(this.fTitle);
83 Point emin= g.stringExtent(smin);
86 Point emax= g.stringExtent(smax);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
TextDialogPropertyEditor.java 18 import org.eclipse.swt.graphics.Point;
50 public boolean activate(PropertyTable propertyTable, Property property, Point location)
BooleanObjectPropertyEditor.java 20 import org.eclipse.swt.graphics.Point;
84 public boolean activate(PropertyTable propertyTable, Property property, Point location)
95 public void doubleClick(Property property, Point location) throws Exception {
BooleanPropertyEditor.java 15 import org.eclipse.swt.graphics.Point;
82 public boolean activate(PropertyTable propertyTable, Property property, Point location)
93 public void doubleClick(Property property, Point location) throws Exception {
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
MapModel2D.java 2 import java.awt.Point;
135 * @return {@code Point} a pixel co-ordinate
138 public Point toPixel(Position position) {
204 return new Point(x, y);
209 * @param p {@link Point} object that you wish to convert into
214 public Position toPosition(Point p) {
218 Point pixelCentre = toPixel(new Position(0, 0));
225 // If we are zoomed in past a certain point, then use linear search.
264 * @param p <code>Point</code> object denoting the map's new centre
267 public void setCentre(Point p)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
PointCloud.java 33 private ArrayList<Point> mPointCloud = new ArrayList<Point>();
106 class Point {
111 public Point(float x2, float y2, float r) {
157 mPointCloud.add(new Point(x, y, r));
178 public int getAlphaForPoint(Point point) {
180 float glowDistance = hypot(glowManager.x - point.x, glowManager.y - point.y);
188 float radius = hypot(point.x, point.y)
208 Point point = points.get(i); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
PointCloud.java 33 private ArrayList<Point> mPointCloud = new ArrayList<Point>();
106 class Point {
111 public Point(float x2, float y2, float r) {
157 mPointCloud.add(new Point(x, y, r));
178 public int getAlphaForPoint(Point point) {
180 float glowDistance = hypot(glowManager.x - point.x, glowManager.y - point.y);
189 float radius = hypot(point.x, point.y)
209 Point point = points.get(i); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/
AndroidDoubleClickStrategyTest.java 18 import org.eclipse.swt.graphics.Point;
63 Point positions = strategy.getWord(before, cursor);
  /external/chromium/chrome/browser/ui/views/tabs/
tab_strip.h 13 #include "ui/gfx/point.h"
59 virtual bool IsPositionInWindowCaption(const gfx::Point& point) OVERRIDE;
60 virtual void SetBackgroundOffset(const gfx::Point& offset) OVERRIDE;
82 virtual views::View* GetEventHandlerForPoint(const gfx::Point& point)
95 const gfx::Point& location,
130 // Direction the arrow should point in. If true, the arrow is displayed
226 // Returns true if the specified point in TabStrip coords is within the
228 bool IsPointInTab(Tab* tab, const gfx::Point& point_in_tabstrip_coords)
    [all...]
  /frameworks/base/cmds/wm/src/com/android/commands/wm/
Wm.java 22 import android.graphics.Point;
40 * Command-line entry point.
89 Point initialSize = new Point();
90 Point baseSize = new Point();
  /frameworks/base/core/java/android/view/
Display.java 20 import android.graphics.Point;
340 * @param outSize A {@link Point} object to receive the size information.
342 public void getSize(Point outSize) {
355 * @see #getSize(Point)
395 public void getCurrentSizeRange(Point outSmallestSize, Point outLargestSize) {
418 * @deprecated Use {@link #getSize(Point)} instead.
429 * @deprecated Use {@link #getSize(Point)} instead.
541 public void getRealSize(Point outSize) {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
Wallpaper.java 22 import android.graphics.Point;
69 private Point getDefaultDisplaySize(Point size) {
100 Point size = getDefaultDisplaySize(new Point());
  /external/chromium/chrome/browser/ui/views/frame/
browser_view_layout.cc 20 #include "ui/gfx/point.h"
102 gfx::Point topleft;
123 const gfx::Point& point) {
124 gfx::Point tabstrip_point(point);
130 const gfx::Point& point) {
138 gfx::Point point_in_browser_view_coords(point);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LinearLayoutRuleTest.java 33 import com.android.ide.common.api.Point;
53 Point dropPoint = new Point(10, 5);
104 protected INode dragInto(boolean vertical, Rect dragBounds, Point dragPoint,
295 // Drag point
296 new Point(30, -10),
319 new Point(30, -10), 0, -1,
327 // Drag point
328 new Point(30, 500),
347 dragInto(true, new Rect(0, 0, 105, 80), new Point(30, 500), 4, -1
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMapView.java 4 import android.graphics.Point;
41 private Point lastTouchEventPoint;
106 @Override public Point toPixels(GeoPoint geoPoint, Point point) {
107 if (point == null) {
108 point = new Point();
111 point.y = scaleDegree(geoPoint.getLatitudeE6(), bottom, top, mapCenter.getLatitudeE6(), latitudeSpan);
112 point.x = scaleDegree(geoPoint.getLongitudeE6(), left, right, mapCenter.getLongitudeE6(), longitudeSpan)
    [all...]
  /frameworks/base/media/mca/filterfw/jni/
jni_shader_program.cpp 32 using android::filterfw::Point;
155 program->SetSourceRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
173 program->SetTargetRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaEncoderFilter.java 35 import android.filterfw.geometry.Point;
194 Point bl = new Point(0, 0);
195 Point br = new Point(1, 0);
196 Point tl = new Point(0, 1);
197 Point tr = new Point(1, 1);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
SurfaceTextureTarget.java 38 import android.filterfw.geometry.Point;
85 private Quad mSourceQuad = new Quad(new Point(0.0f, 1.0f),
86 new Point(1.0f, 1.0f),
87 new Point(0.0f, 0.0f),
88 new Point(1.0f, 0.0f));
91 private Quad mTargetQuad = new Quad(new Point(0.0f, 0.0f),
92 new Point(1.0f, 0.0f),
93 new Point(0.0f, 1.0f),
94 new Point(1.0f, 1.0f));
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view.h 19 #include "ui/gfx/point.h"
74 virtual void RunMenu(views::View* source, const gfx::Point& pt) OVERRIDE;
93 void RunOptionsMenu(const gfx::Point& pt);
126 gfx::Point GetContentsOffset() const;
  /frameworks/base/core/java/android/app/backup/
WallpaperBackupHelper.java 22 import android.graphics.Point;
91 Point size = new Point();
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfInternalSelectionViews.java 20 import android.graphics.Point;
115 Point size = new Point();
  /frameworks/base/services/java/com/android/server/am/
ProcessList.java 25 import android.graphics.Point;
166 Point p = new Point();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
BooleanXmlPropertyEditor.java 24 import org.eclipse.swt.graphics.Point;
84 public boolean activate(PropertyTable propertyTable, Property property, Point location)
95 public void doubleClick(Property property, Point location) throws Exception {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
InputDensityDialog.java 23 import org.eclipse.swt.graphics.Point;
91 protected Point getInitialSize() {
92 return new Point(450, 150);

Completed in 998 milliseconds

1 2 3 4 56 7 8 91011>>