Home
last modified time | relevance | path

Searched refs:LayoutDescription (Results 1 – 4 of 4) sorted by relevance

/external/llvm/include/llvm/IR/
DDataLayout.h175 void parseSpecifier(StringRef LayoutDescription);
182 explicit DataLayout(StringRef LayoutDescription) : LayoutMap(nullptr) { in DataLayout() argument
183 reset(LayoutDescription); in DataLayout()
211 void reset(StringRef LayoutDescription);
/external/llvm-project/llvm/include/llvm/IR/
DDataLayout.h198 explicit DataLayout(StringRef LayoutDescription) { in DataLayout() argument
199 reset(LayoutDescription); in DataLayout()
233 void reset(StringRef LayoutDescription);
237 static Expected<DataLayout> parse(StringRef LayoutDescription);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDataLayout.h188 void parseSpecifier(StringRef LayoutDescription);
195 explicit DataLayout(StringRef LayoutDescription) { in DataLayout() argument
196 reset(LayoutDescription); in DataLayout()
229 void reset(StringRef LayoutDescription);
/external/llvm-project/llvm/lib/IR/
DDataLayout.cpp204 Expected<DataLayout> DataLayout::parse(StringRef LayoutDescription) { in parse() argument
206 if (Error Err = Layout.parseSpecifier(LayoutDescription)) in parse()