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

1 2 3 4 5 6 78 91011>>

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 6 import android.text.Layout;
56 private Layout layout; field in class:ShadowTextView
484 public Layout getLayout() {
485 return this.layout;
529 public void setLayout(Layout layout) {
530 this.layout = layout;
  /frameworks/base/core/java/android/text/method/
ScrollingMovementMethod.java 95 Layout layout = widget.getLayout(); local
97 if (layout != null && (dir & View.FOCUS_FORWARD) != 0) {
99 layout.getLineTop(0));
101 if (layout != null && (dir & View.FOCUS_BACKWARD) != 0) {
104 int line = layout.getLineCount() - 1;
107 layout.getLineTop(line+1) -
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 23 import android.text.Layout;
62 final Layout layout = tv.getLayout(); local
76 Touch.scrollTo(tv, layout, width - tv.getWidth() - 1, 0);
86 Touch.scrollTo(tv, layout, width + 100, 5);
95 Touch.scrollTo(tv, layout, width - 10, 5);
  /external/chromium/chrome/browser/chromeos/login/
take_photo_view.cc 21 #include "views/layout/grid_layout.h"
32 // IDs of column sets for grid layout manager.
109 Layout();
113 virtual void Layout() {
188 views::GridLayout* layout = new views::GridLayout(this); local
189 layout->SetInsets(GetInsets());
190 SetLayoutManager(layout);
194 views::ColumnSet* column_set = layout->AddColumnSet(kTitleRow);
202 views::ColumnSet* column_set = layout->AddColumnSet(kImageRow);
208 // Fill the layout with rows and views now
    [all...]
enterprise_enrollment_view.cc 21 #include "views/layout/layout_constants.h"
27 // Layout constants.
184 void EnterpriseEnrollmentView::Layout() {
web_page_view.cc 177 void WebPageView::Layout() {
  /external/chromium/chrome/browser/chromeos/
native_dialog_window.cc 76 virtual void Layout();
179 void NativeDialogHost::Layout() {
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.cc 108 void PanelScroller::Layout() {
242 Layout();
  /external/chromium/chrome/browser/ui/views/
browser_actions_container.h 172 virtual void Layout() OVERRIDE;
195 // layout looks like:
326 virtual void Layout() OVERRIDE;
fullscreen_exit_bubble.cc 41 virtual void Layout();
79 void FullscreenExitBubble::FullscreenExitView::Layout() {
find_bar_view.cc 223 // do a layout and repaint the dialog so that the find text field doesn't
225 Layout();
232 Layout();
315 void FindBarView::Layout() {
  /external/chromium/chrome/browser/ui/views/infobars/
after_translate_infobar.cc 37 void AfterTranslateInfoBar::Layout() {
38 TranslateInfoBarBase::Layout();
122 // These must happen after adding all children because they trigger layout,
before_translate_infobar.cc 35 void BeforeTranslateInfoBar::Layout() {
36 TranslateInfoBarBase::Layout();
141 // This must happen after adding all children because it triggers layout,
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 191 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
197 Layout.getFieldOffset(idx) / Context.getCharWidth();
CGExprConstant.cpp 377 const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
400 // Don't emit anonymous bitfields, they just affect layout.
420 AppendField(*Field, Layout.getFieldOffset(FieldNo), EltInit);
423 AppendBitField(*Field, Layout.getFieldOffset(FieldNo),
449 const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
465 CharUnits BaseOffset = Layout.getBaseClassOffset(BD);
473 bool IsPrimaryBase = Layout.getPrimaryBase() == Base.Decl;
500 // Don't emit anonymous bitfields, they just affect layout.
515 AppendField(*Field, Layout.getFieldOffset(FieldNo) + OffsetBits, EltInit);
518 AppendBitField(*Field, Layout.getFieldOffset(FieldNo) + OffsetBits
1365 const CGRecordLayout &layout = CGM.getTypes().getCGRecordLayout(record); local
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuItemView.java 31 import android.text.Layout;
189 * Request a layout to reposition the icon. The positioning of icon
191 * after a layout.
248 // our layout params depend on the length of the text
253 * @return layout params appropriate for this view. If layout params already exist, it will
259 // Default layout parameters
265 lp.desiredWidth = (int) Layout.getDesiredWidth(getText(), getPaint());
  /frameworks/base/core/java/android/widget/
TextView.java 52 import android.text.Layout;
478 * extensively in the same layout. This mode indicates how the marquee
485 * the layout that should be used when the mode switches.
487 private Layout mSavedMarqueeModeLayout;
495 private Layout mHintLayout;
508 private Layout mLayout;
5030 Layout layout = mLayout; local
6547 Layout layout = isShowingHint() ? mHintLayout : mLayout; local
6624 Layout layout = isShowingHint() ? mHintLayout: mLayout; local
    [all...]
  /external/chromium/chrome/browser/chromeos/frame/
panel_controller.cc 389 void PanelController::TitleContentView::Layout() {
432 Layout();
439 Layout();
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java 41 import android.text.Layout;
127 textView = (TextView) inflate.inflate(R.layout.bubble_text, null);
149 Layout l = new StaticLayout(text, tv.getPaint(), cap,
150 Layout.Alignment.ALIGN_NORMAL, 1, 0, true);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
GpsTestActivity.java 27 import android.text.Layout;
59 setContentView(R.layout.pass_fail_text);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_views.h 69 virtual void Layout() OVERRIDE;
  /external/chromium/chrome/browser/ui/views/autocomplete/
touch_autocomplete_popup_contents_view.cc 69 Layout();
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.h 91 virtual void Layout();
134 // Creates the necessary sub-views, configures them, adds them to the layout,
  /external/chromium/chrome/browser/ui/views/download/
download_item_view.h 80 virtual void Layout() OVERRIDE;
  /external/chromium/chrome/browser/ui/views/extensions/
extension_uninstall_dialog_view.cc 21 #include "views/layout/layout_constants.h"
108 virtual void Layout() OVERRIDE {

Completed in 577 milliseconds

1 2 3 4 5 6 78 91011>>