Home
last modified time | relevance | path

Searched refs:fullPattern (Results 1 – 25 of 39) sorted by relevance

12

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web/src/main/java/org/springframework/web/context/support/
H A DServletContextResourcePatternResolver.java86 String fullPattern = scResource.getPath() + subPattern; in doFindPathMatchingFileResources() local
88 doRetrieveMatchingServletContextResources(sc, fullPattern, scResource.getPath(), result); in doFindPathMatchingFileResources()
109 ServletContext servletContext, String fullPattern, String dir, Set<Resource> result) in doRetrieveMatchingServletContextResources() argument
114 boolean dirDepthNotFixed = fullPattern.contains("**"); in doRetrieveMatchingServletContextResources()
115 int jarFileSep = fullPattern.indexOf(ResourceUtils.JAR_URL_SEPARATOR); in doRetrieveMatchingServletContextResources()
118 …if (jarFileSep > 0 && jarFileSep + ResourceUtils.JAR_URL_SEPARATOR.length() < fullPattern.length()… in doRetrieveMatchingServletContextResources()
119 jarFilePath = fullPattern.substring(0, jarFileSep); in doRetrieveMatchingServletContextResources()
120 pathInJarFile = fullPattern.substring(jarFileSep + ResourceUtils.JAR_URL_SEPARATOR.length()); in doRetrieveMatchingServletContextResources()
133 StringUtils.countOccurrencesOf(fullPattern, "/"))) { in doRetrieveMatchingServletContextResources()
136 doRetrieveMatchingServletContextResources(servletContext, fullPattern, currPath, result); in doRetrieveMatchingServletContextResources()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.portlet/src/main/java/org/springframework/web/portlet/context/
H A DPortletContextResourcePatternResolver.java80 String fullPattern = pcResource.getPath() + subPattern; in doFindPathMatchingFileResources() local
82 doRetrieveMatchingPortletContextResources(pc, fullPattern, pcResource.getPath(), result); in doFindPathMatchingFileResources()
101 …PortletContext portletContext, String fullPattern, String dir, Set<Resource> result) throws IOExce… in doRetrieveMatchingPortletContextResources() argument
105 boolean dirDepthNotFixed = fullPattern.contains("**"); in doRetrieveMatchingPortletContextResources()
110 …StringUtils.countOccurrencesOf(currPath, "/") <= StringUtils.countOccurrencesOf(fullPattern, "/"))… in doRetrieveMatchingPortletContextResources()
111 doRetrieveMatchingPortletContextResources(portletContext, fullPattern, currPath, result); in doRetrieveMatchingPortletContextResources()
113 if (getPathMatcher().match(fullPattern, currPath)) { in doRetrieveMatchingPortletContextResources()
/dports/math/vtk8/VTK-8.2.0/IO/Core/
H A DvtkGlobFileNames.cxx98 std::string fullPattern = this->Pattern; in AddFileNames() local
103 vtksys::SystemTools::SplitPath(fullPattern, components); in AddFileNames()
108 fullPattern = vtksys::SystemTools::JoinPath(components); in AddFileNames()
112 if (!glob.FindFiles(fullPattern)) in AddFileNames()
115 fullPattern << "\""); in AddFileNames()
/dports/math/vtk9/VTK-9.1.0/IO/Core/
H A DvtkGlobFileNames.cxx95 std::string fullPattern = this->Pattern; in AddFileNames() local
100 vtksys::SystemTools::SplitPath(fullPattern, components); in AddFileNames()
105 fullPattern = vtksys::SystemTools::JoinPath(components); in AddFileNames()
109 if (!glob.FindFiles(fullPattern)) in AddFileNames()
111 vtkErrorMacro(<< "FindFileNames: Glob action failed for \"" << fullPattern << "\""); in AddFileNames()
/dports/math/vtk6/VTK-6.2.0/IO/Core/
H A DvtkGlobFileNames.cxx100 std::string fullPattern = this->Pattern; in AddFileNames() local
105 vtksys::SystemTools::SplitPath(fullPattern.c_str(), components); in AddFileNames()
110 fullPattern = vtksys::SystemTools::JoinPath(components); in AddFileNames()
114 if (!glob.FindFiles(fullPattern)) in AddFileNames()
117 fullPattern << "\""); in AddFileNames()
/dports/www/grafana8/grafana-8.3.6/pkg/tsdb/elasticsearch/client/
H A Dindex_pattern.go323 var fullPattern []string
329 fullPattern = append(fullPattern, bases[i], formattedDatePatterns[i])
331 fullPattern = append(fullPattern, formattedDatePatterns[i], bases[i])
337 fullPattern = append(fullPattern, formattedDatePatterns...)
339 fullPattern = append(fullPattern, bases...)
342 return strings.Join(fullPattern, "")
/dports/www/thundersnarf/thundersnarf/protected/yii114/framework/validators/
H A DCEmailValidator.php32 …public $fullPattern='/^[^@]*<[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}… variable in CEmailValidator
36 * @see fullPattern
85 …& (preg_match($this->pattern,$value) || $this->allowName && preg_match($this->fullPattern,$value));
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/core/io/support/
H A DPathMatchingResourcePatternResolver.java591 String fullPattern = StringUtils.replace(rootDir.getAbsolutePath(), File.separator, "/"); in retrieveMatchingFiles() local
593 fullPattern += "/"; in retrieveMatchingFiles()
595 fullPattern = fullPattern + StringUtils.replace(pattern, File.separator, "/"); in retrieveMatchingFiles()
597 doRetrieveMatchingFiles(fullPattern, rootDir, result); in retrieveMatchingFiles()
610 …protected void doRetrieveMatchingFiles(String fullPattern, File dir, Set<File> result) throws IOEx… in doRetrieveMatchingFiles() argument
613 "] for files matching pattern [" + fullPattern + "]"); in doRetrieveMatchingFiles()
624 if (content.isDirectory() && getPathMatcher().matchStart(fullPattern, currPath + "/")) { in doRetrieveMatchingFiles()
632 doRetrieveMatchingFiles(fullPattern, content, result); in doRetrieveMatchingFiles()
635 if (getPathMatcher().match(fullPattern, currPath)) { in doRetrieveMatchingFiles()
/dports/www/limesurvey/limesurvey/framework/validators/
H A DCEmailValidator.php30 …public $fullPattern='/^[^@]*<[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&\'*+\\/=?^_`{|}… variable in CEmailValidator
33 * @see fullPattern
103 …& (preg_match($this->pattern,$value) || $this->allowName && preg_match($this->fullPattern,$value));
143 $condition.=" && !value.match({$this->fullPattern})";
/dports/lang/php73/php-7.3.33/ext/pcre/tests/
H A Dbug72688.phpt10 $fullPattern = '/' . implode('|', $pattern) . '/uix';
12 preg_match($fullPattern, '290', $matches);
/dports/www/mod_php81/php-8.1.1/ext/pcre/tests/
H A Dbug72688.phpt10 $fullPattern = '/' . implode('|', $pattern) . '/uix';
12 preg_match($fullPattern, '290', $matches);
/dports/lang/php80/php-8.0.15/ext/pcre/tests/
H A Dbug72688.phpt10 $fullPattern = '/' . implode('|', $pattern) . '/uix';
12 preg_match($fullPattern, '290', $matches);
/dports/lang/php81/php-8.1.1/ext/pcre/tests/
H A Dbug72688.phpt10 $fullPattern = '/' . implode('|', $pattern) . '/uix';
12 preg_match($fullPattern, '290', $matches);
/dports/lang/php74/php-7.4.27/ext/pcre/tests/
H A Dbug72688.phpt10 $fullPattern = '/' . implode('|', $pattern) . '/uix';
12 preg_match($fullPattern, '290', $matches);
/dports/www/mod_php73/php-7.3.33/ext/pcre/tests/
H A Dbug72688.phpt10 $fullPattern = '/' . implode('|', $pattern) . '/uix';
12 preg_match($fullPattern, '290', $matches);
/dports/www/mod_php74/php-7.4.27/ext/pcre/tests/
H A Dbug72688.phpt10 $fullPattern = '/' . implode('|', $pattern) . '/uix';
12 preg_match($fullPattern, '290', $matches);
/dports/www/mod_php80/php-8.0.15/ext/pcre/tests/
H A Dbug72688.phpt10 $fullPattern = '/' . implode('|', $pattern) . '/uix';
12 preg_match($fullPattern, '290', $matches);
/dports/www/grafana8/grafana-8.3.6/pkg/api/routing/
H A Droute_register.go140 fullPattern := rr.prefix + pattern
143 h = append(h, fn(fullPattern))
150 if r.pattern == fullPattern && r.method == method {
157 pattern: fullPattern,
/dports/math/openturns/openturns-1.18/lib/src/Base/Common/
H A DPath.cxx360 …const String fullPattern(GetTemporaryDirectory() + String(Os::GetDirectorySeparator()) + prefix + … in BuildTemporaryFileName() local
361 char * temporaryFileName = strdup(fullPattern.c_str()); in BuildTemporaryFileName()
/dports/devel/qbs/qbs-src-1.21.0/src/lib/corelib/api/
H A Dproject.cpp404 QString fullPattern; in matchesWildcard() local
406 fullPattern = group->prefix; in matchesWildcard()
408 fullPattern = QFileInfo(group->location.filePath()).absolutePath() in matchesWildcard()
411 fullPattern.append(QLatin1Char('/')).append(pattern); in matchesWildcard()
412 fullPattern = QDir::cleanPath(fullPattern); in matchesWildcard()
413 …if (QRegularExpression(QRegularExpression::wildcardToRegularExpression(fullPattern)).match(filePat… in matchesWildcard()
/dports/www/firefox-legacy/firefox-52.8.0esr/intl/icu/source/i18n/
H A Ddtitvfmt.cpp595 UnicodeString fullPattern; in initializePattern() local
596 fDateFormat->toPattern(fullPattern); in initializePattern()
608 fullPattern, status); in initializePattern()
1346 UnicodeString fullPattern; // for saving the pattern in fDateFormat in fallbackFormat() local
1350 fDateFormat->toPattern(fullPattern); // save current pattern, restore later in fallbackFormat()
1385 fDateFormat->applyPattern(fullPattern); in fallbackFormat()
/dports/lang/spidermonkey60/firefox-60.9.0/intl/icu/source/i18n/
H A Ddtitvfmt.cpp595 UnicodeString fullPattern; in initializePattern() local
596 fDateFormat->toPattern(fullPattern); in initializePattern()
608 fullPattern, status); in initializePattern()
1346 UnicodeString fullPattern; // for saving the pattern in fDateFormat in fallbackFormat() local
1350 fDateFormat->toPattern(fullPattern); // save current pattern, restore later in fallbackFormat()
1385 fDateFormat->applyPattern(fullPattern); in fallbackFormat()
/dports/lang/spidermonkey78/firefox-78.9.0/intl/icu/source/i18n/
H A Ddtitvfmt.cpp718 UnicodeString fullPattern; in initializePattern() local
719 fDateFormat->toPattern(fullPattern); in initializePattern()
731 fullPattern, status); in initializePattern()
1483 UnicodeString fullPattern; // for saving the pattern in fDateFormat in fallbackFormat() local
1484 fDateFormat->toPattern(fullPattern); // save current pattern, restore later in fallbackFormat()
1508 fDateFormat->applyPattern(fullPattern); in fallbackFormat()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/icu/source/i18n/
H A Ddtitvfmt.cpp703 UnicodeString fullPattern; in initializePattern() local
704 fDateFormat->toPattern(fullPattern); in initializePattern()
716 fullPattern, status); in initializePattern()
1462 UnicodeString fullPattern; // for saving the pattern in fDateFormat in fallbackFormat() local
1463 fDateFormat->toPattern(fullPattern); // save current pattern, restore later in fallbackFormat()
1487 fDateFormat->applyPattern(fullPattern); in fallbackFormat()
/dports/www/node10/node-v10.24.1/deps/icu-small/source/i18n/
H A Ddtitvfmt.cpp703 UnicodeString fullPattern; in initializePattern() local
704 fDateFormat->toPattern(fullPattern); in initializePattern()
716 fullPattern, status); in initializePattern()
1462 UnicodeString fullPattern; // for saving the pattern in fDateFormat in fallbackFormat() local
1463 fDateFormat->toPattern(fullPattern); // save current pattern, restore later in fallbackFormat()
1487 fDateFormat->applyPattern(fullPattern); in fallbackFormat()

12