Home
last modified time | relevance | path

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

12

/external/OpenCSD/decoder/tests/snapshot_parser_lib/source/
Dsnapshot_parser.cpp94 bool IsSectionHeader(const string& line, string& sectionName) in IsSectionHeader() argument
107 sectionName.assign(Trim(line.substr(textStart, closeBracket - textStart))); in IsSectionHeader()
346 auto_ptr<Section> NewSection( const string& sectionName, Parsed& result) in NewSection() argument
348 LogInfoStr( "Start of " + sectionName + " section\n"); in NewSection()
350 if (sectionName == GlobalSectionName) in NewSection()
354 if (sectionName.substr(0,DumpFileSectionLen) == DumpFileSectionPrefix) in NewSection()
358 else if (sectionName == ExtendedRegsSectionName) in NewSection()
362 else if (sectionName == SymbolicRegsSectionName) in NewSection()
366 else if (sectionName == DeviceSectionName) in NewSection()
372 LogInfoStr("Unknown section ignored: " + sectionName + "\n"); in NewSection()
[all …]
/external/swiftshader/src/System/
DConfigurator.cpp58 std::string sectionName; in readConfiguration() local
89 sectionName = trimSpaces(line.substr(pLeft + 1, pRight - pLeft - 1)); in readConfiguration()
90 if(!sectionName.length()) in readConfiguration()
107 sections[sectionName].keyValuePairs[key] = value; in readConfiguration()
134 for(const auto &[sectionName, section] : sections) in writeFile()
136 file << "[" << sectionName << "]" << std::endl; in writeFile()
147 std::optional<std::string> Configurator::getValueIfExists(const std::string &sectionName, const std… in getValueIfExists() argument
149 const auto section = sections.find(sectionName); in getValueIfExists()
164 std::string Configurator::getValue(const std::string &sectionName, const std::string &keyName, cons… in getValue() argument
166 const auto value = getValueIfExists(sectionName, keyName); in getValue()
[all …]
DConfigurator.hpp37 …int getInteger(const std::string &sectionName, const std::string &keyName, T defaultValue = 0) con…
38 …bool getBoolean(const std::string &sectionName, const std::string &keyName, bool defaultValue = fa…
39 …double getFloat(const std::string &sectionName, const std::string &keyName, double defaultValue = …
41 …std::string getValue(const std::string &sectionName, const std::string &keyName, const std::string…
42 …void addValue(const std::string &sectionName, const std::string &keyName, const std::string &value…
47 …std::optional<std::string> getValueIfExists(const std::string &sectionName, const std::string &key…
57 int Configurator::getInteger(const std::string &sectionName, const std::string &keyName, T defaultV… in getInteger() argument
61 auto strValue = getValueIfExists(sectionName, keyName); in getInteger()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTrace.java55 protected static void beginSection(String sectionName) { in beginSection() argument
59 if (!checkValidSectionName(sectionName)) { in beginSection()
62 currentSections.get().addFirst(sectionName); in beginSection()
80 protected static synchronized void beginAsyncSection(String sectionName, int cookie) { in beginAsyncSection() argument
84 if (!checkValidSectionName(sectionName)) { in beginAsyncSection()
88 AsyncTraceSection.newBuilder().setSectionName(sectionName).setCookie(cookie).build(); in beginAsyncSection()
101 protected static synchronized void endAsyncSection(String sectionName, int cookie) { in endAsyncSection() argument
106 AsyncTraceSection.newBuilder().setSectionName(sectionName).setCookie(cookie).build(); in endAsyncSection()
177 private static boolean checkValidSectionName(String sectionName) { in checkValidSectionName() argument
178 if (sectionName == null) { in checkValidSectionName()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
DTraceUtil.java33 public static void beginSection(String sectionName) { in beginSection() argument
35 beginSectionV18(sectionName); in beginSection()
51 private static void beginSectionV18(String sectionName) { in beginSectionV18() argument
52 android.os.Trace.beginSection(sectionName); in beginSectionV18()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/
DTraceUtil.java33 public static void beginSection(String sectionName) { in beginSection() argument
35 beginSectionV18(sectionName); in beginSection()
51 private static void beginSectionV18(String sectionName) { in beginSectionV18() argument
52 android.os.Trace.beginSection(sectionName); in beginSectionV18()
/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/oboe/src/common/
DTrace.cpp25 static void *(*ATrace_beginSection)(const char *sectionName);
29 typedef void *(*fp_ATrace_beginSection)(const char *sectionName);
/external/oboe/samples/debug-utils/
Dtrace.cpp25 static void *(*ATrace_beginSection)(const char *sectionName);
31 typedef void *(*fp_ATrace_beginSection)(const char *sectionName);
/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/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/dokka/core/src/main/kotlin/Model/
DContent.kt291 fun javadocSectionDisplayName(sectionName: String?): String? = in javadocSectionDisplayName()
292 when(sectionName) { in javadocSectionDisplayName()
295 else -> sectionName?.capitalize() in javadocSectionDisplayName()
/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/dokka/core/src/main/kotlin/Kotlin/
DDescriptorDocumentationParser.kt257 …eContent.addTagToSection(seeTag: KDocTag, descriptor: DeclarationDescriptor, sectionName: String) { in <lambda>()
260 val section = findSectionByTag(sectionName) ?: addSection(sectionName, null) in <lambda>()
/external/deqp/modules/glshared/
DglsTextureBufferCase.cpp982 …const char* const sectionName = (m_postRender != 0 ? "Primary render program" : "Render program"… in init() local
983 const tcu::ScopedLogSection section (log, sectionName, sectionName); in init()
1001 …const char* const sectionName = (m_preRender!= 0 ? "Secondary render program" : "Render program"… in init() local
1002 const tcu::ScopedLogSection section (log, sectionName, sectionName); in init()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DMachO.h141 StringRef sectionName(int32_t SegIndex, uint64_t SegOffset);
176 StringRef sectionName() const;
227 StringRef sectionName() const;
450 return BindRebaseSectionTable->sectionName(SegIndex, SegOffset); in BindRebaseSectionName()
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassMultisampleResolveTests.cpp1114 const std::string sectionName ("ResolveVerifyWithMask" + de::toString(m_sampleMask)); in verify() local
1115 const tcu::ScopedLogSection section (log, sectionName, sectionName); in verify()
1200 const std::string sectionName ("ResolveVerifyWithMask" + de::toString(m_sampleMask)); in verify() local
1201 const tcu::ScopedLogSection section (log, sectionName, sectionName); in verify()
1301 const std::string sectionName ("ResolveVerifyWithMask" + de::toString(m_sampleMask)); in verify() local
1302 const tcu::ScopedLogSection section (log, sectionName, sectionName); in verify()
2299 const std::string sectionName ("MaxAttachmentsVerify"); in verify() local
2300 const tcu::ScopedLogSection section (log, sectionName, sectionName); in verify()
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp389 ErrorOr<StringRef> sectionName = Obj.getSectionName(*sHdr); in dumpGroup() local
390 if (std::error_code ec = sectionName.getError()) in dumpGroup()
392 s.sectionNameOrType = *sectionName; in dumpGroup()
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryPipelineBarrierTests.cpp1892 const string sectionName (de::toString(commandIndex) + ":" + getName()); in verify() local
1893 const tcu::ScopedLogSection section (context.getLog(), sectionName, sectionName); in verify()
1901 const string sectionName (de::toString(commandIndex) + ":" + getName()); in logPrepare() local
1902 const tcu::ScopedLogSection section (log, sectionName, sectionName); in logPrepare()
1910 const string sectionName (de::toString(commandIndex) + ":" + getName()); in logExecute() local
1911 const tcu::ScopedLogSection section (log, sectionName, sectionName); in logExecute()
4292 const string sectionName (de::toString(commandIndex) + ":" + getName()); in logPrepare() local
4293 const tcu::ScopedLogSection section (log, sectionName, sectionName); in logPrepare()
4304 const string sectionName (de::toString(commandIndex) + ":" + getName()); in logSubmit() local
4305 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-10.0/llvm/lib/Target/Hexagon/
DHexagonAsmPrinter.cpp201 std::string sectionName = sectionPrefix.str() + symbolName; in smallData() local
204 sectionName, ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC); in smallData()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DELFYAML.h707 static void mapping(IO &IO, ELFYAML::SectionName &sectionName); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DELFYAML.cpp1153 IO &IO, ELFYAML::SectionName &sectionName) { in mapping() argument
1154 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()

12