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

/external/clang/lib/AST/
H A DStmt.cpp695 StringLiteral *asmstr, unsigned numclobbers,
698 numinputs, numclobbers), RParenLoc(rparenloc), AsmStr(asmstr) {
720 StringRef asmstr, ArrayRef<StringRef> clobbers,
726 initialize(C, asmstr, asmtoks, constraints, exprs, clobbers);
733 void MSAsmStmt::initialize(const ASTContext &C, StringRef asmstr, argument
744 AsmStr = copyIntoContext(C, asmstr);
691 GCCAsmStmt(const ASTContext &C, SourceLocation asmloc, bool issimple, bool isvolatile, unsigned numoutputs, unsigned numinputs, IdentifierInfo **names, StringLiteral **constraints, Expr **exprs, StringLiteral *asmstr, unsigned numclobbers, StringLiteral **clobbers, SourceLocation rparenloc) argument
715 MSAsmStmt(const ASTContext &C, SourceLocation asmloc, SourceLocation lbraceloc, bool issimple, bool isvolatile, ArrayRef<Token> asmtoks, unsigned numoutputs, unsigned numinputs, ArrayRef<StringRef> constraints, ArrayRef<Expr*> exprs, StringRef asmstr, ArrayRef<StringRef> clobbers, SourceLocation endloc) argument
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp3193 static std::string gccifyAsm(std::string asmstr) { argument
3194 for (std::string::size_type i = 0; i != asmstr.size(); ++i)
3195 if (asmstr[i] == '\n')
3196 asmstr.replace(i, 1, "\\n");
3197 else if (asmstr[i] == '\t')
3198 asmstr.replace(i, 1, "\\t");
3199 else if (asmstr[i] == '$') {
3200 if (asmstr[i + 1] == '{') {
3201 std::string::size_type a = asmstr.find_first_of(':', i + 1);
3202 std::string::size_type b = asmstr
[all...]

Completed in 160 milliseconds