Searched refs:IsStatic (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/ |
D | yaml2elf.cpp | 307 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/ |
D | shape_test.cc | 110 TEST_F(ShapeTest, IsStatic) { in TEST_F() argument
|
/external/protobuf/csharp/src/Google.Protobuf/ |
D | JsonFormatter.cs | 904 .Where(f => f.IsStatic)
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 1996 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/ |
D | X86InstrCompiler.td | 906 Requires<[NearData, IsStatic]>; 909 Requires<[NearData, IsStatic]>; 912 Requires<[NearData, IsStatic]>; 915 Requires<[NearData, IsStatic]>; 918 Requires<[NearData, IsStatic]>;
|
D | X86InstrInfo.td | 507 def IsStatic : Predicate<"TM.getRelocationModel() == Reloc::Static">;
|
/external/clang/lib/Driver/ |
D | Tools.cpp | 6859 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/ |
D | SemaType.cpp | 6256 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/ |
D | Sema.h | 3031 void adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor,
|