Searched defs:AsmStmt (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DStmt.cpp290 Expr *AsmStmt::getOutputExpr(unsigned i) {
297 StringRef AsmStmt::getOutputConstraint(unsigned i) const {
303 unsigned AsmStmt::getNumPlusOperands() const {
311 Expr *AsmStmt::getInputExpr(unsigned i) {
314 void AsmStmt::setInputExpr(unsigned i, Expr *E) {
321 StringRef AsmStmt::getInputConstraint(unsigned i) const {
326 void AsmStmt::setOutputsAndInputsAndClobbers(ASTContext &C,
360 int AsmStmt::getNamedOperand(StringRef SymbolicName) const {
380 unsigned AsmStmt::AnalyzeAsmString(SmallVectorImpl<AsmStringPiece>&Pieces,
528 AsmStmt function in class:AsmStmt
[all...]
/external/clang/include/clang/AST/
H A DStmt.h1361 /// AsmStmt - This represents a GNU inline-assembly statement extension.
1363 class AsmStmt : public Stmt { class in namespace:clang
1382 AsmStmt(ASTContext &C, SourceLocation asmloc, bool issimple, bool isvolatile,
1389 explicit AsmStmt(EmptyShell Empty) : Stmt(AsmStmtClass, Empty), function in class:clang::AsmStmt
1490 return const_cast<AsmStmt*>(this)->getOutputExpr(i);
1534 return const_cast<AsmStmt*>(this)->getInputExpr(i);
1562 static bool classof(const AsmStmt *) { return true; }

Completed in 297 milliseconds