Home
last modified time | relevance | path

Searched refs:SC_Extern (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DNameSearchContext.cpp80 nullptr, SC_Extern, /*UsesFPIntrin=*/false, isInlineSpecified, hasWrittenPrototype, in AddFunDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h251 SC_Extern, enumerator
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp652 if (Var->getStorageClass() != SC_Extern && in getLVForNamespaceScopeDecl()
2124 case SC_Extern: return "extern"; in getStorageClassSpecifierString()
3834 if (!FD->isImplicit() && FD->getStorageClass() == SC_Extern) in isMSExternInline()
3841 if (Redecl->getStorageClass() != SC_Extern) in redeclForcesDefMSVC()
3846 if (!FD->isImplicit() && FD->getStorageClass() == SC_Extern) in redeclForcesDefMSVC()
3862 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern) in RedeclForcesDefC99()
3896 if (!isInlineSpecified() || getStorageClass() == SC_Extern) in doesDeclarationForceExternallyVisibleDefinition()
3908 Prev->getStorageClass() != SC_Extern) in doesDeclarationForceExternallyVisibleDefinition()
3911 Prev->getStorageClass() != SC_Extern) { in doesDeclarationForceExternallyVisibleDefinition()
3922 if (isInlineSpecified() && getStorageClass() != SC_Extern) in doesDeclarationForceExternallyVisibleDefinition()
[all …]
H A DDeclPrinter.cpp696 case SC_Extern: Out << "extern "; break; in VisitFunctionDecl()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp2237 nullptr, SC_Extern); in SynthSelGetUidFunctionDecl()
2332 nullptr, SC_Extern); in SynthSuperConstructorFunctionDecl()
2351 nullptr, SC_Extern); in SynthMsgSendFunctionDecl()
2373 nullptr, SC_Extern); in SynthMsgSendSuperFunctionDecl()
2392 nullptr, SC_Extern); in SynthMsgSendStretFunctionDecl()
2417 SC_Extern); in SynthMsgSendSuperStretFunctionDecl()
2436 nullptr, SC_Extern); in SynthMsgSendFpretFunctionDecl()
2450 nullptr, SC_Extern); in SynthGetClassFunctionDecl()
2466 SC_Extern); in SynthGetSuperClassFunctionDecl()
2480 nullptr, SC_Extern); in SynthGetMetaClassFunctionDecl()
[all …]
H A DRewriteModernObjC.cpp2324 nullptr, SC_Extern); in SynthSelGetUidFunctionDecl()
2422 nullptr, SC_Extern); in SynthSuperConstructorFunctionDecl()
2441 SC_Extern); in SynthMsgSendFunctionDecl()
2455 nullptr, SC_Extern); in SynthMsgSendSuperFunctionDecl()
2474 nullptr, SC_Extern); in SynthMsgSendStretFunctionDecl()
2491 SC_Extern); in SynthMsgSendSuperStretFunctionDecl()
2510 nullptr, SC_Extern); in SynthMsgSendFpretFunctionDecl()
2524 nullptr, SC_Extern); in SynthGetClassFunctionDecl()
2540 SC_Extern); in SynthGetSuperClassFunctionDecl()
2554 nullptr, SC_Extern); in SynthGetMetaClassFunctionDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp62 if ((VD->getStorageClass() == StorageClass::SC_Extern) || in WriteNamedDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp2323 Context, Parent, Loc, Loc, II, Type, /*TInfo=*/nullptr, SC_Extern, in CreateBuiltin()
3479 FD->getStorageClass() == SC_Extern); in canRedefineFunction()
4772 if (Old->getStorageClass() != SC_Extern || Old->hasInit()) { in MergeVarDecl()
5519 return SC_Extern; in StorageClassSpecToVarDeclStorageClass()
7562 SC != SC_Static && SC != SC_Extern && II && II->isPlaceholder()) { in ActOnVariableDeclarator()
7583 SC = SC_Extern; in ActOnVariableDeclarator()
7586 bool IsLocalExternDecl = SC == SC_Extern && in ActOnVariableDeclarator()
7787 case SC_Extern: in ActOnVariableDeclarator()
8087 case SC_Extern: in ActOnVariableDeclarator()
9330 return SC_Extern; in getFunctionStorageClass()
[all …]
H A DSemaRISCV.cpp430 SC_Extern, S.getCurFPFeatures().isFPConstrained(), in CreateRVVIntrinsicDecl()
H A DSemaLookup.cpp882 Context, Parent, Loc, Loc, II, FTy, /*TInfo=*/nullptr, SC_Extern, in InsertOCLBuiltinDeclarationsFromTable()
H A DSemaDeclAttr.cpp5256 if (S.LangOpts.CPlusPlus && Fn->getStorageClass() != SC_Extern) in handleGNUInlineAttr()
H A DSemaTemplate.cpp4315 << /*is definition*/ (SC != SC_Extern && !CurContext->isRecord()) in ActOnVarTemplateSpecialization()
H A DSemaExpr.cpp6344 /*TInfo=*/nullptr, SC_Extern, Sema->getCurFPFeatures().isFPConstrained(), in rewriteBuiltinFunctionDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLBuiltins.cpp233 SourceLocation(), FuncName, FnType, /*TSI=*/nullptr, SC_Extern); in getSpecConstantFunctionName()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DDeclarationFragments.cpp696 case SC_Extern: in getFragmentsForFunction()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterp.cpp909 bool IsExtern = DiagDecl->getStorageClass() == SC_Extern; in CheckCallable()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp454 storage = clang::SC_Extern; in ParsedDWARFTypeAttributes()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h1197 return getStorageClass() == SC_Extern || in hasExternalStorage()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1652 if (VD->getStorageClass() == SC_Extern && VarLinkage != Linkage::None && in VisitVarDeclImpl()