Home
last modified time | relevance | path

Searched refs:nameRegex (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DNode.java531 Class<T> spatialSubclass, String nameRegex) { in descendantMatches() argument
535 if (child.matches(spatialSubclass, nameRegex)) in descendantMatches()
539 spatialSubclass, nameRegex)); in descendantMatches()
559 public <T extends Spatial>List<T> descendantMatches(String nameRegex) { in descendantMatches() argument
560 return descendantMatches(null, nameRegex); in descendantMatches()
DSpatial.java1245 String nameRegex) { in matches() argument
1250 if (nameRegex != null && (name == null || !name.matches(nameRegex))) { in matches()