Home
last modified time | relevance | path

Searched refs:importSection (Results 1 – 8 of 8) sorted by relevance

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/components/itemlibrary/
H A Ditemlibrarymodel.cpp333 ItemLibraryImport *importSection = nullptr; in update() local
339 if (!importSection) { in update()
364 importSection = importHash[catName]; in update()
365 if (!importSection) { in update()
366 importSection = new ItemLibraryImport( in update()
368 m_importList.append(importSection); in update()
374 if (!importSection) { in update()
383 importSection->addCategory(categorySection); in update()
386 && !importSection->hasSingleCategory()) { in update()
451 if (!excludeList.contains(importSection->importUrl())) in updateUsedImports()
[all …]
H A Ditemlibrarywidget.cpp539 ItemLibraryImport *importSection = m_itemLibraryModel->importByUrl(importUrl); in removeImport() local
540 if (importSection) { in removeImport()
541 importSection->showAllCategories(); in removeImport()
542 m_model->changeImports({}, {importSection->importEntry()}); in removeImport()
/dports/devel/py-filebytes/filebytes-0.10.2/filebytes/
H A Dpe.py617 if not importSection:
621 … dataDirectoryEntry.Size).from_buffer(importSection.raw, to_offset(dataDirectoryEntry.VirtualAddre…
633 checkOffset(nameOffset, importSection)
634 dllName = get_str(importSection.raw, nameOffset)
684 def __parseThunks(self, thunkRVA, importSection): argument
686 offset = to_offset(thunkRVA, importSection)
695 …if to_offset(thunk.AddressOfData, importSection) > 0 and to_offset(thunk.AddressOfData, importSect…
696 self.__parseThunkData(thunkData, importSection)
701 def __parseThunkData(self, thunk,importSection): argument
709 checkOffset(offset+2, importSection)
[all …]
/dports/games/chessx/chessx-1.5.6/src/database/
H A Dspellchecker.cpp141 imported &= importSection(stream, "PLAYER", Player); in import()
142 imported &= importSection(stream, "SITE", Site); in import()
143 imported &= importSection(stream, "EVENT", Event); in import()
144 imported &= importSection(stream, "ROUND", Round); in import()
284 bool Spellchecker::importSection(QTextStream& stream, const QString& section, in importSection() function in Spellchecker
H A Dspellchecker.h101 bool importSection(QTextStream& stream, const QString& section,
/dports/lang/purescript/purescript-0.14.5/tests/Language/PureScript/Ide/
H A DImportsSpec.hs335 importShouldBe res importSection =
338 ++ (if null importSection then [] else "" : importSection)
/dports/lang/solidity/solidity_0.8.11/libyul/backends/wasm/
H A DBinaryTransform.h91 static bytes importSection(
H A DBinaryTransform.cpp297 ret += importSection(_module.imports, functionTypes); in run()
608 bytes BinaryTransform::importSection( in importSection() function in BinaryTransform