Home
last modified time | relevance | path

Searched refs:IdentifierLoc (Results 1 – 17 of 17) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp386 LookupResult Found(*this, IdInfo.Identifier, IdInfo.IdentifierLoc, in isNonTypeNestedNameSpecifier()
491 LookupResult Found(*this, IdInfo.Identifier, IdInfo.IdentifierLoc, in BuildCXXNestedNameSpecifier()
579 SS.Extend(Context, IdInfo.Identifier, IdInfo.IdentifierLoc, IdInfo.CCLoc); in BuildCXXNestedNameSpecifier()
657 Diag(IdInfo.IdentifierLoc, diag::ext_nested_name_spec_is_enum); in BuildCXXNestedNameSpecifier()
674 LookupResult FoundOuter(*this, IdInfo.Identifier, IdInfo.IdentifierLoc, in BuildCXXNestedNameSpecifier()
690 Diag(IdInfo.IdentifierLoc, in BuildCXXNestedNameSpecifier()
714 SS.Extend(Context, Namespace, IdInfo.IdentifierLoc, IdInfo.CCLoc); in BuildCXXNestedNameSpecifier()
719 SS.Extend(Context, Alias, IdInfo.IdentifierLoc, IdInfo.CCLoc); in BuildCXXNestedNameSpecifier()
729 InjectedTL.setNameLoc(IdInfo.IdentifierLoc); in BuildCXXNestedNameSpecifier()
732 RecordTL.setNameLoc(IdInfo.IdentifierLoc); in BuildCXXNestedNameSpecifier()
[all …]
H A DParsedAttr.cpp31 IdentifierLoc *IdentifierLoc::create(ASTContext &Ctx, SourceLocation Loc, in LLVM_INSTANTIATE_REGISTRY()
33 IdentifierLoc *Result = new (Ctx) IdentifierLoc; in LLVM_INSTANTIATE_REGISTRY()
H A DSemaStmtAttr.cpp73 IdentifierLoc *PragmaNameLoc = A.getArgAsIdent(0); in handleLoopHintAttr()
74 IdentifierLoc *OptionLoc = A.getArgAsIdent(1); in handleLoopHintAttr()
75 IdentifierLoc *StateLoc = A.getArgAsIdent(2); in handleLoopHintAttr()
H A DDeclSpec.cpp65 SourceLocation IdentifierLoc, in Extend() argument
67 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc); in Extend()
70 Range.setBegin(IdentifierLoc); in Extend()
H A DSemaDeclAttr.cpp345 IdentifierLoc *Loc = AL.getArgAsIdent(ArgNum); in checkStringLiteralArgumentAttr()
1107 IdentifierLoc *IL = AL.getArgAsIdent(0); in handleConsumableAttr()
1152 IdentifierLoc *Ident = AL.getArgAsIdent(ArgIndex); in handleCallableWhenAttr()
1177 IdentifierLoc *Ident = AL.getArgAsIdent(0); in handleParamTypestateAttr()
1211 IdentifierLoc *IL = AL.getArgAsIdent(0); in handleReturnTypestateAttr()
1258 IdentifierLoc *Ident = AL.getArgAsIdent(0); in handleSetTypestateAttr()
1280 IdentifierLoc *Ident = AL.getArgAsIdent(0); in handleTestTypestateAttr()
1979 IdentifierLoc *CPUArg = AL.getArgAsIdent(ArgNo); in handleCPUSpecificAttr()
2451 IdentifierLoc *Platform = AL.getArgAsIdent(0); in handleAvailabilityAttr()
2680 IdentifierLoc *IL = AL.getArgAsIdent(0); in handleObjCMethodFamilyAttr()
[all …]
H A DSemaType.cpp5753 IdentifierLoc *Arg = new (S.Context) IdentifierLoc; in transferARCOwnershipToDeclaratorChunk()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DParsedAttr.h186 struct IdentifierLoc { struct
190 static IdentifierLoc *create(ASTContext &Ctx, SourceLocation Loc, argument
196 using ArgsUnion = llvm::PointerUnion<Expr *, IdentifierLoc *>;
312 IdentifierLoc *Parm, const AvailabilityChange &introduced, in ParsedAttr()
333 IdentifierLoc *Parm1, IdentifierLoc *Parm2, IdentifierLoc *Parm3, in ParsedAttr()
350 IdentifierLoc *ArgKind, ParsedType matchingCType, in ParsedAttr()
483 return Arg < NumArgs && getArg(Arg).is<IdentifierLoc*>(); in isArgIdent()
486 IdentifierLoc *getArgAsIdent(unsigned Arg) const { in getArgAsIdent()
487 return getArg(Arg).get<IdentifierLoc*>(); in getArgAsIdent()
808 IdentifierLoc *Param, const AvailabilityChange &introduced, in create()
[all …]
H A DDeclSpec.h107 SourceLocation IdentifierLoc, SourceLocation ColonColonLoc);
H A DSema.h6417 SourceLocation IdentifierLoc; member
6425 : ObjectType(ObjectType), Identifier(II), IdentifierLoc(IdLoc), in ObjectType()
6432 IdentifierLoc(IdLoc), CCLoc(ColonColonLoc) { in NestedNameSpecInfo()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DLoopHint.h26 IdentifierLoc *PragmaNameLoc;
30 IdentifierLoc *OptionLoc;
33 IdentifierLoc *StateLoc;
H A DParser.h2761 IdentifierLoc *ParseIdentifierLoc();
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DNestedNameSpecifier.cpp576 SourceLocation IdentifierLoc, in Extend() argument
582 SaveSourceLocation(IdentifierLoc, Buffer, BufferSize, BufferCapacity); in Extend()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DNestedNameSpecifier.h418 SourceLocation IdentifierLoc, SourceLocation ColonColonLoc);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParser.cpp1714 SourceLocation IdentifierLoc = ConsumeToken(); in TryAnnotateName() local
1717 = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty, in TryAnnotateName()
1982 SourceLocation IdentifierLoc = ConsumeToken(); in TryAnnotateTypeOrScopeTokenAfterScopeSpec() local
1985 = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty, in TryAnnotateTypeOrScopeTokenAfterScopeSpec()
H A DParseDecl.cpp317 IdentifierLoc *Parser::ParseIdentifierLoc() { in ParseIdentifierLoc()
319 IdentifierLoc *IL = IdentifierLoc::create(Actions.Context, in ParseIdentifierLoc()
1049 IdentifierLoc *Platform = ParseIdentifierLoc(); in ParseAvailabilityAttribute()
1280 IdentifierLoc *GeneratedDeclaration = nullptr; in ParseExternalSourceSymbolAttribute()
1391 IdentifierLoc *RelatedClass = ParseIdentifierLoc(); in ParseObjCBridgeRelatedAttribute()
1400 IdentifierLoc *ClassMethod = nullptr; in ParseObjCBridgeRelatedAttribute()
1420 IdentifierLoc *InstanceMethod = nullptr; in ParseObjCBridgeRelatedAttribute()
1473 auto *SwiftType = IdentifierLoc::create(Actions.Context, Tok.getLocation(), in ParseSwiftNewTypeAttribute()
1506 IdentifierLoc *ArgumentKind = ParseIdentifierLoc(); in ParseTypeTagForDatatypeAttribute()
H A DParsePragma.cpp1109 Hint.PragmaNameLoc = IdentifierLoc::create( in HandlePragmaLoopHint()
1117 Hint.OptionLoc = IdentifierLoc::create( in HandlePragmaLoopHint()
1198 Hint.StateLoc = IdentifierLoc::create(Actions.Context, StateLoc, StateInfo); in HandlePragmaLoopHint()
1220 IdentifierLoc::create(Actions.Context, StateLoc, StateInfo); in HandlePragmaLoopHint()
1244 IdentifierLoc::create(Actions.Context, StateLoc, StateInfo); in HandlePragmaLoopHint()
H A DParseExpr.cpp3611 IdentifierLoc *PlatformIdentifier = ParseIdentifierLoc(); in ParseAvailabilitySpec()