Home
last modified time | relevance | path

Searched refs:trimmedValue (Results 1 – 25 of 78) sorted by relevance

1234

/dports/databases/pgfouine/pgfouine-1.2/include/
H A DPreparedStatementLogObject.class.php53 $trimmedValue = substr($bindParametersMatch[$i][2], 1, -1);
54 if(is_numeric($trimmedValue)) {
55 $value = $trimmedValue;
77 $trimmedValue = trim($value, "'");
78 if(is_numeric($trimmedValue)) {
79 $replace[$key] = $trimmedValue;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/
H A DCreateStepFilterDialog.java123 String trimmedValue = text.getText().trim(); in validateChange() local
125 if (trimmedValue.length()>0 && validateInput(trimmedValue)) { in validateChange()
136 private boolean isDuplicateFilter(String trimmedValue) { in isDuplicateFilter() argument
138 if (existingFilter.getName().equals(trimmedValue)) { in isDuplicateFilter()
152 private boolean validateInput(String trimmedValue) { in validateInput() argument
153 char firstChar= trimmedValue.charAt(0); in validateInput()
159 int length= trimmedValue.length(); in validateInput()
161 char c= trimmedValue.charAt(i); in validateInput()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libaddressinput/src/common/src/main/java/com/google/i18n/addressinput/common/
H A DFieldVerifier.java341 String trimmedValue = Util.trimToNull(value); in check() local
344 if (trimmedValue != null && !possiblyUsedFields.contains(field)) { in check()
349 if (required.contains(field) && trimmedValue == null) { in check()
357 if (trimmedValue == null) { in check()
360 problemFound = !isKnownInScript(script, trimmedValue); in check()
363 if (trimmedValue != null && format != null && !format.matcher(trimmedValue).matches()) { in check()
368 if (trimmedValue != null && match != null && !match.matcher(trimmedValue).lookingAt()) { in check()
387 String trimmedValue = Util.trimToNull(value); in isKnownInScript() local
388 Util.checkNotNull(trimmedValue); in isKnownInScript()
391 Util.toLowerCaseLocaleIndependent(trimmedValue))); in isKnownInScript()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libaddressinput/src/common/src/main/java/com/google/i18n/addressinput/common/
H A DFieldVerifier.java341 String trimmedValue = Util.trimToNull(value); in check() local
344 if (trimmedValue != null && !possiblyUsedFields.contains(field)) { in check()
349 if (required.contains(field) && trimmedValue == null) { in check()
357 if (trimmedValue == null) { in check()
360 problemFound = !isKnownInScript(script, trimmedValue); in check()
363 if (trimmedValue != null && format != null && !format.matcher(trimmedValue).matches()) { in check()
368 if (trimmedValue != null && match != null && !match.matcher(trimmedValue).lookingAt()) { in check()
387 String trimmedValue = Util.trimToNull(value); in isKnownInScript() local
388 Util.checkNotNull(trimmedValue); in isKnownInScript()
391 Util.toLowerCaseLocaleIndependent(trimmedValue))); in isKnownInScript()
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/apps/orangehrm/lib/form/validator/
H A DohrmDateValidator.php49 $trimmedValue = trim($value);
57 …$isDefaultValue = strcasecmp(str_replace('yyyy', 'yy', $trimmedValue), get_datepicker_date_format(…
59 if (($trimmedValue == '') || $isDefaultValue) {
69 … $result = $localizationService->convertPHPFormatDateToISOFormatDate($pattern, $trimmedValue);
/dports/www/thirtybees/thirtybees-1.1.0/modules/tbupdater/
H A Dfunctions.php255 $trimmedValue = trim((string) $xml);
256 if (strlen($trimmedValue) == 0) {
257 $trimmedValue = null;
260 if ($trimmedValue !== null) {
262 $return[$valueKey] = $trimmedValue;
264 $return = $trimmedValue;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/propertypages/
H A DExceptionFilterEditor.java341 String trimmedValue = fEditorText.getText().trim(); in validateChangeAndCleanup() local
343 if (trimmedValue.length() < 1) { in validateChangeAndCleanup()
347 else if (!validateEditorInput(trimmedValue)) { in validateChangeAndCleanup()
348 fInvalidEditorText = trimmedValue; in validateChangeAndCleanup()
355 if (filter.getName().equals(trimmedValue)) { in validateChangeAndCleanup()
361 fNewTableItem.setText(trimmedValue); in validateChangeAndCleanup()
362 fNewFilter.setName(trimmedValue); in validateChangeAndCleanup()
376 private boolean validateEditorInput(String trimmedValue) { in validateEditorInput() argument
377 char firstChar = trimmedValue.charAt(0); in validateEditorInput()
383 int length = trimmedValue.length(); in validateEditorInput()
[all …]
/dports/security/softhsm2/softhsm-2.6.1/src/lib/common/
H A DSimpleConfigLoader.cpp136 char* trimmedValue = trimString(value); in loadConfiguration() local
137 if (trimmedValue == NULL) in loadConfiguration()
146 std::string stringValue(trimmedValue); in loadConfiguration()
148 free(trimmedValue); in loadConfiguration()
/dports/textproc/pear-YAML/YAML-1.0.6/lib/
H A DsfYamlParser.php578 $trimmedValue = preg_replace('#^(\#.*?\n)+#s', '', $value, -1, $count);
582 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
583 $value = $trimmedValue;
587 $trimmedValue = preg_replace('#^\-\-\-.*?\n#s', '', $value, -1, $count);
591 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
592 $value = $trimmedValue;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/lexpress/doctrine1/lib/Doctrine/Parser/sfYaml/
H A DsfYamlParser.php600 $trimmedValue = preg_replace('#^(\#.*?\n)+#s', '', $value, -1, $count);
604 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
605 $value = $trimmedValue;
609 $trimmedValue = preg_replace('#^\-\-\-.*?\n#s', '', $value, -1, $count);
613 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
614 $value = $trimmedValue;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/symfony/lib/yaml/
H A DsfYamlParser.class.php603 $trimmedValue = preg_replace('#^(\#.*?\n)+#s', '', $value, -1, $count);
607 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
608 $value = $trimmedValue;
612 $trimmedValue = preg_replace('#^\-\-\-.*?\n#s', '', $value, -1, $count);
616 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
617 $value = $trimmedValue;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebParts/
H A DPersonalizationProviderHelper.cs60 string trimmedValue = StringUtil.CheckAndTrimString(paramValue, paramName); in CheckAndTrimStringWithoutCommas()
61 if (trimmedValue.IndexOf(',') != -1) { in CheckAndTrimStringWithoutCommas()
64 return trimmedValue; in CheckAndTrimStringWithoutCommas()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.beans/src/main/java/org/springframework/beans/
H A DTypeConverterDelegate.java218 String trimmedValue = ((String) convertedValue).trim(); in convertIfNecessary() local
219 if (requiredType.isEnum() && "".equals(trimmedValue)) { in convertIfNecessary()
223 convertedValue = attemptToConvertStringToEnum(requiredType, trimmedValue, convertedValue); in convertIfNecessary()
263 …private Object attemptToConvertStringToEnum(Class<?> requiredType, String trimmedValue, Object cur… in attemptToConvertStringToEnum() argument
268 int index = trimmedValue.lastIndexOf("."); in attemptToConvertStringToEnum()
270 String enumType = trimmedValue.substring(0, index); in attemptToConvertStringToEnum()
271 String fieldName = trimmedValue.substring(index + 1); in attemptToConvertStringToEnum()
296 Field enumField = requiredType.getField(trimmedValue); in attemptToConvertStringToEnum()
/dports/devel/php-libawl/awl-827fbfed7dab0ca339998ca6cdcffb328246d83b/vendor/symfony/yaml/Symfony/Component/Yaml/
H A DParser.php567 $trimmedValue = preg_replace('#^(\#.*?\n)+#s', '', $value, -1, $count);
570 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
571 $value = $trimmedValue;
575 $trimmedValue = preg_replace('#^\-\-\-.*?\n#s', '', $value, -1, $count);
578 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
579 $value = $trimmedValue;
/dports/textproc/pear-Symfony_Component_Yaml/Yaml-2.4.4/Symfony/Component/Yaml/
H A DParser.php575 $trimmedValue = preg_replace('#^(\#.*?\n)+#s', '', $value, -1, $count);
578 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
579 $value = $trimmedValue;
583 $trimmedValue = preg_replace('#^\-\-\-.*?\n#s', '', $value, -1, $count);
586 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
587 $value = $trimmedValue;
/dports/www/orangehrm/orangehrm-4.9/installer/environmentCheck/
H A DSystemValidator.php148 $trimmedValue = $matches[0];
150 … if (!(version_compare($trimmedValue, $min) >= 0 && version_compare($max, $trimmedValue) >= 0)) {
/dports/www/bolt/bolt-2.2.24/vendor/symfony/yaml/Symfony/Component/Yaml/
H A DParser.php635 $trimmedValue = preg_replace('#^(\#.*?\n)+#s', '', $value, -1, $count);
638 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
639 $value = $trimmedValue;
643 $trimmedValue = preg_replace('#^\-\-\-.*?\n#s', '', $value, -1, $count);
646 $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
647 $value = $trimmedValue;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/
H A DJUnitPreferencePage.java625 String trimmedValue= fEditorText.getText().trim(); in validateChangeAndCleanup() local
627 if (trimmedValue.length() < 1) in validateChangeAndCleanup()
631 else if (!validateEditorInput(trimmedValue)) { in validateChangeAndCleanup()
632 fInvalidEditorText= trimmedValue; in validateChangeAndCleanup()
641 if (filter.getName().equals(trimmedValue)) { in validateChangeAndCleanup()
647 fNewTableItem.setText(trimmedValue); in validateChangeAndCleanup()
648 fNewStackFilter.setName(trimmedValue); in validateChangeAndCleanup()
680 private boolean validateEditorInput(String trimmedValue) { in validateEditorInput() argument
681 char firstChar= trimmedValue.charAt(0); in validateEditorInput()
685 int length= trimmedValue.length(); in validateEditorInput()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Engine/
H A DToolsetReader.cs463 string trimmedValue = path.Trim(); in ExpandRelativePathsRelativeToExeLocation()
464 if (trimmedValue.Length > 0 && !Path.IsPathRooted(trimmedValue)) in ExpandRelativePathsRelativeToExeLocation()
467 Path.Combine(FileUtilities.CurrentExecutableDirectory, trimmedValue)); in ExpandRelativePathsRelativeToExeLocation()
/dports/security/vault/vault-1.8.2/vendor/go.opentelemetry.io/otel/propagation/
H A Dbaggage.go84 trimmedValue := strings.TrimSpace(value)
89 trimmedValueWithProps.WriteString(trimmedValue)
/dports/security/vuls/vuls-0.13.7/vendor/go.opentelemetry.io/otel/propagation/
H A Dbaggage.go84 trimmedValue := strings.TrimSpace(value)
89 trimmedValueWithProps.WriteString(trimmedValue)
/dports/security/go-cve-dictionary/go-cve-dictionary-0.5.5/vendor/go.opentelemetry.io/otel/propagation/
H A Dbaggage.go84 trimmedValue := strings.TrimSpace(value)
89 trimmedValueWithProps.WriteString(trimmedValue)
/dports/www/oauth2-proxy/oauth2-proxy-7.2.0/vendor/go.opentelemetry.io/otel/api/correlation/
H A Dcorrelation_context_propagator.go91 trimmedValue := strings.TrimSpace(value)
96 trimmedValueWithProps.WriteString(trimmedValue)
/dports/games/automuteus/automuteus-6.15.2/vendor/go.opentelemetry.io/otel/propagation/
H A Dbaggage.go84 trimmedValue := strings.TrimSpace(value)
89 trimmedValueWithProps.WriteString(trimmedValue)
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/go.opentelemetry.io/otel/propagation/
H A Dbaggage.go84 trimmedValue := strings.TrimSpace(value)
89 trimmedValueWithProps.WriteString(trimmedValue)

1234