/external/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
Geoposition.h | 31 #include "modules/geolocation/Coordinates.h" 39 static PassRefPtr<Geoposition> create(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp) 41 return adoptRef(new Geoposition(coordinates, timestamp)); 50 Coordinates* coords() const { return m_coordinates.get(); } 53 Geoposition(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp) 54 : m_coordinates(coordinates) 61 RefPtr<Coordinates> m_coordinates;
|
/external/chromium_org/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ |
ValidationMessageBubble.java | 95 final RenderCoordinates coordinates = contentViewCore.getRenderCoordinates(); local 98 coordinates.fromLocalCssToPix(anchorX), 99 coordinates.fromLocalCssToPix(anchorY) + yOffset, 100 coordinates.fromLocalCssToPix(anchorX + anchorWidth), 101 coordinates.fromLocalCssToPix(anchorY + anchorHeight) + yOffset); 120 private void measure(RenderCoordinates coordinates) { 128 View.MeasureSpec.makeMeasureSpec(coordinates.getLastFrameViewportWidthPixInt(), 130 View.MeasureSpec.makeMeasureSpec(coordinates.getLastFrameViewportHeightPixInt(), 146 final RenderCoordinates coordinates = contentViewCore.getRenderCoordinates(); local 147 final int viewWidth = coordinates.getLastFrameViewportWidthPixInt() [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/ |
viewport.js | 180 * @return {Rect} The image bounds in image coordinates. 185 * @return {Rect} The screen bounds in screen coordinates. 190 * @return {Rect} The visible part of the image, in image coordinates. 195 * @return {Rect} The visible part of the image, in screen coordinates. 213 * @return {Rect} The image bounds in screen coordinates. 224 * @param {number} size Size in screen coordinates. 225 * @return {number} Size in image coordinates. 232 * @param {number} x X in screen coordinates. 233 * @return {number} X in image coordinates. 240 * @param {number} y Y in screen coordinates [all...] |
/external/chromium/chrome/browser/resources/ntp/ |
drag_drop_controller.js | 18 // canDropOn(coordinates) --> 19 // returns true if the coordinates (relative to the drag container) 22 // setDragPlaceholder(coordinates) --> 24 // the specified coordinates. 79 // Shifts the client coordinates, |xy|, so they are relative to the top left 83 var coordinates = { 88 // If we're in an RTL language, reflect the coordinates so the delegate 91 coordinates.x = this.delegate_.dragContainer.offsetWidth - coordinates.x; 93 return coordinates; [all...] |
apps.js | 425 // Returns true if |coordinates| point to a valid drop location. The 426 // coordinates are relative to the drag container and the object should 428 canDropOn: function(coordinates) { 435 if (coordinates.x >= right || coordinates.x < 0 || 436 coordinates.y >= bottom || coordinates.y < 0) 439 var position = this.getIndexAt_(coordinates); 448 setDragPlaceholder: function(coordinates) { 449 var position = this.getIndexAt_(coordinates); [all...] |
/external/chromium_org/chrome/browser/resources/pdf/ |
pdf.js | 11 var coordinates = [window.pageXOffset, window.pageYOffset]; 12 plugin.postMessage(coordinates);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGResourceMarker.cpp | 86 FloatRect coordinates = RenderSVGContainer::repaintRectInLocalCoordinates(); local 89 coordinates = localToParentTransform().mapRect(coordinates); 91 return markerTransformation.mapRect(coordinates); 156 // The 'origin' coordinate maps to SVGs refX/refY, given in coordinates relative to the viewport established by the marker
|
/external/chromium_org/third_party/mesa/src/docs/OLD/ |
MESA_sprite_point.spec | 34 coordinates at each vertex. This extension effectively turns points 44 1. How are the texture coordinates computed? 53 texture coordinates. The r and q coordinates may have been computed 74 texture and appropriate texture r coordinates could be used to 125 texture coordinates are computed as follows: 133 where x, y, z, w are the point's window coordinates, r and q are the 134 point's 3rd and 4th texture coordinates and r is half the point's 141 The new texture coordinates are not effected by texgen or the texture 142 matrix. Note, however, that the texture r and q coordinates are passe [all...] |
/external/mesa3d/docs/OLD/ |
MESA_sprite_point.spec | 34 coordinates at each vertex. This extension effectively turns points 44 1. How are the texture coordinates computed? 53 texture coordinates. The r and q coordinates may have been computed 74 texture and appropriate texture r coordinates could be used to 125 texture coordinates are computed as follows: 133 where x, y, z, w are the point's window coordinates, r and q are the 134 point's 3rd and 4th texture coordinates and r is half the point's 141 The new texture coordinates are not effected by texgen or the texture 142 matrix. Note, however, that the texture r and q coordinates are passe [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
AttachmentDrawable.java | 90 final ConversationItemViewCoordinates coordinates, final Drawable placeholder, 92 mCoordinates = coordinates; 103 coordinates, fadeOutDurationMs, tileColor); 107 coordinates, fadeOutDurationMs, tileColor); 214 // coordinates. 447 ConversationItemViewCoordinates coordinates, int fadeOutDurationMs, 449 super(placeholder, coordinates.placeholderWidth, coordinates.placeholderHeight, 517 ConversationItemViewCoordinates coordinates, int fadeOutDurationMs, 519 super(progress, coordinates.progressBarWidth, coordinates.progressBarHeight [all...] |
AttachmentGridDrawable.java | 69 public void setCoordinates(ConversationItemViewCoordinates coordinates) { 70 mCoordinates = coordinates; 95 // transform item-level coordinates into local drawable coordinate space
|
/external/chromium_org/chrome/browser/extensions/api/location/ |
location_manager.cc | 351 location::Coordinates* coordinates) { 352 coordinates->latitude = position.latitude; 353 coordinates->longitude = position.longitude; 355 coordinates->altitude.reset(new double(position.altitude)); 356 coordinates->accuracy = position.accuracy; 358 coordinates->altitude_accuracy.reset( 362 coordinates->heading.reset(new double(position.heading)); 364 coordinates->speed.reset(new double(position.speed));
|
location_manager.h | 29 struct Coordinates; 73 // |coordinates|. 76 api::location::Coordinates* coordinates);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragController.java | 174 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged. 207 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged. 488 final int[] coordinates = mCoordinatesTemp; local 489 DropTarget dropTarget = findDropTarget(x, y, coordinates); 490 mDragObject.x = coordinates[0]; 491 mDragObject.y = coordinates[1]; 644 final int[] coordinates = mCoordinatesTemp; 646 mDragObject.x = coordinates[0]; 647 mDragObject.y = coordinates[1]; 672 final int[] coordinates = mCoordinatesTemp [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
DragController.java | 164 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged. 197 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged. 484 final int[] coordinates = mCoordinatesTemp; local 485 DropTarget dropTarget = findDropTarget(x, y, coordinates); 486 mDragObject.x = coordinates[0]; 487 mDragObject.y = coordinates[1]; 641 final int[] coordinates = mCoordinatesTemp; 643 mDragObject.x = coordinates[0]; 644 mDragObject.y = coordinates[1]; 669 final int[] coordinates = mCoordinatesTemp [all...] |
/external/chromium_org/chrome/test/functional/perf/endure_graphs/js/ |
plotter.js | 280 this.coordinates = null; 284 this.coordinates = new Coordinates( 286 this.coordinatesOther = new Coordinates( 289 this.coordinates = new Coordinates(this.plotData_); 398 function draw(plotData, coordinates, colorOffset, stack) { 402 plotData[i], coordinates); 405 plotData[i], coordinates); 412 this.coordinates, 0, this.stackedGraph_) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
VTTCue.cpp | 801 std::pair<double, double> coordinates; local 804 coordinates.first = m_textPosition; 805 coordinates.second = m_computedLinePosition; 807 return coordinates; 811 coordinates.first = 100 - m_textPosition; 812 coordinates.second = m_computedLinePosition; 814 return coordinates; 818 coordinates.first = 100 - m_computedLinePosition; 819 coordinates.second = m_textPosition; 821 return coordinates; [all...] |
/packages/apps/Dialer/src/com/android/dialer/list/ |
PhoneFavoriteListView.java | 248 final int[] coordinates = new int[2]; local 249 getLocationOnScreen(coordinates); 250 // Calculate the X and Y coordinates of the drag event relative to the view 251 final int viewX = eX - coordinates[0]; 252 final int viewY = eY - coordinates[1]; 366 // x and y passed in are the coordinates of where the user has touched down,
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/ |
popuplib.js | 60 // coordinates [width, height] which can be [0, 0] if it was not possible 86 // Computes the coordinates of the parent window. 87 // Gets the coordinates of the parent frame 103 // Computes the coordinates of the new window, so as to center it 270 var coordinates = that.getCenteredCoords(width, height); 274 ",left=" + coordinates[0] +",top=" + coordinates[1]);
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/ |
popuplib.js | 60 // coordinates [width, height] which can be [0, 0] if it was not possible 86 // Computes the coordinates of the parent window. 87 // Gets the coordinates of the parent frame 103 // Computes the coordinates of the new window, so as to center it 270 var coordinates = that.getCenteredCoords(width, height); 274 ",left=" + coordinates[0] +",top=" + coordinates[1]);
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationItemViewCoordinates.java | 41 * Represents the coordinates of elements inside a CanvasConversationHeaderView 43 * and record the coordinates of each element after layout. This will allows us 72 * optional views and determine the correct coordinates for that item configuration. 295 Utils.traceBeginSection("CIV coordinates constructor"); 378 // Records coordinates. 583 * Returns the x coordinates of a view by tracing up its hierarchy. 595 * Returns the y coordinates of a view by tracing up its hierarchy. 659 * Returns coordinates for elements inside a conversation header view given 665 ConversationItemViewCoordinates coordinates = cache.getCoordinates(cacheKey); local 666 if (coordinates != null) [all...] |
/external/chromium/chrome/browser/resources/net_internals/ |
resizableverticalsplitview.js | 102 // Convert from page coordinates, to view coordinates.
|
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
pshints.h | 160 * Array of 2 coordinates in 16.16 format, used as (position,length) 164 * Use vertical coordinates (y) for horizontal stems (dim=0). Use 165 * horizontal coordinates (x) for vertical stems (dim=1). 205 * Use vertical coordinates (y) for horizontal stems (dim=0). Use 206 * horizontal coordinates (x) for vertical stems (dim=1). 297 * On input, all points within the outline are in font coordinates. On 453 * Use vertical coordinates (y) for horizontal stems (dim=0). Use 454 * horizontal coordinates (x) for vertical stems (dim=1). 469 FT_Fixed* coordinates ); 611 * On input, all points within the outline are in font coordinates. O [all...] |
/external/freetype/include/freetype/internal/ |
pshints.h | 160 * Array of 2 coordinates in 16.16 format, used as (position,length) 164 * Use vertical coordinates (y) for horizontal stems (dim=0). Use 165 * horizontal coordinates (x) for vertical stems (dim=1). 205 * Use vertical coordinates (y) for horizontal stems (dim=0). Use 206 * horizontal coordinates (x) for vertical stems (dim=1). 297 * On input, all points within the outline are in font coordinates. On 453 * Use vertical coordinates (y) for horizontal stems (dim=0). Use 454 * horizontal coordinates (x) for vertical stems (dim=1). 469 FT_Fixed* coordinates ); 611 * On input, all points within the outline are in font coordinates. O [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/ |
MeshHelper.java | 145 throw new BlenderFileException("The amount of faces uv coordinates is not equal to faces amount!");
406 //setting the coordinates inside the mesh context
524 DynamicArray<Number> coordinates = (DynamicArray<Number>) mVerts.get(i).getFieldValue("co");
local 525 vertices[i] = new Vector3f(coordinates.get(0).floatValue(), coordinates.get(2).floatValue(), -coordinates.get(1).floatValue());
529 DynamicArray<Number> coordinates = (DynamicArray<Number>) mVerts.get(i).getFieldValue("co");
local 530 vertices[i] = new Vector3f(coordinates.get(0).floatValue(), coordinates.get(1).floatValue(), coordinates.get(2).floatValue()); [all...] |