HomeSort by relevance Sort by last modified time
    Searched defs:Alignment (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /external/chromium_org/ui/views/
view_model_utils.h 18 enum Alignment {
32 Alignment alignment,
  /external/llvm/lib/Target/Hexagon/
HexagonVarargsCallingConvention.h 77 unsigned Alignment =
87 // Hexagon_TODO: Get the alignment of the contained type here.
88 Alignment = 8;
91 unsigned Offset3 = State.AllocateStack(Size, Alignment);
132 unsigned Alignment =
137 unsigned Offset3 = State.AllocateStack(Size, Alignment);
  /external/chromium_org/ui/views/controls/menu/
menu_2.h 32 // The alignment is reversed by menu if text direction is right to left.
33 enum Alignment {
48 // RunContextMenuAt is the same, but the alignment is the default for a
50 void RunMenuAt(const gfx::Point& point, Alignment alignment);
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 89 // Check for the alignment of the type.
90 Pos = LineStr.find("Alignment:");
92 // Skip past the "Alignment:" prefix.
93 LineStr = LineStr.substr(Pos + strlen("Alignment:"));
95 unsigned long long Alignment = 0;
96 (void)LineStr.getAsInteger(10, Alignment);
97 CurrentLayout.Align = Alignment;
101 // Check for the size/alignment of the type.
117 // Parse alignment.
118 unsigned long long Alignment = 0
    [all...]
  /external/clang/test/CodeGenCXX/
alloca-align.cpp 5 unsigned Alignment;
  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_widget_delegate.h 30 enum Alignment {
41 // Alignment of the message center relative to the center of the screen.
42 Alignment message_center_alignment;
44 // Alignment of the taskbar relative to the center of the screen.
45 Alignment taskbar_alignment;
  /external/chromium_org/ui/base/models/
table_model.h 93 // TableColumn specifies the title, alignment and size of a particular column.
95 enum Alignment {
100 TableColumn(int id, Alignment alignment, int width, float percent);
108 // Alignment for the content.
109 Alignment alignment; member in struct:ui::TableColumn
  /external/chromium_org/ui/views/controls/
image_view.h 29 enum Alignment {
64 // Set / Get the horizontal alignment.
65 void SetHorizontalAlignment(Alignment ha);
66 Alignment GetHorizontalAlignment() const;
68 // Set / Get the vertical alignment.
69 void SetVerticalAlignment(Alignment va);
70 Alignment GetVerticalAlignment() const;
87 // Compute the image origin given the desired size and the receiver alignment
100 // Horizontal alignment.
101 Alignment horiz_alignment_
    [all...]
native_control.h 27 enum Alignment {
80 void SetFixedWidth(int width, Alignment alignment);
81 void SetFixedHeight(int height, Alignment alignment);
108 Alignment horizontal_alignment_;
110 Alignment vertical_alignment_;
  /external/llvm/unittests/Support/
AllocatorTest.cpp 112 // Allocate space for the alignment, the slab, and a void* that goes right
114 size_t Alignment = 4096;
115 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*));
118 MemSlab *Slab = (MemSlab*)(((uintptr_t)MemBase+sizeof(void*)+Alignment-1) &
119 ~(uintptr_t)(Alignment - 1));
139 // Allocate a large-ish block with a really large alignment so that the
140 // allocator will think that it has space, but after it does the alignment it
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 33 Alignment,
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.h 23 uptr Alignment;
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 56 unsigned Alignment) = 0;
83 /// The required alignment for this entry. The top bit is set when Val is
85 unsigned Alignment;
88 : Alignment(A) {
92 : Alignment(A) {
94 Alignment |= 1U << (sizeof(unsigned)*CHAR_BIT-1);
101 return (int)Alignment < 0;
105 return Alignment & ~(1 << (sizeof(unsigned)*CHAR_BIT-1));
136 unsigned PoolAlignment; ///< The alignment for the pool.
148 /// getConstantPoolAlignment - Return the alignment required b
    [all...]
  /external/llvm/include/llvm/Object/
COFFYAML.h 46 unsigned Alignment;
  /external/llvm/include/llvm/Target/
TargetJITInfo.h 53 /// Records the required size and alignment for a call stub in bytes.
56 size_t Alignment;
58 /// Returns the maximum size and alignment for a call stub on this target.
  /external/chromium_org/ui/views/layout/
grid_layout.h 40 // When adding a Column you give it the default alignment for all views
43 // a horizontal and vertical alignment of leading regardless of that defined
50 // pixels. Only Views with an Alignment of FILL are given extra space, others
73 enum Alignment {
137 // Adds a view using the default alignment from the column. The added
143 // Adds a view using the default alignment from the column.
148 // Adds a view with the specified alignment and spans.
151 void AddView(View* view, int col_span, int row_span, Alignment h_align,
152 Alignment v_align);
154 // Adds a view with the specified alignment and spans. I
    [all...]
  /external/clang/include/clang/AST/
RecordLayout.h 66 // Alignment - Alignment of record in characters.
67 CharUnits Alignment;
81 /// NonVirtualAlign - The non-virtual alignment (in chars) of an object,
82 /// which is the alignment of the object without virtual bases.
117 ASTRecordLayout(const ASTContext &Ctx, CharUnits size, CharUnits alignment,
124 CharUnits size, CharUnits alignment,
143 /// getAlignment - Get the record alignment in characters.
144 CharUnits getAlignment() const { return Alignment; }
173 /// getNonVirtualSize - Get the non-virtual alignment (in chars) of an object
    [all...]
  /external/eigen/Eigen/src/Core/
StableNorm.h 52 Alignment = (int(Flags)&DirectAccessBit) || (int(Flags)&AlignedBit) ? 1 : 0
59 internal::stable_norm_kernel(this->segment(bi,(min)(blockSize, n - bi)).template forceAlignedAccessIf<Alignment>(), ssq, scale, invScale);
  /external/llvm/include/llvm/Support/
AlignOf.h 1 //===--- AlignOf.h - Portable calculation of type alignment -----*- C++ -*-===//
31 /// the alignment of the template argument. For example,
32 /// AlignOf<int>::Alignment represents the alignment of type "int". The
33 /// alignment calculated is the minimum alignment, and not necessarily
34 /// the "desired" alignment returned by GCC's __alignof__ (for example). Note
35 /// that because the alignment is an enum value, it can be used as a
39 enum { Alignment =
42 enum { Alignment_GreaterEqual_2Bytes = Alignment >= 2 ? 1 : 0 }
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
GridLayoutTest.java 45 private static abstract class Alignment {
51 protected Alignment(String name, int gravity) {
57 private static final Alignment[] HORIZONTAL_ALIGNMENTS = {
58 new Alignment("LEFT", Gravity.LEFT) {
64 new Alignment("CENTER", Gravity.CENTER_HORIZONTAL) {
70 new Alignment("RIGHT", Gravity.RIGHT) {
76 new Alignment("FILL", Gravity.FILL_HORIZONTAL) {
84 private static final Alignment[] VERTICAL_ALIGNMENTS = {
85 new Alignment("TOP", Gravity.TOP) {
91 new Alignment("CENTER", Gravity.CENTER_VERTICAL)
238 Alignment alignment = HORIZONTAL_ALIGNMENTS[j]; local
249 Alignment alignment = VERTICAL_ALIGNMENTS[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
InbandTextTrackPrivateClient.h 74 enum Alignment {
80 Alignment align() const { return m_align; }
81 void setAlign(Alignment align) { m_align = align; }
106 Alignment m_align;
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 32 CharUnits alignment = Context.getDeclAlign(&D); local
34 LValue lv = CGF.MakeAddrLValue(DeclPtr, type, alignment);
151 unsigned Alignment = getContext().getDeclAlign(&D).getQuantity();
153 EmitStoreOfScalar(RV.getScalarVal(), DeclPtr, false, Alignment, T);
CGObjCRuntime.cpp 111 // alignment of the bit-field, because (a) it is not clear what guarantees the
113 // at an alignment plus offset.
125 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits);
136 Alignment.getQuantity()));
143 Alignment);
  /external/clang/lib/Parse/
ParsePragma.cpp 45 Token Alignment;
55 ExprResult Alignment;
56 if (Info->Alignment.is(tok::numeric_constant)) {
57 Alignment = Actions.ActOnNumericConstant(Info->Alignment);
58 if (Alignment.isInvalid())
61 Actions.ActOnPragmaPack(Info->Kind, Info->Name, Alignment.get(), PragmaLoc,
261 Token Alignment;
262 Alignment.startToken();
266 Alignment = Tok
    [all...]
  /external/clang/lib/Sema/
SemaAttr.cpp 31 // alignment.
34 unsigned Alignment;
43 /// Alignment - The current user specified alignment.
44 unsigned Alignment;
51 PragmaPackStack() : Alignment(0) {}
53 void setAlignment(unsigned A) { Alignment = A; }
54 unsigned getAlignment() { return Alignment; }
56 /// push - Push the current alignment onto the stack, optionally
59 PackStackEntry PSE = { Alignment, Name }
    [all...]

Completed in 338 milliseconds

1 2 3 4 5