Home
last modified time | relevance | path

Searched refs:IsStatic (Results 1 – 15 of 15) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/AST/Interp/
H A DInterpBlock.h53 bool IsStatic = false, bool IsExtern = false)
54 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {} in DeclID()
56 Block(Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
57 : DeclID((unsigned)-1), IsStatic(IsStatic), IsExtern(IsExtern),
67 bool isStatic() const { return IsStatic; } in isStatic()
118 Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead) in Block() argument
119 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {} in Block()
134 bool IsStatic = false; variable
H A DInterpBlock.cpp22 if (IsStatic) in addPointer()
32 if (IsStatic) in removePointer()
48 if (IsStatic) in movePointer()
64 : Root(Root), B(Blk->Desc, Blk->IsStatic, Blk->IsExtern, /*isDead=*/true) { in DeadBlock()
H A DProgram.cpp162 bool IsStatic, IsExtern; in createGlobal() local
164 IsStatic = !Var->hasLocalStorage(); in createGlobal()
167 IsStatic = false; in createGlobal()
170 if (auto Idx = createGlobal(VD, VD->getType(), IsStatic, IsExtern, Init)) { in createGlobal()
183 bool IsStatic, bool IsExtern, in createGlobal() argument
202 Global(getCurrentDecl(), Desc, IsStatic, IsExtern); in createGlobal()
H A DProgram.h152 bool IsStatic, bool IsExtern,
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DNaCl.cpp59 const bool IsStatic = in ConstructJob() local
85 if (!IsStatic) in ConstructJob()
101 if (IsStatic) in ConstructJob()
114 if (IsStatic) in ConstructJob()
137 Args.hasArg(options::OPT_static_libstdcxx) && !IsStatic; in ConstructJob()
168 if (IsStatic) in ConstructJob()
H A DHexagon.cpp289 bool IsStatic = Args.hasArg(options::OPT_static); in constructHexagonLinkArgs() local
299 bool UseShared = IsShared && !IsStatic; in constructHexagonLinkArgs()
337 if (IsStatic) in constructHexagonLinkArgs()
H A DGnu.cpp412 const bool IsStatic = getStatic(Args); in ConstructJob() local
480 if (IsStatic) { in ConstructJob()
537 else if (IsStatic) in ConstructJob()
606 if (IsStatic || IsStaticPIE) in ConstructJob()
656 if (IsStatic || IsStaticPIE) in ConstructJob()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVElement.h90 IsStatic, enumerator
163 PROPERTY(Property, IsStatic);
/openbsd-src/gnu/llvm/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp594 bool IsStatic = true; in output() local
606 IsStatic = false; in output()
611 if (!(Flags & OF_NoMemberType) && IsStatic) in output()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp975 bool IsStatic = STType == SymtabType::Static; in initSymtabSectionHeader() local
977 if (IsStatic && Doc.Symbols) in initSymtabSectionHeader()
979 else if (!IsStatic && Doc.DynamicSymbols) in initSymtabSectionHeader()
986 (IsStatic && Doc.Symbols) || (!IsStatic && Doc.DynamicSymbols); in initSymtabSectionHeader()
988 StringRef Property = (IsStatic ? "`Symbols`" : "`DynamicSymbols`"); in initSymtabSectionHeader()
999 SHeader.sh_name = getSectionNameOffset(IsStatic ? ".symtab" : ".dynsym"); in initSymtabSectionHeader()
1004 SHeader.sh_type = IsStatic ? ELF::SHT_SYMTAB : ELF::SHT_DYNSYM; in initSymtabSectionHeader()
1008 else if (!IsStatic) in initSymtabSectionHeader()
1029 toELFSymbols(Symbols, IsStatic ? DotStrtab : DotDynstr); in initSymtabSectionHeader()
/openbsd-src/gnu/llvm/clang/lib/Format/
H A DFormat.cpp2790 bool IsStatic; member
3115 return std::make_tuple(!Imports[LHSI].IsStatic ^ in sortJavaImports()
3118 std::make_tuple(!Imports[RHSI].IsStatic ^ in sortJavaImports()
3130 bool CurrentIsStatic = Imports[Indices.front()].IsStatic; in sortJavaImports()
3137 if (CurrentIsStatic != Imports[Index].IsStatic || in sortJavaImports()
3147 CurrentIsStatic = Imports[Index].IsStatic; in sortJavaImports()
3207 bool IsStatic = false; in sortJavaImports() local
3209 IsStatic = true; in sortJavaImports()
3211 {Identifier, Line, Prev, AssociatedCommentLines, IsStatic}); in sortJavaImports()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2723 const bool IsStatic; member in __anon28a7ad931111::MipsGOTParser
2777 : IsStatic(D.dynamic_table().empty()), Obj(D.getElfObject().getELFFile()), in MipsGOTParser()
2790 if (IsStatic) { in findGOT()
6329 OS << (Parser.IsStatic ? "Static GOT:\n" : "Primary GOT:\n"); in printMipsGOT()
6353 if (Parser.IsStatic) in printMipsGOT()
7411 DictScope GS(W, Parser.IsStatic ? "Static GOT" : "Primary GOT"); in printMipsGOT()
7436 if (Parser.IsStatic) in printMipsGOT()
/openbsd-src/gnu/llvm/clang/docs/
H A DConstantInterpreter.rst132 * ``IsStatic`` indicates whether the block has static duration in the
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaType.cpp7931 void Sema::adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor, in adjustMemberFunctionCC() argument
7938 CallingConv ToCC = Context.getDefaultCallingConvention(IsVariadic, !IsStatic); in adjustMemberFunctionCC()
7958 Context.getDefaultCallingConvention(IsVariadic, IsStatic); in adjustMemberFunctionCC()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h4717 void adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor,