Searched defs:II (Results 176 - 177 of 177) sorted by relevance

12345678

/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp1221 /// isCurrentClassName - Determine whether the identifier II is the
1223 /// nested classes, this will only return true if II is the name of
1225 bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *, argument
1237 return &II == CurDecl->getIdentifier();
1241 /// \brief Determine whether the identifier II is a typo for the name of
1244 bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) { argument
1257 if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() &&
1258 3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName())
1259 < II->getLength()) {
1260 II
2070 IdentifierInfo *II = Name.getAsIdentifierInfo(); local
6657 DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, SourceLocation Loc, IdentifierInfo *II, bool *IsInline, NamespaceDecl *PrevNS) argument
6697 ActOnStartNamespaceDef(Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, AttributeList *AttrList) argument
11439 IdentifierInfo *II = D.getIdentifier(); local
13066 IdentifierInfo *II = D.getIdentifier(); local
[all...]
H A DSemaExpr.cpp2014 IdentifierInfo *II = Name.getAsIdentifierInfo(); local
2064 bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl();
2076 ExprResult E(LookupInObjCMethod(R, S, II, true));
2090 if (R.empty() && HasTrailingLParen && II && !getLangOpts().CPlusPlus) {
2091 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S);
2290 IdentifierInfo *II, bool AllowBuiltinCreation) {
2322 if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) {
2345 IdentifierInfo &II = Context.Idents.get("self"); local
2347 SelfName.setIdentifier(&II, SourceLocation());
2388 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclare
2289 LookupInObjCMethod(LookupResult &Lookup, Scope *S, IdentifierInfo *II, bool AllowBuiltinCreation) argument
[all...]

Completed in 1164 milliseconds

12345678