Home
last modified time | relevance | path

Searched refs:allChildren (Results 1 – 25 of 144) sorted by relevance

123456

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/
H A DContribution.java70 int[] allChildren = new int[2 + extensionPoints + extensions]; in mergeContribution() local
72 allChildren[EXTENSION_POINT] = extensionPoints; in mergeContribution()
73 System.arraycopy(existing, 2, allChildren, 2, existing[EXTENSION_POINT]); in mergeContribution()
74 …System.arraycopy(addition, 2, allChildren, 2 + existing[EXTENSION_POINT], addition[EXTENSION_POINT… in mergeContribution()
75 allChildren[EXTENSION] = extensions; in mergeContribution()
76 …System.arraycopy(existing, 2 + existing[EXTENSION_POINT], allChildren, 2 + extensionPoints, existi… in mergeContribution()
77 …System.arraycopy(addition, 2 + addition[EXTENSION_POINT], allChildren, 2 + extensionPoints + exist… in mergeContribution()
79 children = allChildren; in mergeContribution()
/dports/graphics/kphotoalbum/kphotoalbum-5.8.1/CategoryListView/
H A DCheckDropItem.cpp106 QString allChildren; in verifyDropWasIntended() local
108 allChildren = children[0]; in verifyDropWasIntended()
110 allChildren = i18n("\"%1\" and \"%2\"", children[0], children[1]); in verifyDropWasIntended()
114 allChildren += i18n("\"%1\"", children[i]); in verifyDropWasIntended()
116 allChildren += i18n(", \"%1\"", children[i]); in verifyDropWasIntended()
119 allChildren += i18n(" and \"%1\"", children[children.size() - 1]); in verifyDropWasIntended()
147 children.size(), allChildren, parent); in verifyDropWasIntended()
/dports/cad/opencascade/opencascade-7.6.0/src/IGESBasic/
H A DIGESBasic_SingleParent.cxx33 const Handle(IGESData_HArray1OfIGESEntity)& allChildren) in Init() argument
35 if (!allChildren.IsNull() && allChildren->Lower() != 1) in Init()
38 theChildren = allChildren; in Init()
/dports/multimedia/kdenlive/kdenlive-21.12.3/src/bin/
H A Dprojectfolder.cpp63 QList<std::shared_ptr<ProjectClip>> allChildren; in childClips() local
67 allChildren << std::static_pointer_cast<ProjectClip>(childItem); in childClips()
69 allChildren << std::static_pointer_cast<ProjectFolder>(childItem)->childClips(); in childClips()
72 return allChildren; in childClips()
77 QList<std::shared_ptr<ProjectClip>> allChildren; in childByHash() local
81 allChildren << std::static_pointer_cast<ProjectClip>(childItem); in childByHash()
83 allChildren << std::static_pointer_cast<ProjectFolder>(childItem)->childClips(); in childByHash()
86 for (auto &clip : allChildren) { in childByHash()
/dports/editors/ted/Ted-2.23/Ted/
H A DtedDeleteNode.c94 int allChildren= 0; in tedDocDeleteSelectedParagraphs() local
111 { allChildren= 1; } in tedDocDeleteSelectedParagraphs()
114 if ( allChildren ) in tedDocDeleteSelectedParagraphs()
128 { LDEB(allChildren); goto ready; } in tedDocDeleteSelectedParagraphs()
254 int allChildren= 0; in tedDocDeleteSelectedSections() local
280 { allChildren= 1; } in tedDocDeleteSelectedSections()
283 if ( allChildren ) in tedDocDeleteSelectedSections()
297 { LDEB(allChildren); goto ready; } in tedDocDeleteSelectedSections()
/dports/multimedia/musikcube/musikcube-0.96.7/src/musikwin/win32cpp/
H A DContainer.hpp232 WindowList& allChildren = Window::sAllChildWindows; in RemoveChild() local
234 allChildren.erase( in RemoveChild()
235 std::find(allChildren.begin(), allChildren.end(), window)); in RemoveChild()
H A DContainer.cpp71 WindowList& allChildren = Window::sAllChildWindows; in DestroyChildren() local
77 allChildren.erase( in DestroyChildren()
78 std::find(allChildren.begin(), allChildren.end(), *it)); in DestroyChildren()
/dports/archivers/lxqt-archiver/lxqt-archiver-0.5.0/src/
H A Darchiveritem.cpp81 std::vector<const ArchiverItem *> &ArchiverItem::allChildren() const { in allChildren() function in ArchiverItem
83 allChildren(results); in allChildren()
87 void ArchiverItem::allChildren(std::vector<const ArchiverItem*>& results) const { in allChildren() function in ArchiverItem
91 child->allChildren(results); in allChildren()
H A Darchiveritem.h47 std::vector<const ArchiverItem*>& allChildren() const;
49 void allChildren(std::vector<const ArchiverItem*>& results) const;
/dports/math/vampire/vampire-4.5.1/Indexing/
H A DSubstitutionTree_Nodes.cpp61 LDIterator allChildren() in allChildren() function in Indexing::SubstitutionTree::UListLeaf
107 LDIterator allChildren() in allChildren() function in Indexing::SubstitutionTree::SListLeaf
163 NodeIterator children=in->allChildren(); in destroyChildren()
226 res->loadChildren(orig->allChildren()); in assimilate()
241 res->loadChildren(orig->allChildren()); in assimilate()
H A DLiteralSubstitutionTree.cpp191 return l->allChildren(); in operator ()()
222 LDIterator ldit=static_cast<Leaf*>(root)->allChildren(); in getVariants()
240 LDIterator ldit=leaf->allChildren(); in getVariants()
301 LDIterator ldit=static_cast<Leaf*>(root)->allChildren(); in getResultIterator()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.metadata.repository/src_ant/org/eclipse/equinox/internal/p2/metadata/repository/ant/
H A DRemoveChildTask.java32 boolean allChildren; // should we remove all the children? field in RemoveChildTask
49 if (allChildren) in execute()
73 allChildren = Boolean.parseBoolean(value); in setAllChildren()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/resources/
H A DRemoteModule.java273 ICVSRemoteResource[] allChildren; in getMembers() local
276 allChildren = referencedModules; in getMembers()
279 allChildren = new ICVSRemoteResource[physicalChildren.length + referencedModules.length]; in getMembers()
280 System.arraycopy(physicalChildren, 0, allChildren, 0, physicalChildren.length); in getMembers()
281 …System.arraycopy(referencedModules, 0, allChildren, physicalChildren.length, referencedModules.len… in getMembers()
284 allChildren = physicalChildren; in getMembers()
286 allChildren = new ICVSRemoteResource[0]; in getMembers()
288 return allChildren; in getMembers()
/dports/java/javahelp/javahelp-3ca862d/jhMaster/JSearch/client/com/sun/java/help/search/
H A DSearchEnvironment.java59 private byte[] allChildren; field in SearchEnvironment
187 return new ConceptList(allChildren, offsets3.at(index)); in getChildIterator()
198 compr.initReading(allChildren, where + 1); in getChildren()
199 compr.ascDecode(allChildren[where], array); in getChildren()
288 allChildren = new byte[length]; in readChildrenData()
289 in.read(allChildren); in readChildrenData()
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/studio/
H A DMidiKeyMappingEditor.cpp184 QList<LineEdit *> allChildren = in blockAllSignals() local
188 for (it = allChildren.begin(); it != allChildren.end(); ++it) { in blockAllSignals()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/scxmleditor/plugin_interface/
H A Dconnectableitem.h83 void updateEditorInfo(bool allChildren = false) override; in QT_FORWARD_DECLARE_CLASS()
96 void updateTransitions(bool allChildren = false); in QT_FORWARD_DECLARE_CLASS()
97 void updateTransitionAttributes(bool allChildren = false); in QT_FORWARD_DECLARE_CLASS()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/plugins/s60/feedback/
H A DqtactileFeedback_s60.cpp70 QList<const QWidget *> allChildren = dialog->findChildren<const QWidget *>(); in touchFeedback() local
71 if (!allChildren.contains(w)) in touchFeedback()
/dports/www/moodle310/moodle/lib/phpunit/classes/
H A Dbase_testcase.php513 $allChildren = array();
523 $allChildren = array_merge($allChildren, $children, array($child));
526 return isset($allChildren) ? $allChildren : array();
/dports/www/moodle311/moodle/lib/phpunit/classes/
H A Dbase_testcase.php513 $allChildren = array();
523 $allChildren = array_merge($allChildren, $children, array($child));
526 return isset($allChildren) ? $allChildren : array();
/dports/www/moodle39/moodle/lib/phpunit/classes/
H A Dbase_testcase.php513 $allChildren = array();
523 $allChildren = array_merge($allChildren, $children, array($child));
526 return isset($allChildren) ? $allChildren : array();
/dports/math/scilab/scilab-6.1.1/scilab/modules/xcos/src/java/org/scilab/modules/xcos/io/sax/
H A DCustomHandler.java172 saxHandler.allChildren.push(new HashMap<>()); in startElement()
186 saxHandler.allChildren.pop(); in endElement()
195 saxHandler.allChildren.pop(); in endElement()
203 HashMap<String, Long> allLocalChildren = saxHandler.allChildren.peek(); in resolve()
H A DLinkHandler.java54 saxHandler.allChildren.peek().put(strUID, uid); in startElement()
84 Long src = saxHandler.allChildren.peek().get(v); in startElement()
105 Long dst = saxHandler.allChildren.peek().get(v); in startElement()
H A DPortHandler.java62 if (shared.allChildren.peek().containsKey(strUID)) { in startElement()
63 uid = shared.allChildren.peek().get(strUID); in startElement()
66 shared.allChildren.peek().put(strUID, uid); in startElement()
167 parent = shared.allChildren.peek().get(v); in startElement()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/model/ui/mapping/
H A DModelSyncContentProvider.java126 Set<Object> allChildren = new HashSet<>(); in getChildrenInContext() local
127 allChildren.addAll(Arrays.asList(super.getChildrenInContext(context, parent, children))); in getChildrenInContext()
138 allChildren.add(o); in getChildrenInContext()
150 allChildren.add(o); in getChildrenInContext()
154 return allChildren.toArray(new Object[allChildren.size()]); in getChildrenInContext()
/dports/games/cdogs-sdl/cdogs-sdl-1.0.1/src/cdogs/
H A Dmap_interior.c982 CArray allChildren; in AddPillars() local
983 memset(&allChildren, 0, sizeof allChildren); in AddPillars()
990 CArrayConcat(&allChildren, &furthestChildren); in AddPillars()
994 allChildren.data, allChildren.size, allChildren.elemSize, in AddPillars()
996 CArrayUnique(&allChildren, IntsEqual); in AddPillars()
999 if (allChildren.size == 0) in AddPillars()
1003 CArrayShuffle(&allChildren); in AddPillars()
1004 CA_FOREACH(const int, idx, allChildren) in AddPillars()
1017 CArrayTerminate(&allChildren); in AddPillars()

123456