/external/swiftshader/src/Common/ |
D | Configurator.hpp | 32 …std::string getValue(std::string sectionName, std::string valueName, std::string defaultValue = ""… 33 int getInteger(std::string sectionName, std::string valueName, int defaultValue = 0) const; 34 bool getBoolean(std::string sectionName, std::string valueName, bool defaultValue = false) const; 35 double getFloat(std::string sectionName, std::string valueName, double defaultValue = 0.0) const; 36 unsigned int getFormatted(std::string sectionName, std::string valueName, char *format, 42 void addValue(std::string sectionName, std::string valueName, std::string value); 49 unsigned int addKeyName(std::string sectionName); 50 int findKey(std::string sectionName) const;
|
/external/swiftshader/src/System/ |
D | Configurator.hpp | 32 …std::string getValue(std::string sectionName, std::string valueName, std::string defaultValue = ""… 33 int getInteger(std::string sectionName, std::string valueName, int defaultValue = 0) const; 34 bool getBoolean(std::string sectionName, std::string valueName, bool defaultValue = false) const; 35 double getFloat(std::string sectionName, std::string valueName, double defaultValue = 0.0) const; 36 unsigned int getFormatted(std::string sectionName, std::string valueName, char *format, 42 void addValue(std::string sectionName, std::string valueName, std::string value); 49 unsigned int addKeyName(std::string sectionName); 50 int findKey(std::string sectionName) const;
|
/external/nist-pkits/ |
D | extract-pkits-tests.pl | 27 my $sectionName; 77 public void test${sectionName}_${testName}() throws Exception { 170 $sectionName = $1; 171 $sectionName =~ s/ //g; 172 $sectionName =~ s/-//g;
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowTrace.java | 45 protected static void beginSection(String sectionName) { in beginSection() argument 48 if (sectionName.length() > MAX_SECTION_NAME_LEN) { in beginSection() 51 } else if (sectionName == null) { in beginSection() 54 } else if (sectionName.length() > MAX_SECTION_NAME_LEN) { in beginSection() 60 currentSections.addFirst(sectionName); in beginSection()
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITCAPITest.cpp | 36 const char *sectionName) { in roundTripAllocateCodeSection() argument 39 size, alignment, sectionID, sectionName); in roundTripAllocateCodeSection() 45 const char *sectionName, in roundTripAllocateDataSection() argument 47 if (!strcmp(sectionName, "__compact_unwind")) in roundTripAllocateDataSection() 50 size, alignment, sectionID, sectionName, isReadOnly); in roundTripAllocateDataSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITCAPITest.cpp | 36 const char *sectionName) { in roundTripAllocateCodeSection() argument 39 size, alignment, sectionID, sectionName); in roundTripAllocateCodeSection() 45 const char *sectionName, in roundTripAllocateDataSection() argument 47 if (!strcmp(sectionName, "__compact_unwind")) in roundTripAllocateDataSection() 50 size, alignment, sectionID, sectionName, isReadOnly); in roundTripAllocateDataSection()
|
/external/deqp/modules/gles3/stress/ |
D | es3sOcclusionQueryTests.cpp | 158 …std::string sectionName ("Case iteration " + de::toString(m_iterNdx+1) + "/" + de::toString(N… in iterate() local 159 tcu::ScopedLogSection section (log, sectionName.c_str(), sectionName.c_str()); in iterate()
|
/external/deqp/external/openglcts/scripts/verify/ |
D | verify_es.py | 51 sectionName = None 55 sectionName = sectionItem.getAttributeNode('Name').nodeValue 56 if sectionName == "Configs":
|
/external/deqp/external/vulkancts/modules/vulkan/renderpass/ |
D | vktRenderPassMultisampleResolveTests.cpp | 1133 const std::string sectionName ("ResolveVerifyWithMask" + de::toString(m_sampleMask)); in verify() local 1134 const tcu::ScopedLogSection section (log, sectionName, sectionName); in verify() 1219 const std::string sectionName ("ResolveVerifyWithMask" + de::toString(m_sampleMask)); in verify() local 1220 const tcu::ScopedLogSection section (log, sectionName, sectionName); in verify() 1320 const std::string sectionName ("ResolveVerifyWithMask" + de::toString(m_sampleMask)); in verify() local 1321 const tcu::ScopedLogSection section (log, sectionName, sectionName); in verify()
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderHelperInvocationTests.cpp | 428 …const string sectionName = string("Iteration ") + de::toString(m_iterNdx+1) + " / " + de::toSt… in iterate() local 429 …LogSection section (m_testCtx.getLog(), (string("Iter") + de::toString(m_iterNdx)), sectionName); in iterate() 627 …const string sectionName = string("Iteration ") + de::toString(m_iterNdx+1) + " / " + de::toSt… in iterate() local 628 …LogSection section (m_testCtx.getLog(), (string("Iter") + de::toString(m_iterNdx)), sectionName); in iterate()
|
/external/deqp/modules/glshared/ |
D | glsTextureBufferCase.cpp | 978 …const char* const sectionName = (m_postRender != 0 ? "Primary render program" : "Render program"… in init() local 979 const tcu::ScopedLogSection section (log, sectionName, sectionName); in init() 997 …const char* const sectionName = (m_preRender!= 0 ? "Secondary render program" : "Render program"… in init() local 998 const tcu::ScopedLogSection section (log, sectionName, sectionName); in init()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | MachO.h | 144 StringRef sectionName(int32_t SegIndex, uint64_t SegOffset); 179 StringRef sectionName() const; 230 StringRef sectionName() const; 457 return BindRebaseSectionTable->sectionName(SegIndex, SegOffset); in BindRebaseSectionName()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 479 auto sectionName = getUniquedSectionName(*sHdr); in dumpGroup() local 480 if (!sectionName) in dumpGroup() 481 return errorToErrorCode(sectionName.takeError()); in dumpGroup() 482 s.sectionNameOrType = *sectionName; in dumpGroup()
|
/external/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 386 ErrorOr<StringRef> sectionName = Obj.getSectionName(*sHdr); in dumpGroup() local 387 if (std::error_code ec = sectionName.getError()) in dumpGroup() 389 s.sectionNameOrType = *sectionName; in dumpGroup()
|
/external/deqp/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryPipelineBarrierTests.cpp | 1885 const string sectionName (de::toString(commandIndex) + ":" + getName()); in verify() local 1886 const tcu::ScopedLogSection section (context.getLog(), sectionName, sectionName); in verify() 1894 const string sectionName (de::toString(commandIndex) + ":" + getName()); in logPrepare() local 1895 const tcu::ScopedLogSection section (log, sectionName, sectionName); in logPrepare() 1903 const string sectionName (de::toString(commandIndex) + ":" + getName()); in logExecute() local 1904 const tcu::ScopedLogSection section (log, sectionName, sectionName); in logExecute() 4284 const string sectionName (de::toString(commandIndex) + ":" + getName()); in logPrepare() local 4285 const tcu::ScopedLogSection section (log, sectionName, sectionName); in logPrepare() 4296 const string sectionName (de::toString(commandIndex) + ":" + getName()); in logSubmit() local 4297 const tcu::ScopedLogSection section (log, sectionName, sectionName); in logSubmit() [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonAsmPrinter.cpp | 211 std::string sectionName = sectionPrefix.str() + symbolName; in smallData() local 214 sectionName, ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in smallData()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonAsmPrinter.cpp | 209 std::string sectionName = sectionPrefix.str() + symbolName; in smallData() local 212 sectionName, ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in smallData()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
D | ELFYAML.h | 373 static void mapping(IO &IO, ELFYAML::SectionName §ionName); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | ELFYAML.cpp | 849 IO &IO, ELFYAML::SectionName §ionName) { in mapping() argument 850 IO.mapRequired("Section", sectionName.Section); in mapping()
|
/external/deqp/modules/gles3/functional/ |
D | es3fTransformFeedbackTests.cpp | 1050 std::string sectionName = std::string("Iteration") + de::toString(m_iterNdx+1); in iterate() local 1052 tcu::ScopedLogSection section (log, sectionName, sectionDesc); in iterate()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 3380 StringRef MachORebaseEntry::sectionName() const { in sectionName() function in MachORebaseEntry 3947 StringRef MachOBindEntry::sectionName() const { in sectionName() function in MachOBindEntry 4072 StringRef BindRebaseSegInfo::sectionName(int32_t SegIndex, in sectionName() function in BindRebaseSegInfo
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 9121 StringRef sectionName(uint32_t SegIndex, uint64_t SegOffset); 9200 StringRef SegInfo::sectionName(uint32_t SegIndex, uint64_t OffsetInSeg) { in sectionName() function in SegInfo 9218 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg); in printMachORebaseTable() 9263 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg); in printMachOBindTable() 9295 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg); in printMachOLazyBindTable() 9328 StringRef SectionName = sectionTable.sectionName(SegIndex, OffsetInSeg); in printMachOWeakBindTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 9858 StringRef SectionName = Entry.sectionName(); in printMachORebaseTable() 9902 StringRef SectionName = Entry.sectionName(); in printMachOBindTable() 9932 StringRef SectionName = Entry.sectionName(); in printMachOLazyBindTable() 9963 StringRef SectionName = Entry.sectionName(); in printMachOWeakBindTable()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 7574 … virtual void StartSection( std::string const& sectionName, std::string const& description ) = 0; 7575 virtual void EndSection( std::string const& sectionName, Counts const& assertions ) = 0; 7576 virtual void NoAssertionsInSection( std::string const& sectionName ) = 0;
|