HomeSort by: relevance | last modified time | path
    Searched defs:IsStatic (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
InterpBlock.h 41 bool IsStatic = false, bool IsExtern = false)
42 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {}
44 Block(Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
45 : DeclID((unsigned)-1), IsStatic(IsStatic), IsExtern(IsExtern),
55 bool isStatic() const { return IsStatic; }
83 Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead)
84 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {
    [all...]
Program.cpp 50 auto *G = new (Allocator, Sz) Global(Desc, /*isStatic=*/true,
134 if (auto Idx = createGlobal(PD, Ty, /*isStatic=*/true, /*isExtern=*/true)) {
142 bool IsStatic, IsExtern;
144 IsStatic = !Var->hasLocalStorage();
147 IsStatic = false;
150 if (auto Idx = createGlobal(VD, VD->getType(), IsStatic, IsExtern)) {
159 return createGlobal(E, E->getType(), /*isStatic=*/true, /*isExtern=*/false);
163 bool IsStatic, bool IsExtern) {
180 Global(getCurrentDecl(), Desc, IsStatic, IsExtern);
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
NaCl.cpp 59 const bool IsStatic =
85 if (!IsStatic)
101 if (IsStatic)
114 if (IsStatic)
137 Args.hasArg(options::OPT_static_libstdcxx) && !IsStatic;
168 if (IsStatic)
Hexagon.cpp 213 bool IsStatic = Args.hasArg(options::OPT_static);
223 bool UseShared = IsShared && !IsStatic;
258 if (IsStatic)
Gnu.cpp 403 const bool IsStatic = getStatic(Args);
476 if (IsStatic) {
486 if (!IsStatic) {
537 if (IsStatic)
593 if (IsStatic || IsStaticPIE)
633 if (IsStatic || IsStaticPIE)
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
MicrosoftDemangleNodes.cpp 593 bool IsStatic = true;
605 IsStatic = false;
610 if (!(Flags & OF_NoMemberType) && IsStatic)
  /src/external/apache2/llvm/dist/clang/lib/Format/
Format.cpp 2188 bool IsStatic;
2483 // Negating IsStatic to push static imports above non-static imports.
2484 return std::make_tuple(!Imports[LHSI].IsStatic ^
2487 std::make_tuple(!Imports[RHSI].IsStatic ^
2499 bool CurrentIsStatic = Imports[Indices.front()].IsStatic;
2506 if (CurrentIsStatic != Imports[Index].IsStatic ||
2515 CurrentIsStatic = Imports[Index].IsStatic;
2574 bool IsStatic = false;
2576 IsStatic = true;
2579 {Identifier, Line, Prev, AssociatedCommentLines, IsStatic});
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFEmitter.cpp 934 bool IsStatic = STType == SymtabType::Static;
936 if (IsStatic && Doc.Symbols)
938 else if (!IsStatic && Doc.DynamicSymbols)
945 (IsStatic && Doc.Symbols) || (!IsStatic && Doc.DynamicSymbols);
947 StringRef Property = (IsStatic ? "`Symbols`" : "`DynamicSymbols`");
958 SHeader.sh_name = getSectionNameOffset(IsStatic ? ".symtab" : ".dynsym");
963 SHeader.sh_type = IsStatic ? ELF::SHT_SYMTAB : ELF::SHT_DYNSYM;
967 else if (!IsStatic)
988 toELFSymbols(Symbols, IsStatic ? DotStrtab : DotDynstr)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 2620 const bool IsStatic;
2674 : IsStatic(D.dynamic_table().empty()), Obj(D.getElfObject().getELFFile()),
2687 if (IsStatic) {
5999 OS << (Parser.IsStatic ? "Static GOT:\n" : "Primary GOT:\n");
6023 if (Parser.IsStatic)
6940 DictScope GS(W, Parser.IsStatic ? "Static GOT" : "Primary GOT");
6965 if (Parser.IsStatic)

Completed in 29 milliseconds