Home | History | Annotate | Download | only in Frontend

Lines Matching defs:Alignment

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;
119 (void)LineStr.getAsInteger(10, Alignment);
120 CurrentLayout.Align = Alignment;
157 uint64_t &Size, uint64_t &Alignment,
187 Alignment = Known->second.Align;
198 OS << " Alignment:" << L->second.Align << '\n';