/external/llvm-project/mlir/lib/Target/LLVMIR/ |
D | DebugTranslation.cpp | 71 if (auto nameLoc = loc.dyn_cast<NameLoc>()) in extractFileLoc() local 72 return extractFileLoc(nameLoc.getChildLoc()); in extractFileLoc() 163 } else if (auto nameLoc = loc.dyn_cast<NameLoc>()) { in translateLoc() local
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 551 SourceLocation nameLoc, IdentifierInfo *name, in ObjCTypeParamDecl() argument 553 : TypedefNameDecl(ObjCTypeParam, ctx, dc, nameLoc, nameLoc, name, in ObjCTypeParamDecl() 563 SourceLocation nameLoc, 912 IdentifierInfo *Id, SourceLocation nameLoc, in ObjCContainerDecl() argument 914 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK), AtStart(atStartLoc) {} in ObjCContainerDecl() 1993 SourceLocation nameLoc, SourceLocation atStartLoc, 2012 SourceLocation nameLoc, 2317 SourceLocation nameLoc, SourceLocation atStartLoc) in ObjCImplDecl() argument 2321 nameLoc, atStartLoc), in ObjCImplDecl() 2391 SourceLocation nameLoc, SourceLocation atStartLoc, in ObjCCategoryImplDecl() argument [all …]
|
D | ExprCXX.h | 674 SourceLocation nameLoc) in MSPropertyRefExpr() argument 680 MemberLoc(nameLoc), IsArrow(isArrow), in MSPropertyRefExpr()
|
/external/llvm-project/clang/include/clang/AST/ |
D | DeclObjC.h | 596 SourceLocation nameLoc, IdentifierInfo *name, in ObjCTypeParamDecl() argument 598 : TypedefNameDecl(ObjCTypeParam, ctx, dc, nameLoc, nameLoc, name, in ObjCTypeParamDecl() 613 SourceLocation nameLoc, 979 SourceLocation nameLoc, SourceLocation atStartLoc); 2080 SourceLocation nameLoc, SourceLocation atStartLoc, 2113 SourceLocation nameLoc, 2441 SourceLocation nameLoc, SourceLocation atStartLoc) in ObjCImplDecl() argument 2442 : ObjCContainerDecl(DK, DC, Id, nameLoc, atStartLoc), in ObjCImplDecl() 2511 SourceLocation nameLoc, SourceLocation atStartLoc, in ObjCCategoryImplDecl() argument 2514 nameLoc, atStartLoc), in ObjCCategoryImplDecl() [all …]
|
D | ExprCXX.h | 925 NestedNameSpecifierLoc qualifierLoc, SourceLocation nameLoc) in MSPropertyRefExpr() argument 927 TheDecl(decl), MemberLoc(nameLoc), IsArrow(isArrow), in MSPropertyRefExpr()
|
/external/llvm-project/clang/lib/AST/ |
D | DeclObjC.cpp | 69 IdentifierInfo *Id, SourceLocation nameLoc, in ObjCContainerDecl() argument 71 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK) { in ObjCContainerDecl() 1425 SourceLocation nameLoc, in Create() argument 1431 nameLoc, name, colonLoc, boundInfo); in Create() 1882 IdentifierInfo *Id, SourceLocation nameLoc, in ObjCProtocolDecl() argument 1885 : ObjCContainerDecl(ObjCProtocol, DC, Id, nameLoc, atStartLoc), in ObjCProtocolDecl() 1894 SourceLocation nameLoc, in Create() argument 1898 new (C, DC) ObjCProtocolDecl(C, DC, Id, nameLoc, atStartLoc, PrevDecl); in Create() 2105 SourceLocation nameLoc, in Create() argument 2110 return new (C, DC) ObjCCategoryImplDecl(DC, Id, ClassInterface, nameLoc, in Create() [all …]
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 1319 SourceLocation nameLoc, in Create() argument 1324 nameLoc, name, colonLoc, boundInfo); in Create() 1775 IdentifierInfo *Id, SourceLocation nameLoc, in ObjCProtocolDecl() argument 1778 : ObjCContainerDecl(ObjCProtocol, DC, Id, nameLoc, atStartLoc), in ObjCProtocolDecl() 1787 SourceLocation nameLoc, in Create() argument 1791 new (C, DC) ObjCProtocolDecl(C, DC, Id, nameLoc, atStartLoc, PrevDecl); in Create() 1983 SourceLocation nameLoc, in Create() argument 1988 return new (C, DC) ObjCCategoryImplDecl(DC, Id, ClassInterface, nameLoc, in Create() 2092 SourceLocation nameLoc, in Create() argument 2100 nameLoc, atStartLoc, superLoc, in Create()
|
/external/llvm-project/mlir/lib/Parser/ |
D | DialectSymbolParser.cpp | 33 : fullSpec(fullSpec), nameLoc(parser.getToken().getLoc()), in CustomDialectAsmParser() 53 llvm::SMLoc getNameLoc() const override { return nameLoc; } in getNameLoc() 320 SMLoc nameLoc; member in __anon8dbb0c750111::CustomDialectAsmParser
|
D | Parser.cpp | 867 CustomOpAsmParser(SMLoc nameLoc, in CustomOpAsmParser() argument 871 : nameLoc(nameLoc), resultIDs(resultIDs), opDefinition(opDefinition), in CustomOpAsmParser() 951 llvm::SMLoc getNameLoc() const override { return nameLoc; } in getNameLoc() 1587 SMLoc nameLoc; member in __anond23dd3090611::CustomOpAsmParser 1814 SMLoc nameLoc = getToken().getLoc(); in parseBlock() local 1819 block = defineBlockNamed(name, nameLoc, block); in parseBlock() 1823 return emitError(nameLoc, "redefinition of block '") << name << "'"; in parseBlock()
|
/external/clang/lib/Parse/ |
D | ParseObjc.cpp | 240 SourceLocation nameLoc = ConsumeToken(); in ParseObjCAtInterfaceDeclaration() local 262 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc); in ParseObjCAtInterfaceDeclaration() 283 Diag(nameLoc, diag::err_objc_no_attributes_on_category); in ParseObjCAtInterfaceDeclaration() 299 nameId, nameLoc, in ParseObjCAtInterfaceDeclaration() 327 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc); in ParseObjCAtInterfaceDeclaration() 373 Actions.ActOnStartClassInterface(getCurScope(), AtLoc, nameId, nameLoc, in ParseObjCAtInterfaceDeclaration() 2046 SourceLocation nameLoc = ConsumeToken(); in ParseObjCAtProtocolDeclaration() local 2049 IdentifierLocPair ProtoInfo(protocolName, nameLoc); in ParseObjCAtProtocolDeclaration() 2058 ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc)); in ParseObjCAtProtocolDeclaration() 2095 Actions.ActOnStartProtocolInterface(AtLoc, protocolName, nameLoc, in ParseObjCAtProtocolDeclaration() [all …]
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseObjc.cpp | 234 SourceLocation nameLoc = ConsumeToken(); in ParseObjCAtInterfaceDeclaration() local 256 Actions.CodeCompleteObjCInterfaceCategory(getCurScope(), nameId, nameLoc); in ParseObjCAtInterfaceDeclaration() 287 AtLoc, nameId, nameLoc, typeParameterList, categoryId, categoryLoc, in ParseObjCAtInterfaceDeclaration() 311 Actions.CodeCompleteObjCSuperclass(getCurScope(), nameId, nameLoc); in ParseObjCAtInterfaceDeclaration() 357 getCurScope(), AtLoc, nameId, nameLoc, typeParameterList, superClassId, in ParseObjCAtInterfaceDeclaration() 2035 SourceLocation nameLoc = ConsumeToken(); in ParseObjCAtProtocolDeclaration() local 2038 IdentifierLocPair ProtoInfo(protocolName, nameLoc); in ParseObjCAtProtocolDeclaration() 2046 ProtocolRefs.push_back(std::make_pair(protocolName, nameLoc)); in ParseObjCAtProtocolDeclaration() 2081 AtLoc, protocolName, nameLoc, ProtocolRefs.data(), ProtocolRefs.size(), in ParseObjCAtProtocolDeclaration() 2119 SourceLocation nameLoc = ConsumeToken(); // consume class or category name in ParseObjCAtImplementationDeclaration() local [all …]
|
/external/angle/src/compiler/translator/ |
D | ParseContext.h | 316 const TSourceLoc &nameLoc); 319 const TSourceLoc &nameLoc, 529 const TSourceLoc &nameLoc);
|
D | ParseContext.cpp | 4087 const TSourceLoc &nameLoc) in parseParameterDeclarator() argument 4090 checkIsNotUnsizedArray(nameLoc, "function parameter array must specify a size", name, type); in parseParameterDeclarator() 4093 error(nameLoc, "illegal use of type 'void'", name); in parseParameterDeclarator() 4095 checkIsNotReserved(nameLoc, name); in parseParameterDeclarator() 4102 const TSourceLoc &nameLoc) in parseParameterDeclarator() argument 4105 return parseParameterDeclarator(type, name, nameLoc); in parseParameterDeclarator() 4109 const TSourceLoc &nameLoc, in parseParameterArrayDeclarator() argument 4117 return parseParameterDeclarator(arrayType, name, nameLoc); in parseParameterArrayDeclarator()
|
/external/llvm-project/mlir/lib/IR/ |
D | Diagnostics.cpp | 369 if (auto nameLoc = loc.dyn_cast<NameLoc>()) in getFileLineColLoc() local 388 if (auto nameLoc = loc.dyn_cast<NameLoc>()) in getCallSiteLoc() local
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3809 SourceLocation nameLoc,
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 4994 SourceLocation nameLoc,
|