Home
last modified time | relevance | path

Searched refs:sectionName (Results 1 – 24 of 24) sorted by relevance

/external/swiftshader/src/Common/
DConfigurator.hpp32 …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/
DConfigurator.hpp32 …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/
Dextract-pkits-tests.pl27 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/
DShadowTrace.java45 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/
DMCJITCAPITest.cpp36 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/
DMCJITCAPITest.cpp36 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/
Des3sOcclusionQueryTests.cpp158 …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/
Dverify_es.py51 sectionName = None
55 sectionName = sectionItem.getAttributeNode('Name').nodeValue
56 if sectionName == "Configs":
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassMultisampleResolveTests.cpp1133 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/
Des31fShaderHelperInvocationTests.cpp428 …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/
DglsTextureBufferCase.cpp978 …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/
DMachO.h144 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/
Delf2yaml.cpp479 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/
Delf2yaml.cpp386 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/
DvktMemoryPipelineBarrierTests.cpp1885 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/
DHexagonAsmPrinter.cpp211 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/
DHexagonAsmPrinter.cpp209 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/
DELFYAML.h373 static void mapping(IO &IO, ELFYAML::SectionName &sectionName); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DELFYAML.cpp849 IO &IO, ELFYAML::SectionName &sectionName) { in mapping() argument
850 IO.mapRequired("Section", sectionName.Section); in mapping()
/external/deqp/modules/gles3/functional/
Des3fTransformFeedbackTests.cpp1050 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/
DMachOObjectFile.cpp3380 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/
DMachODump.cpp9121 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/
DMachODump.cpp9858 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/
Dcatch.hpp7574 … 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;