Searched refs:RParen (Results 1 - 19 of 19) sorted by relevance

/freebsd-10.1-release/contrib/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h44 LParen, RParen, LBrac, RBrac, LCurly, RCurly, enumerator in enum:llvm::AsmToken::TokenKind
/freebsd-10.1-release/usr.bin/make/
H A Dcond.c92 * LParen for '(', RParen for ')' and will evaluate the other terminal
105 RParen, enumerator in enum:__anon11819
450 t = RParen;
904 if (CondToken(doEval) != RParen) {
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp3061 SourceLocation RParen) {
3067 return BuildUnaryTypeTrait(UTT, KWLoc, TSInfo, RParen);
3558 SourceLocation RParen) {
3568 RParen, Context.BoolTy));
3575 SourceLocation RParen) {
3586 return BuildBinaryTypeTrait(BTT, KWLoc, LhsTSInfo, RhsTSInfo, RParen);
3898 SourceLocation RParen) {
3905 << SourceRange(KWLoc, RParen);
3926 RhsTSInfo, Value, RParen,
3934 SourceLocation RParen) {
3058 ActOnUnaryTypeTrait(UnaryTypeTrait UTT, SourceLocation KWLoc, ParsedType Ty, SourceLocation RParen) argument
3555 BuildUnaryTypeTrait(UnaryTypeTrait UTT, SourceLocation KWLoc, TypeSourceInfo *TSInfo, SourceLocation RParen) argument
3571 ActOnBinaryTypeTrait(BinaryTypeTrait BTT, SourceLocation KWLoc, ParsedType LhsTy, ParsedType RhsTy, SourceLocation RParen) argument
3894 BuildBinaryTypeTrait(BinaryTypeTrait BTT, SourceLocation KWLoc, TypeSourceInfo *LhsTSInfo, TypeSourceInfo *RhsTSInfo, SourceLocation RParen) argument
3930 ActOnArrayTypeTrait(ArrayTypeTrait ATT, SourceLocation KWLoc, ParsedType Ty, Expr* DimExpr, SourceLocation RParen) argument
3997 BuildArrayTypeTrait(ArrayTypeTrait ATT, SourceLocation KWLoc, TypeSourceInfo *TSInfo, Expr* DimExpr, SourceLocation RParen) argument
4020 ActOnExpressionTrait(ExpressionTrait ET, SourceLocation KWLoc, Expr *Queried, SourceLocation RParen) argument
4041 BuildExpressionTrait(ExpressionTrait ET, SourceLocation KWLoc, Expr *Queried, SourceLocation RParen) argument
5690 BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand, SourceLocation RParen) argument
5697 ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation, Expr *Operand, SourceLocation RParen) argument
[all...]
H A DSemaStmt.cpp2920 SourceLocation RParen, Decl *Parm,
2926 return Owned(new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body));
2919 ActOnObjCAtCatchStmt(SourceLocation AtLoc, SourceLocation RParen, Decl *Parm, Stmt *Body) argument
H A DTreeTransform.h1527 SourceLocation RParen) {
1528 return getSema().ActOnParenExpr(LParen, RParen, SubExpr);
1526 RebuildParenExpr(Expr *SubExpr, SourceLocation LParen, SourceLocation RParen) argument
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h2131 SourceLocation RParen;
2144 UTT(utt), Value(value), Loc(loc), RParen(rparen), QueriedType(queried) { }
2151 SourceLocation getLocEnd() const LLVM_READONLY { return RParen; }
2189 SourceLocation RParen;
2208 BTT(btt), Value(value), Loc(loc), RParen(rparen),
2217 SourceLocation getLocEnd() const LLVM_READONLY { return RParen; }
2362 SourceLocation RParen;
2377 Loc(loc), RParen(rparen), QueriedType(queried) { }
2387 SourceLocation getLocEnd() const LLVM_READONLY { return RParen; }
2426 SourceLocation RParen;
[all...]
/freebsd-10.1-release/contrib/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp509 case ')': return AsmToken(AsmToken::RParen, StringRef(TokStart, 1));
H A DAsmParser.cpp728 if (Lexer.isNot(AsmToken::RParen))
1892 else if (Lexer.is(AsmToken::RParen) && ParenLevel)
/freebsd-10.1-release/contrib/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1160 if (!getLexer().is(AsmToken::RParen))
1339 while (getLexer().getKind() == AsmToken::RParen)
1376 while (getLexer().getKind() == AsmToken::RParen)
1434 if (Parser.getTok().isNot(AsmToken::RParen)) {
1518 if (Parser.getTok().isNot(AsmToken::RParen))
1611 if (getLexer().isNot(AsmToken::RParen))
/freebsd-10.1-release/contrib/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1116 if (getParser().Lex().isNot(AsmToken::RParen))
1351 case AsmToken::RParen: SM.onRParen(); break;
1851 if (getLexer().isNot(AsmToken::RParen)) {
1861 if (getLexer().isNot(AsmToken::RParen)) {
1878 } else if (getLexer().isNot(AsmToken::RParen)) {
1894 if (getLexer().isNot(AsmToken::RParen)) {
/freebsd-10.1-release/contrib/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp305 case AsmToken::RParen: Out->os() << "RParen"; break;
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3001 StmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc, SourceLocation RParen,
4207 Expr *Operand, SourceLocation RParen);
4209 SourceLocation RParen);
4216 SourceLocation RParen);
4221 SourceLocation RParen);
4229 SourceLocation RParen);
4235 SourceLocation RParen);
4251 SourceLocation RParen);
4257 SourceLocation RParen);
4264 SourceLocation RParen);
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseExprCXX.cpp1614 SourceLocation LParen = ConsumeParen(), RParen = LParen; local
1616 RParen = ConsumeParen();
1619 << SourceRange(LParen, RParen);
H A DParseDecl.cpp320 SourceLocation RParen = Tok.getLocation(); local
323 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc,
/freebsd-10.1-release/contrib/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1155 if (getLexer().isNot(AsmToken::RParen))
1189 if (getLexer().isNot(AsmToken::RParen))
/freebsd-10.1-release/contrib/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp560 if (getLexer().isNot(AsmToken::RParen))
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1493 E->RParen = Range.getEnd();
1503 E->RParen = Range.getEnd();
1525 E->RParen = Range.getEnd();
1536 E->RParen = Range.getEnd();
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp476 const char *&RParen);
4097 const char *&RParen) {
4114 RParen = argPtr; // output the end
4096 GetExtentOfArgList(const char *Name, const char *&LParen, const char *&RParen) argument
H A DRewriteModernObjC.cpp576 const char *&RParen);
5059 const char *&RParen) {
5076 RParen = argPtr; // output the end
5058 GetExtentOfArgList(const char *Name, const char *&LParen, const char *&RParen) argument

Completed in 467 milliseconds