Home
last modified time | relevance | path

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

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.beans/src/main/java/org/springframework/beans/factory/config/
H A DFieldRetrievingFactoryBean.java118 this.targetField = StringUtils.trimAllWhitespace(targetField); in setTargetField()
136 this.staticField = StringUtils.trimAllWhitespace(staticField); in setStaticField()
146 this.beanName = StringUtils.trimAllWhitespace(BeanFactoryUtils.originalBeanName(beanName)); in setBeanName()
H A DPropertyPathFactoryBean.java120 this.targetBeanName = StringUtils.trimAllWhitespace(targetBeanName); in setTargetBeanName()
129 this.propertyPath = StringUtils.trimAllWhitespace(propertyPath); in setPropertyPath()
151 this.beanName = StringUtils.trimAllWhitespace(BeanFactoryUtils.originalBeanName(beanName)); in setBeanName()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/test/java/org/springframework/util/
H A DStringUtilsTests.java71 assertEquals("", StringUtils.trimAllWhitespace("")); in testTrimAllWhitespace()
72 assertEquals("", StringUtils.trimAllWhitespace(" ")); in testTrimAllWhitespace()
73 assertEquals("", StringUtils.trimAllWhitespace("\t")); in testTrimAllWhitespace()
74 assertEquals("a", StringUtils.trimAllWhitespace(" a")); in testTrimAllWhitespace()
75 assertEquals("a", StringUtils.trimAllWhitespace("a ")); in testTrimAllWhitespace()
76 assertEquals("a", StringUtils.trimAllWhitespace(" a ")); in testTrimAllWhitespace()
77 assertEquals("ab", StringUtils.trimAllWhitespace(" a b ")); in testTrimAllWhitespace()
78 assertEquals("abc", StringUtils.trimAllWhitespace(" a b c ")); in testTrimAllWhitespace()
/dports/games/assaultcube/AssaultCube_v1.2.0.2/config/
H A Dparsestring.cfg59 // trimAllWhitespace - Returns a modified string after removing any whitespace characters from the …
60 const trimAllWhitespace [
H A Ddocs.cfg382 docident [trimAllWhitespace] [Removes all whitespace characters from the given string.];
384 docexample [echo (trimAllWhitespace " H e ll o w o r l d ")] [Outputs: Helloworld];
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/util/
H A DNumberUtils.java146 String trimmed = StringUtils.trimAllWhitespace(text); in parseNumber()
207 Number number = numberFormat.parse(StringUtils.trimAllWhitespace(text)); in parseNumber()
H A DStringUtils.java200 public static String trimAllWhitespace(String str) { in trimAllWhitespace() method in StringUtils
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/core/env/
H A DAbstractEnvironment.java233 setActiveProfiles(commaDelimitedListToStringArray(trimAllWhitespace(profiles))); in doGetActiveProfiles()
275 setDefaultProfiles(commaDelimitedListToStringArray(trimAllWhitespace(profiles))); in doGetDefaultProfiles()