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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/text/
TextLayoutTest.java 21 import android.text.Layout;
40 Layout l = new StaticLayout(mString, mPaint, 200,
41 Layout.Alignment.ALIGN_NORMAL, 1, 0,
47 Layout l = new DynamicLayout(mString, mPaint, 200,
48 Layout.Alignment.ALIGN_NORMAL, 1, 0,
StaticLayoutTest.java 21 import android.text.Layout.Alignment;
22 import static android.text.Layout.Alignment.*;
49 Layout l = b.build();
55 assertEquals(Layout.DIR_LEFT_TO_RIGHT, l.getParagraphDirection(0));
57 assertEquals(Layout.DIRS_ALL_LEFT_TO_RIGHT, l.getLineDirections(0));
73 Layout l = b.build();
89 Layout l = b.build();
107 Layout l = b.build();
135 Layout l = b.build();
156 Layout l = b.build()
    [all...]
  /frameworks/base/core/java/android/text/style/
AlignmentSpan.java 20 import android.text.Layout;
25 public Layout.Alignment getAlignment();
29 public Standard(Layout.Alignment align) {
34 mAlignment = Layout.Alignment.valueOf(src.readString());
49 public Layout.Alignment getAlignment() {
53 private final Layout.Alignment mAlignment;
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
MultiLineTexture.java 21 import android.text.Layout;
31 private final Layout mLayout;
33 private MultiLineTexture(Layout layout) {
34 super(layout.getWidth(), layout.getHeight());
35 mLayout = layout;
40 Layout.Alignment alignment) {
42 Layout layout = new StaticLayout(text, 0, text.length(), paint local
    [all...]
  /external/chromium/chrome/browser/notifications/
balloon_collection_linux.cc 26 int BalloonCollectionImpl::Layout::InterBalloonMargin() const {
30 int BalloonCollectionImpl::Layout::HorizontalEdgeMargin() const {
34 int BalloonCollectionImpl::Layout::VerticalEdgeMargin() const {
71 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_RIGHT);
73 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_LEFT);
75 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_LEFT);
77 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_RIGHT);
balloon_collection_win.cc 20 int BalloonCollectionImpl::Layout::InterBalloonMargin() const {
24 int BalloonCollectionImpl::Layout::HorizontalEdgeMargin() const {
28 int BalloonCollectionImpl::Layout::VerticalEdgeMargin() const {
60 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_RIGHT);
62 layout_.set_placement(Layout::VERTICALLY_FROM_TOP_LEFT);
64 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_LEFT);
66 layout_.set_placement(Layout::VERTICALLY_FROM_BOTTOM_RIGHT);
  /external/webkit/Source/WebCore/rendering/
AutoTableLayout.h 39 virtual void layout();
49 struct Layout {
50 Layout()
70 Vector<Layout, 4> m_layoutStruct;
  /frameworks/base/core/java/android/text/
AndroidBidi.java 19 import android.text.Layout.Directions;
37 case Layout.DIR_REQUEST_LTR: dir = 0; break;
38 case Layout.DIR_REQUEST_RTL: dir = 1; break;
39 case Layout.DIR_REQUEST_DEFAULT_LTR: dir = -2; break;
40 case Layout.DIR_REQUEST_DEFAULT_RTL: dir = -1; break;
45 result = (result & 0x1) == 0 ? Layout.DIR_LEFT_TO_RIGHT : Layout.DIR_RIGHT_TO_LEFT;
52 * @param dir base line direction, either Layout.DIR_LEFT_TO_RIGHT or
53 * Layout.DIR_RIGHT_TO_LEFT
64 int baseLevel = dir == Layout.DIR_LEFT_TO_RIGHT ? 0 : 1
    [all...]
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 44 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
49 return Layout.getNonVirtualSize() == PointerSize ||
50 Layout.getNonVirtualSize() == PointerSize * 2;
  /external/llvm/lib/Target/R600/MCTargetDesc/
AMDGPUAsmBackend.cpp 27 const MCAsmLayout &Layout) {
31 const MCAsmLayout &Layout,
38 virtual void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
53 const MCAsmLayout &Layout) const {
68 const MCAsmLayout &Layout) {
70 Asm.writeSectionData(I, Layout);
  /external/skia/include/core/
SkDeviceProperties.h 19 * layout. If the orientation is horizontal, the layout is interpreted as
20 * left to right. It the orientation is vertical, the layout is
33 /** The layout of the pixel specifies its subpixel geometry.
38 enum Layout {
51 Layout getLayout() {
52 return static_cast<Layout>(fGeometry | kLayoutMask);
71 static Layout fromOldLayout(SkFontHost::LCDOrder order) {
81 Layout layout = fromOldLayout(SkFontHost::GetSubpixelOrder()); //kRGB_Layou local
    [all...]
  /external/skia/legacy/src/views/
SkViewPriv.cpp 57 void SkView::Layout::layoutChildren(SkView* parent)
64 void SkView::Layout::inflate(const SkDOM& dom, const SkDOM::Node* node)
70 void SkView::Layout::onInflate(const SkDOM& dom, const SkDOM::Node* node)
75 SkView::Layout* SkView::getLayout() const
83 SkView::Layout* SkView::setLayout(Layout* obj, bool invokeLayoutNow)
SkViewPriv.h 15 SkView::Layout* fLayout;
17 Layout_SkTagList(SkView::Layout* layout)
18 : SkTagList(kViewLayout_SkTagList), fLayout(layout)
20 SkASSERT(layout);
21 layout->ref();
  /external/skia/src/views/
SkViewPriv.cpp 57 void SkView::Layout::layoutChildren(SkView* parent)
64 void SkView::Layout::inflate(const SkDOM& dom, const SkDOM::Node* node)
70 void SkView::Layout::onInflate(const SkDOM& dom, const SkDOM::Node* node)
75 SkView::Layout* SkView::getLayout() const
83 SkView::Layout* SkView::setLayout(Layout* obj, bool invokeLayoutNow)
SkViewPriv.h 15 SkView::Layout* fLayout;
17 Layout_SkTagList(SkView::Layout* layout)
18 : SkTagList(kViewLayout_SkTagList), fLayout(layout)
20 SkASSERT(layout);
21 layout->ref();
  /cts/tests/tests/text/src/android/text/cts/
LayoutTest.java 22 import android.text.Layout;
26 import android.text.Layout.Alignment;
36 private Layout.Alignment mAlign;
67 Layout layout = new MockLayout(text, mTextPaint, mWidth, local
69 assertEquals(text, layout.getText());
71 layout = new MockLayout(null, mTextPaint, mWidth, mAlign, mSpacingmult, mSpacingadd);
72 assertNull(layout.getText());
76 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth local
86 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, 10, local
95 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, 15, local
104 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
122 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
128 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
137 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, mAlign, -1, mSpacingadd); local
145 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, mAlign, mSpacingmult, -1); local
153 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
165 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
174 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
183 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
189 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
203 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
209 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
215 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
221 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
232 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
238 Layout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
244 MockLayout layout = new MockLayout(LAYOUT_TEXT, mTextPaint, mWidth, local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
textfield_with_margin.cc 31 void TextfieldWithMargin::Layout() {
35 views::Textfield::Layout();
textfield_with_margin.h 22 virtual void Layout();
  /external/clang/include/clang/Frontend/
LayoutOverrideSource.h 19 /// \brief An external AST source that overrides the layout of
23 /// to override the layout of record types. Its input is the output format
26 /// \brief The layout of a given record.
27 struct Layout {
39 llvm::StringMap<Layout> Layouts;
42 /// \brief Create a new AST source that overrides the layout of some
48 /// \brief If this particular record type has an overridden layout,
49 /// return that layout.
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller_container.h 25 virtual void Layout();
  /external/chromium/chrome/browser/ui/touch/frame/
keyboard_container_view.h 24 virtual void Layout();
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_container_view.h 22 virtual void Layout() OVERRIDE;
  /external/webkit/Source/WebCore/inspector/front-end/
TimelineAgent.js 38 Layout: "Layout",
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 73 const MCAsmLayout &Layout,
141 const MCAsmLayout &Layout) const;
144 const MCAsmLayout &Layout) const;
147 const MCAsmLayout &Layout) const;
177 void WriteSection(const MCAssembler &Asm, const MCAsmLayout &Layout,
194 void WriteNlist(MachSymbolData &MSD, const MCAsmLayout &Layout);
221 const MCAsmLayout &Layout,
228 const MCAsmLayout &Layout,
233 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
248 const MCAsmLayout &Layout);
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 52 STATISTIC(RelaxationSteps, "Number of assembler layout and relaxation steps");
67 // Compute the section layout order. Virtual sections must go last.
105 // Advance the layout position until the fragment is valid.
107 assert(Cur && "Layout bookkeeping error");
331 bool MCAssembler::evaluateFixup(const MCAsmLayout &Layout,
336 if (!Fixup.getValue()->EvaluateAsRelocatable(Target, Layout))
370 Value += Layout.getSymbolOffset(&getSymbolData(Sym));
375 Value -= Layout.getSymbolOffset(&getSymbolData(Sym));
385 uint32_t Offset = Layout.getFragmentOffset(DF) + Fixup.getOffset();
395 Backend.processFixupValue(*this, Layout, Fixup, DF, Target, Value
    [all...]

Completed in 1201 milliseconds

1 2 3 4 5 6 7 8 91011>>