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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/text/style/
LineHeightSpan.java 21 import android.text.Layout;
IconMarginSpan.java 24 import android.text.Layout;
45 boolean first, Layout layout) {
47 int itop = layout.getLineTop(layout.getLineForOffset(st));
QuoteSpan.java 22 import android.text.Layout;
69 boolean first, Layout layout) {
  /external/chromium/chrome/browser/notifications/
desktop_notifications_unittest.h 58 int MinHeight() { return Layout::min_balloon_height(); }
59 int MaxHeight() { return Layout::max_balloon_height(); }
balloon_collection_impl.cc 100 balloon->set_content_size(Layout::ConstrainToSizeLimits(size));
169 // Start from the layout origin.
233 BalloonCollectionImpl::Layout::Layout() : placement_(INVALID) {
237 void BalloonCollectionImpl::Layout::GetMaxLinearSize(int* max_balloon_size,
246 gfx::Point BalloonCollectionImpl::Layout::GetLayoutOrigin() const {
273 gfx::Point BalloonCollectionImpl::Layout::NextPosition(
312 gfx::Point BalloonCollectionImpl::Layout::OffScreenLocation() const {
339 bool BalloonCollectionImpl::Layout::RequiresOffsets() const {
340 // Layout schemes that grow up from the bottom require offsets
    [all...]
  /external/chromium/chrome/browser/ui/views/infobars/
translate_message_infobar.cc 21 void TranslateMessageInfoBar::Layout() {
22 TranslateInfoBarBase::Layout();
  /external/chromium/chrome/browser/ui/views/location_bar/
selected_keyword_view.cc 47 void SelectedKeywordView::Layout() {
50 IconLabelBubbleView::Layout();
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_container_native.cc 65 void TabContentsContainer::Layout() {
68 native_container_->GetView()->Layout();
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
GridLayoutFactory.java 13 import org.eclipse.swt.layout.GridLayout;
15 import org.eclipse.swt.widgets.Layout;
30 private GridLayoutFactory(Composite composite, GridLayout layout) {
31 m_layout = layout;
40 Layout layout = composite.getLayout(); local
41 if (layout instanceof GridLayout) {
42 return new GridLayoutFactory(composite, (GridLayout) layout);
61 * Specifies whether all columns in the layout will be forced to have the same width.
  /external/llvm/include/llvm/MC/
MCAsmBackend.h 105 const MCAsmLayout &Layout,
134 const MCAsmLayout &Layout) const = 0;
MCObjectWriter.h 68 /// This routine is called by the assembler after layout and relaxation is
71 const MCAsmLayout &Layout) = 0;
75 /// This routine is called by the assembler after layout and relaxation, and
76 /// post layout binding. The implementation is responsible for storing
80 const MCAsmLayout &Layout,
105 /// This routine is called by the assembler after layout and relaxation is
109 const MCAsmLayout &Layout) = 0;
  /frameworks/base/core/java/android/text/
MeasuredText.java 129 mDir = Layout.DIR_LEFT_TO_RIGHT;
137 bidiRequest = Layout.DIR_REQUEST_LTR;
139 bidiRequest = Layout.DIR_REQUEST_RTL;
141 bidiRequest = Layout.DIR_REQUEST_DEFAULT_LTR;
143 bidiRequest = Layout.DIR_REQUEST_DEFAULT_RTL;
146 bidiRequest = isRtl ? Layout.DIR_REQUEST_RTL : Layout.DIR_REQUEST_LTR;
162 int flags = mDir == Layout.DIR_LEFT_TO_RIGHT
TextLine.java 24 import android.text.Layout.Directions;
25 import android.text.Layout.TabStops;
152 mCharsValid = hasReplacement || hasTabs || directions != Layout.DIRS_ALL_LEFT_TO_RIGHT;
192 if (mDirections == Layout.DIRS_ALL_LEFT_TO_RIGHT) {
196 if (mDirections == Layout.DIRS_ALL_RIGHT_TO_LEFT) {
209 int runLimit = runStart + (runs[i+1] & Layout.RUN_LENGTH_MASK);
213 boolean runIsRtl = (runs[i+1] & Layout.RUN_RTL_FLAG) != 0;
224 if (codept >= Layout.MIN_EMOJI && codept <= Layout.MAX_EMOJI) {
225 bm = Layout.EMOJI_FACTORY.getBitmapFromAndroidPua(codept)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
DialogTitle.java 21 import android.text.Layout;
49 final Layout layout = getLayout(); local
50 if (layout != null) {
51 final int lineCount = layout.getLineCount();
53 final int ellipsisCount = layout.getEllipsisCount(lineCount - 1);
  /packages/apps/Gallery/src/com/android/camera/
ActionMenuButton.java 25 import android.text.Layout;
75 final Layout layout = getLayout(); local
80 rect.set(left + layout.getLineLeft(0) - PADDING_H,
81 top + layout.getLineTop(0) - PADDING_V,
82 Math.min(left + layout.getLineRight(0) + PADDING_H,
84 top + layout.getLineBottom(0) + PADDING_V);
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 46 static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout);
53 static uint64_t GetSectionFileSize(const MCAsmLayout &Layout,
55 static uint64_t GetSectionAddressSize(const MCAsmLayout &Layout,
59 const MCAsmLayout &Layout,
246 const MCAsmLayout &Layout);
252 const MCAsmLayout &Layout,
256 const MCAsmLayout &Layout,
288 void CreateRelocationSections(MCAssembler &Asm, MCAsmLayout &Layout,
291 void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout,
294 void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout,
    [all...]
  /frameworks/base/core/java/android/text/method/
ArrowKeyMovementMethod.java 20 import android.text.Layout;
38 private static int getCurrentLineTop(Spannable buffer, Layout layout) {
39 return layout.getLineTop(layout.getLineForOffset(Selection.getSelectionEnd(buffer)));
70 final Layout layout = widget.getLayout(); local
72 return Selection.extendLeft(buffer, layout);
74 return Selection.moveLeft(buffer, layout);
80 final Layout layout = widget.getLayout() local
90 final Layout layout = widget.getLayout(); local
100 final Layout layout = widget.getLayout(); local
110 final Layout layout = widget.getLayout(); local
134 final Layout layout = widget.getLayout(); local
178 final Layout layout = widget.getLayout(); local
188 final Layout layout = widget.getLayout(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
CustomViewAccessibilityActivity.java 25 import android.text.Layout;
56 setContentView(R.layout.custom_view_accessibility);
202 private Layout mOnLayout;
203 private Layout mOffLayout;
264 private Layout makeLayout(CharSequence text) {
266 (int) Math.ceil(Layout.getDesiredWidth(text, mTextPaint)),
267 Layout.Alignment.ALIGN_NORMAL, 1.f, 0, true);
275 Layout switchText = mChecked ? mOnLayout : mOffLayout;
  /cts/tests/tests/text/src/android/text/cts/
BoringLayoutTest.java 25 import android.text.Layout;
28 import android.text.Layout.Alignment;
43 private static final Layout.Alignment DEFAULT_ALIGN = Layout.Alignment.ALIGN_CENTER;
155 assertEquals(Layout.DIR_LEFT_TO_RIGHT, mBoringLayout.getParagraphDirection(0));
158 assertEquals(Layout.DIR_LEFT_TO_RIGHT, mBoringLayout.getParagraphDirection(0));
196 BoringLayout boringLayout = makeBoringLayoutAlign(Layout.Alignment.ALIGN_NORMAL);
200 boringLayout = makeBoringLayoutAlign(Layout.Alignment.ALIGN_CENTER);
206 boringLayout = makeBoringLayoutAlign(Layout.Alignment.ALIGN_OPPOSITE);
DynamicLayoutTest.java 22 import android.text.Layout;
34 protected static final Layout.Alignment DEFAULT_ALIGN = Layout.Alignment.ALIGN_CENTER;
105 * Test whether include the padding to calculate the layout.
106 * 1. Include padding while calculate the layout.
107 * 2. Don't include padding while calculate the layout.
135 * Test the line count and whether include the Tab the layout.
171 assertEquals(Layout.DIR_LEFT_TO_RIGHT, mDynamicLayout.getParagraphDirection(LINE0));
  /cts/tests/tests/text/src/android/text/style/cts/
IconMarginSpanTest.java 25 import android.text.Layout;
59 Layout layout = new StaticLayout("cts test.", p, 200, Layout.Alignment.ALIGN_NORMAL, local
61 iconMarginSpan.drawLeadingMargin(c, p, 0, 0, 0, 0, 0, text, 0, 0, true, layout);
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 97 getFieldOffset(const ASTRecordLayout &Layout, unsigned FieldNo) const {
98 uint64_t FieldOffset = Layout.getFieldOffset(FieldNo);
149 const ASTRecordLayout &Layout = Context.getASTRecordLayout(BaseDecl);
152 EmptySize = Layout.getSize();
155 EmptySize = Layout.getSizeOfLargestEmptySubobject();
175 const ASTRecordLayout &Layout = Context.getASTRecordLayout(MemberDecl);
178 EmptySize = Layout.getSize();
181 EmptySize = Layout.getSizeOfLargestEmptySubobject();
239 const ASTRecordLayout &Layout = Context.getASTRecordLayout(Info->Class);
245 CharUnits BaseOffset = Offset + Layout.getBaseClassOffset(Base->Class)
1400 const ASTRecordLayout &layout = Context.getASTRecordLayout(base); local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
enterprise_enrollment_view.h 39 // Initialize view controls and layout.
69 virtual void Layout() OVERRIDE;
guest_user_view.h 47 virtual void Layout();
screen_lock_view.h 52 virtual void Layout();

Completed in 3297 milliseconds

1 23 4 5 6 7 8 91011>>