HomeSort by relevance Sort by last modified time
    Searched refs:Layout (Results 101 - 125 of 344) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/text/method/
BaseMovementMethod.java 19 import android.text.Layout;
423 final Layout layout = widget.getLayout(); local
431 final int lineLeft = (int) Math.floor(layout.getLineLeft(line));
440 final Layout layout = widget.getLayout(); local
448 final int lineRight = (int) Math.ceil(layout.getLineRight(line));
509 final Layout layout = widget.getLayout(); local
511 int topLine = layout.getLineForVertical(top)
536 final Layout layout = widget.getLayout(); local
566 final Layout layout = widget.getLayout(); local
586 final Layout layout = widget.getLayout(); local
608 final Layout layout = widget.getLayout(); local
626 final Layout layout = widget.getLayout(); local
    [all...]
Touch.java 19 import android.text.Layout;
20 import android.text.Layout.Alignment;
37 public static void scrollTo(TextView widget, Layout layout, int x, int y) {
41 final int top = layout.getLineForVertical(y);
42 Alignment a = layout.getParagraphAlignment(top);
43 boolean ltr = layout.getParagraphDirection(top) > 0;
48 final int bottom = layout.getLineForVertical(y + widget.getHeight() - verticalPadding);
54 left = (int) Math.min(left, layout.getLineLeft(i));
55 right = (int) Math.max(right, layout.getLineRight(i))
156 Layout layout = widget.getLayout(); local
    [all...]
  /external/chromium/chrome/browser/ui/touch/frame/
touch_browser_frame_view.cc 74 void TouchBrowserFrameView::Layout() {
75 OpaqueBrowserFrameView::Layout();
155 // We don't re-layout the client view until the animation ends (see
158 Layout();
164 parent()->Layout();
270 parent()->Layout();
touch_browser_frame_view.h 43 virtual void Layout();
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 37 Layout CurrentLayout;
47 if (LineStr.find("*** Dumping AST Record Layout") != StringRef::npos) {
48 // Flush the last type/layout, if there is one.
51 CurrentLayout = Layout();
73 CurrentLayout = Layout();
150 // Flush the last type/layout, if there is one.
166 // Check whether we have a layout for this record.
167 llvm::StringMap<Layout>::iterator Known = Layouts.find(Record->getName());
193 for (llvm::StringMap<Layout>::iterator L = Layouts.begin(),
  /external/skia/include/views/
SkView.h 281 /** \class Layout
287 class Layout : public SkRefCnt {
289 SK_DECLARE_INST_COUNT(Layout)
300 /** Return the layout attached to this view (or null). The layout's reference
303 Layout* getLayout() const;
304 /** Attach the specified layout (or null) to the view, replacing any existing
305 layout. If the new layout is not null, its reference count is incremented.
306 The layout parameter is returned
    [all...]
  /cts/tests/tests/text/src/android/text/style/cts/
DrawableMarginSpanTest.java 27 import android.text.Layout;
66 Layout layout = new StaticLayout("cts test.", paint, 200, local
67 Layout.Alignment.ALIGN_NORMAL, 1, 0, true);
71 0, 0, text, 0, 0, true, layout);
  /external/chromium/chrome/browser/ui/views/infobars/
extension_infobar.cc 59 void ExtensionInfoBar::Layout() {
60 InfoBarView::Layout();
90 // This must happen after adding all children because it can trigger layout,
165 Layout();
  /frameworks/base/core/java/android/widget/
AccessibilityIterators.java 20 import android.text.Layout;
36 protected Layout mLayout;
45 public void initialize(Spannable text, Layout layout) {
47 mLayout = layout;
  /external/chromium/chrome/browser/chromeos/login/
guest_user_view.cc 70 Layout();
107 void GuestUserView::Layout() {
web_page_view.h 94 // Initialize view layout.
119 virtual void Layout();
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeAsmBackend.cpp 58 const MCAsmLayout &Layout) const;
92 const MCAsmLayout &Layout) const {
  /frameworks/base/core/java/android/text/style/
BulletSpan.java 24 import android.text.Layout;
83 boolean first, Layout l) {
  /external/chromium/chrome/browser/chromeos/frame/
bubble_frame_view.h 50 virtual void Layout() OVERRIDE;
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_view.h 49 virtual void Layout();
  /external/chromium/chrome/browser/chromeos/options/
network_config_view.h 76 virtual void Layout();
  /external/chromium/chrome/browser/chromeos/
setting_level_bubble_view.cc 62 void SettingLevelBubbleView::Layout() {
  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_gtk.h 72 void Layout();
  /external/chromium/chrome/browser/ui/touch/tabs/
touch_tab.h 50 virtual void Layout();
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_result_view.h 101 virtual void Layout() OVERRIDE;
  /external/chromium/chrome/browser/ui/views/
find_bar_view.h 70 virtual void Layout();
first_run_search_engine_view.h 50 // Layout method, when we know what the new bounds should be.
96 virtual void Layout() OVERRIDE;
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_view.h 45 virtual void Layout() OVERRIDE;
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 39 const MCAsmLayout *Layout) const {
  /external/skia/legacy/include/views/
SkView.h 267 /** \class Layout
273 class Layout : public SkRefCnt {
282 /** Return the layout attached to this view (or null). The layout's reference
285 Layout* getLayout() const;
286 /** Attach the specified layout (or null) to the view, replacing any existing
287 layout. If the new layout is not null, its reference count is incremented.
288 The layout parameter is returned.
290 Layout* setLayout(Layout*, bool invokeLayoutNow = true)
    [all...]

Completed in 736 milliseconds

1 2 3 45 6 7 8 91011>>