HomeSort by relevance Sort by last modified time
    Searched full:bounds (Results 1626 - 1650 of 5192) sorted by null

<<61626364656667686970>>

  /frameworks/base/core/java/android/gesture/
GestureOverlayView.java 294 final RectF bounds = new RectF(); local
295 path.computeBounds(bounds, true);
299 mPath.addPath(path, -bounds.left + (getWidth() - bounds.width()) / 2.0f,
300 -bounds.top + (getHeight() - bounds.height()) / 2.0f);
  /frameworks/base/docs/image_sources/training/basics/basic-simple-screen-mock.graffle/
data.plist 16 <key>Bounds</key>
53 <key>Bounds</key>
170 <key>Bounds</key>
287 <key>Bounds</key>
404 <key>Bounds</key>
441 <key>Bounds</key>
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DurationMinimap.java 276 private void drawBackground(GC gc, Rectangle bounds) {
278 gc.fillRectangle(bounds);
335 Rectangle bounds = mPositionHelper.getDurationBounds( local
339 gc.fillRectangle(bounds);
460 /** Get the bounds for a call duration line. */
480 /** Get the bounds for calls spanning given range. */
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc 184 const gfx::Rect bounds = GetContentsBounds(); variable
187 int start_x = bounds.x();
192 icon->SetY(bounds.y() +
193 (bounds.height() - icon->bounds().height()) / 2);
194 start_x += icon->bounds().width() + kAroundTextPadding;
198 int end_x = bounds.width();
202 textfield->SetBounds(bounds.width() - preferred_width, bounds.y(),
203 preferred_width, bounds.height())
330 gfx::Rect bounds = GetLocalBounds(); variable
620 gfx::Rect bounds = ContentBoundsSansBubbleBorder(); local
710 gfx::Rect bounds = GetContentsBounds(); local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 364 /** clip against the layer's bounds */
406 * @param bounds May be null. The maximum size the offscreen bitmap
413 public int saveLayer(@Nullable RectF bounds, @Nullable Paint paint, @Saveflags int saveFlags) {
414 if (bounds == null) {
415 bounds = new RectF(getClipBounds());
417 return saveLayer(bounds.left, bounds.top, bounds.right, bounds.bottom, paint, saveFlags);
421 * Convenience for saveLayer(bounds, paint, {@link #ALL_SAVE_FLAG}
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/
selection.js 102 range.addRange(this.objectInstance.bounds);
145 get bounds() {
224 throw new Error('Index out of bounds');
  /external/chromium_org/ash/display/
screen_ash.cc 37 int distance = display.bounds().ManhattanDistanceToPoint(point);
56 gfx::Rect intersect = gfx::IntersectRects(display.bounds(), match_rect);
149 Shell::GetScreen()->GetDisplayNearestWindow(window).bounds());
  /external/chromium_org/ash/shelf/
shelf_tooltip_manager_unittest.cc 150 params.bounds = gfx::Rect(0, 0, 200, 200);
227 gfx::Rect tooltip_rect = GetTooltipWidget()->GetNativeWindow()->bounds();
257 gfx::Rect tooltip_rect = GetTooltipWidget()->GetNativeWindow()->bounds();
  /external/chromium_org/cc/debug/
debug_rect_history.cc 81 static_cast<float>(layer->bounds().width());
83 static_cast<float>(layer->bounds().height());
280 // animating bounds but that we can't compute them.
  /external/chromium_org/cc/layers/
scrollbar_layer_impl_base.cc 106 // Don't intersect with the bounds as in LayerRectToContentRect() because
211 // means the quads may extend outside the layer's bounds.
237 ? bounds().width() - thumb_thickness
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_popup_controller_impl.h 86 virtual void SetPopupBounds(const gfx::Rect& bounds) OVERRIDE;
168 // Calculates and sets the bounds of the popup, including placing it properly
176 // The bounds of the Autofill popup.
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_details_container.mm 137 NSRect fieldRect = [field convertRect:[field bounds] toView:clipView];
196 NSRect viewRect = [field convertRect:[field bounds] toView:nil];
274 NSPoint fieldOrigin = [field convertPoint:[field bounds].origin toView:nil];
  /external/chromium_org/chrome/browser/ui/views/ash/
tab_scrubber.cc 44 gfx::Rect tab_bounds = tab_strip->tab_at(index)->bounds();
147 int first_tab_center = first_tab->bounds().CenterPoint().x();
149 int last_tab_tab_center = last_tab->bounds().CenterPoint().x();
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_non_client_frame_view_ash_browsertest.cc 213 const gfx::Rect initial = frame_view->caption_button_container_->bounds();
217 bounds();
222 bounds();
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_manager.h 60 const gfx::Rect& bounds) const = 0;
141 // Retrieve the bounds of the parent View in screen coordinates.
213 // touch event was within the bounds of the currently focused object.
  /external/chromium_org/content/browser/web_contents/aura/
gesture_nav_simple.cc 163 return web_contents_->GetNativeView()->bounds();
204 const gfx::Rect& window_bounds = window->bounds();
223 clip_layer_->SetBounds(window->layer()->bounds());
overscroll_navigation_overlay.cc 57 // Invoked prior to the bounds changing. The returned closured is run after
58 // the bounds change.
255 window_->SchedulePaintInRect(gfx::Rect(window_->bounds().size()));
  /external/chromium_org/content/common/
inter_process_time_ticks_converter_unittest.cc 102 // bounds and scale down the delta. |test_time| is on the midpoint, so it
150 // The bounds are all okay, but the |remote_lower_bound| and
166 // The bounds are all okay, but the |remote_lower_bound| and
  /external/chromium_org/mojo/examples/pepper_container_app/
plugin_instance.cc 49 void PluginInstance::DidChangeView(const PP_Rect& bounds) {
51 view_data.rect = bounds;
54 view_data.clip_rect = bounds;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.h 145 // Bounds of (possibly transformed) caret in absolute coords
207 FloatRect bounds(bool clipToVisibleContent = true) const;
285 // The painted bounds of the caret in absolute coordinates
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextRecorder.cpp 415 SaveLayerStrategy willSaveLayer(const SkRect* bounds, const SkPaint* paint, SaveFlags flags) OVERRIDE
418 if (bounds)
419 params->setObject("bounds", objectForSkRect(*bounds));
422 this->SkCanvas::willSaveLayer(bounds, paint, flags);
449 bool getClipBounds(SkRect* bounds) const OVERRIDE
451 if (bounds)
452 bounds->setXYWH(0, 0, SkIntToScalar(this->imageInfo().fWidth), SkIntToScalar(this->imageInfo().fHeight));
456 bool getClipDeviceBounds(SkIRect* bounds) const OVERRIDE
458 if (bounds)
    [all...]
  /external/chromium_org/third_party/icu/patches/
clang.patch 44 +#pragma clang diagnostic ignored "-Warray-bounds"
61 +#pragma clang diagnostic ignored "-Warray-bounds"
78 +#pragma clang diagnostic ignored "-Warray-bounds"
  /external/chromium_org/third_party/icu/source/common/
uvectr64.h 38 * <p>There is index bounds checking, but little is done about it. If
39 * indices are out of bounds, either nothing happens, or zero is
55 * <p>Improve the handling of index out of bounds errors.
  /external/chromium_org/third_party/skia/gm/
rrects.cpp 127 SkRect bounds = rrect.getBounds(); variable
128 bounds.outset(2.f, 2.f);
130 tt.target()->drawSimpleRect(bounds); variable
  /external/chromium_org/third_party/skia/src/core/
SkRecorder.cpp 214 SkCanvas::SaveLayerStrategy SkRecorder::willSaveLayer(const SkRect* bounds,
217 APPEND(SaveLayer, this->copy(bounds), this->copy(paint), flags);
218 INHERITED(willSaveLayer, bounds, paint, flags);

Completed in 1176 milliseconds

<<61626364656667686970>>