Searched refs:Rep (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DContinuousRangeMap.h46 Representation Rep; member in class:clang::ContinuousRangeMap
65 if (!Rep.empty() && Rep.back() == Val)
68 assert((Rep.empty() || Rep.back().first < Val.first) &&
70 Rep.push_back(Val);
74 iterator I = std::lower_bound(Rep.begin(), Rep.end(), Val, Compare());
75 if (I != Rep.end() && I->first == Val.first) {
80 Rep
[all...]
/freebsd-10.2-release/contrib/llvm/lib/IR/
H A DAutoUpgrade.cpp192 Value *Rep; local
196 Rep = Builder.CreateICmpEQ(CI->getArgOperand(0), CI->getArgOperand(1),
199 Rep = Builder.CreateSExt(Rep, CI->getType(), "");
202 Rep = Builder.CreateICmpSGT(CI->getArgOperand(0), CI->getArgOperand(1),
205 Rep = Builder.CreateSExt(Rep, CI->getType(), "");
274 Rep = Builder.CreateCall3(VPCOM, CI->getArgOperand(0),
280 Rep = Builder.CreateCall2(CRC32, Trunc0, CI->getArgOperand(1));
281 Rep
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DScopeInfo.h241 llvm::PointerIntPair<const Expr *, 1, bool> Rep; member in class:clang::sema::FunctionScopeInfo::WeakUseTy
243 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {}
245 const Expr *getUseExpr() const { return Rep.getPointer(); }
246 bool isUnsafe() const { return Rep.getInt(); }
247 void markSafe() { Rep.setInt(false); }
250 return Rep == Other.Rep;
H A DDeclSpec.h619 unsigned &DiagID, ParsedType Rep);
621 unsigned &DiagID, Decl *Rep, bool Owned);
624 unsigned &DiagID, ParsedType Rep);
627 unsigned &DiagID, Decl *Rep, bool Owned);
630 unsigned &DiagID, Expr *Rep);
638 void UpdateDeclRep(Decl *Rep) { argument
640 DeclRep = Rep;
642 void UpdateTypeRep(ParsedType Rep) { argument
644 TypeRep = Rep;
646 void UpdateExprRep(Expr *Rep) { argument
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp601 ParsedType Rep) {
602 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep);
609 ParsedType Rep) {
611 assert(Rep && "no type provided!");
618 TypeRep = Rep;
628 Expr *Rep) {
630 assert(Rep && "no expression provided!");
637 ExprRep = Rep;
647 Decl *Rep, bool Owned) {
648 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owne
598 SetTypeSpecType(TST T, SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID, ParsedType Rep) argument
605 SetTypeSpecType(TST T, SourceLocation TagKwLoc, SourceLocation TagNameLoc, const char *&PrevSpec, unsigned &DiagID, ParsedType Rep) argument
625 SetTypeSpecType(TST T, SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID, Expr *Rep) argument
644 SetTypeSpecType(TST T, SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID, Decl *Rep, bool Owned) argument
651 SetTypeSpecType(TST T, SourceLocation TagKwLoc, SourceLocation TagNameLoc, const char *&PrevSpec, unsigned &DiagID, Decl *Rep, bool Owned) argument
[all...]
H A DSemaExprMember.cpp201 NamedDecl *Rep,
210 CXXRecordDecl *RepClass = dyn_cast<CXXRecordDecl>(Rep->getDeclContext());
213 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep);
199 diagnoseInstanceReference(Sema &SemaRef, const CXXScopeSpec &SS, NamedDecl *Rep, const DeclarationNameInfo &nameInfo) argument
/freebsd-10.2-release/contrib/llvm/include/llvm/ADT/
H A DDenseMap.h978 LargeRep Rep = { local
981 return Rep;

Completed in 137 milliseconds