Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DInterpBlock.h41 bool IsStatic = false, bool IsExtern = false)
42 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {} in DeclID()
44 Block(Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
45 : DeclID((unsigned)-1), IsStatic(IsStatic), IsExtern(IsExtern),
55 bool isStatic() const { return IsStatic; } in isStatic()
83 Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead) in Block() argument
84 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {} in Block()
99 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.cpp142 bool IsStatic, IsExtern; in createGlobal() local
144 IsStatic = !Var->hasLocalStorage(); in createGlobal()
147 IsStatic = false; in createGlobal()
150 if (auto Idx = createGlobal(VD, VD->getType(), IsStatic, IsExtern)) { in createGlobal()
163 bool IsStatic, bool IsExtern) { in createGlobal() argument
180 Global(getCurrentDecl(), Desc, IsStatic, IsExtern); in createGlobal()
H A DPointer.cpp139 if (Pointee->IsStatic) in isInitialized()
158 if (!Pointee->IsStatic) { in initialize()
H A DProgram.h134 bool IsStatic, bool IsExtern);
/netbsd-src/external/apache2/llvm/dist/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.cpp213 bool IsStatic = Args.hasArg(options::OPT_static); in constructHexagonLinkArgs() local
223 bool UseShared = IsShared && !IsStatic; in constructHexagonLinkArgs()
258 if (IsStatic) in constructHexagonLinkArgs()
H A DGnu.cpp403 const bool IsStatic = getStatic(Args); in ConstructJob() local
476 if (IsStatic) { in ConstructJob()
486 if (!IsStatic) { in ConstructJob()
537 if (IsStatic) in ConstructJob()
593 if (IsStatic || IsStaticPIE) in ConstructJob()
633 if (IsStatic || IsStaticPIE) in ConstructJob()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp593 bool IsStatic = true; in output() local
605 IsStatic = false; in output()
610 if (!(Flags & OF_NoMemberType) && IsStatic) in output()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp934 bool IsStatic = STType == SymtabType::Static; in initSymtabSectionHeader() local
936 if (IsStatic && Doc.Symbols) in initSymtabSectionHeader()
938 else if (!IsStatic && Doc.DynamicSymbols) in initSymtabSectionHeader()
945 (IsStatic && Doc.Symbols) || (!IsStatic && Doc.DynamicSymbols); in initSymtabSectionHeader()
947 StringRef Property = (IsStatic ? "`Symbols`" : "`DynamicSymbols`"); in initSymtabSectionHeader()
958 SHeader.sh_name = getSectionNameOffset(IsStatic ? ".symtab" : ".dynsym"); in initSymtabSectionHeader()
963 SHeader.sh_type = IsStatic ? ELF::SHT_SYMTAB : ELF::SHT_DYNSYM; in initSymtabSectionHeader()
967 else if (!IsStatic) in initSymtabSectionHeader()
988 toELFSymbols(Symbols, IsStatic ? DotStrtab : DotDynstr); in initSymtabSectionHeader()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DFormat.cpp2188 bool IsStatic; member
2484 return std::make_tuple(!Imports[LHSI].IsStatic ^ in sortJavaImports()
2487 std::make_tuple(!Imports[RHSI].IsStatic ^ in sortJavaImports()
2499 bool CurrentIsStatic = Imports[Indices.front()].IsStatic; in sortJavaImports()
2506 if (CurrentIsStatic != Imports[Index].IsStatic || in sortJavaImports()
2515 CurrentIsStatic = Imports[Index].IsStatic; in sortJavaImports()
2574 bool IsStatic = false; in sortJavaImports() local
2576 IsStatic = true; in sortJavaImports()
2579 {Identifier, Line, Prev, AssociatedCommentLines, IsStatic}); in sortJavaImports()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2620 const bool IsStatic; member in __anond60e1ac71211::MipsGOTParser
2674 : IsStatic(D.dynamic_table().empty()), Obj(D.getElfObject().getELFFile()), in MipsGOTParser()
2687 if (IsStatic) { in findGOT()
5999 OS << (Parser.IsStatic ? "Static GOT:\n" : "Primary GOT:\n"); in printMipsGOT()
6023 if (Parser.IsStatic) in printMipsGOT()
6940 DictScope GS(W, Parser.IsStatic ? "Static GOT" : "Primary GOT"); in printMipsGOT()
6965 if (Parser.IsStatic) in printMipsGOT()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DConstantInterpreter.rst132 * ``IsStatic`` indicates whether the block has static duration in the
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp7642 void Sema::adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor, in adjustMemberFunctionCC() argument
7649 CallingConv ToCC = Context.getDefaultCallingConvention(IsVariadic, !IsStatic); in adjustMemberFunctionCC()
7669 Context.getDefaultCallingConvention(IsVariadic, IsStatic); in adjustMemberFunctionCC()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h4301 void adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor,