Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2elf.cpp307 bool IsStatic = STType == SymtabType::Static; in initSymtabSectionHeader() local
308 SHeader.sh_name = DotShStrtab.getOffset(IsStatic ? ".symtab" : ".dynsym"); in initSymtabSectionHeader()
309 SHeader.sh_type = IsStatic ? ELF::SHT_SYMTAB : ELF::SHT_DYNSYM; in initSymtabSectionHeader()
310 SHeader.sh_link = IsStatic ? getDotStrTabSecNo() : getDotDynStrSecNo(); in initSymtabSectionHeader()
311 const auto &Symbols = IsStatic ? Doc.Symbols : Doc.DynamicSymbols; in initSymtabSectionHeader()
312 auto &Strtab = IsStatic ? DotStrtab : DotDynstr; in initSymtabSectionHeader()
/external/tensorflow/tensorflow/compiler/xla/
Dshape_test.cc110 TEST_F(ShapeTest, IsStatic) { in TEST_F() argument
/external/protobuf/csharp/src/Google.Protobuf/
DJsonFormatter.cs904 .Where(f => f.IsStatic)
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DELFDumper.cpp1996 const bool IsStatic; member in __anon4a3f16960511::MipsGOTParser
2045 : IsStatic(DynTable.empty()), Obj(Obj), GotSec(nullptr), LocalNum(0), in MipsGOTParser()
2052 if (IsStatic) { in MipsGOTParser()
3838 OS << (Parser.IsStatic ? "Static GOT:\n" : "Primary GOT:\n"); in printMipsGOT()
3856 if (Parser.IsStatic) in printMipsGOT()
4425 DictScope GS(W, Parser.IsStatic ? "Static GOT" : "Primary GOT"); in printMipsGOT()
4450 if (Parser.IsStatic) in printMipsGOT()
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86InstrCompiler.td906 Requires<[NearData, IsStatic]>;
909 Requires<[NearData, IsStatic]>;
912 Requires<[NearData, IsStatic]>;
915 Requires<[NearData, IsStatic]>;
918 Requires<[NearData, IsStatic]>;
DX86InstrInfo.td507 def IsStatic : Predicate<"TM.getRelocationModel() == Reloc::Static">;
/external/clang/lib/Driver/
DTools.cpp6859 bool IsStatic = Args.hasArg(options::OPT_static); in constructHexagonLinkArgs() local
6866 bool UseShared = IsShared && !IsStatic; in constructHexagonLinkArgs()
6901 if (IsStatic) in constructHexagonLinkArgs()
9581 const bool IsStatic = in ConstructJob() local
9607 if (!IsStatic) in ConstructJob()
9623 if (IsStatic) in ConstructJob()
9636 if (IsStatic) in ConstructJob()
9658 Args.hasArg(options::OPT_static_libstdcxx) && !IsStatic; in ConstructJob()
9688 if (IsStatic) in ConstructJob()
/external/clang/lib/Sema/
DSemaType.cpp6256 void Sema::adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor, in adjustMemberFunctionCC() argument
6263 CallingConv ToCC = Context.getDefaultCallingConvention(IsVariadic, !IsStatic); in adjustMemberFunctionCC()
6282 Context.getDefaultCallingConvention(IsVariadic, IsStatic); in adjustMemberFunctionCC()
/external/clang/include/clang/Sema/
DSema.h3031 void adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor,