Searched defs:trim (Results 1 - 25 of 46) sorted by relevance

12

/external/libvpx/build/make/
H A Dads2gas_apple.pl33 # Perl trim function to remove whitespace from the start and end of the string
34 sub trim($) subroutine
117 $register_aliases{trim($1)} = trim($2);
166 $trimmed = trim($_);
/external/icu4c/common/
H A Dunistr_props.cpp26 UnicodeString::trim() function in class:UnicodeString
/external/okhttp/src/main/java/libcore/util/
H A DCollectionUtils.java33 * @param trim true to remove reference objects from the iterable after
37 final Iterable<? extends Reference<T>> iterable, final boolean trim) {
49 if (trim && next == null) {
36 dereferenceIterable( final Iterable<? extends Reference<T>> iterable, final boolean trim) argument
/external/v8/test/mjsunit/third_party/
H A Dstring-trim.js32 // Based on LayoutTests/fast/js/script-tests/string-trim.js
34 // References to trim(), trimLeft() and trimRight() functions for
37 var trim = String.prototype.trim; variable
73 assertEquals(whitespace[i].s.trim(), '');
83 assertEquals(wsString.trim(), '');
87 assertEquals(trimString.trim(), testString);
91 assertEquals(leftTrimString.trim(), testString);
95 assertEquals(rightTrimString.trim(), testString);
104 assertEquals(trim
[all...]
/external/icu4c/test/intltest/
H A Dtextfile.cpp112 UBool trim) {
123 if (trim) line.remove(0, pos);
111 readLineSkippingComments(UnicodeString& line, UErrorCode& ec, UBool trim) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs150 public static string trim( string str ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs145 public static string trim( this string str ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
/external/jpeg/
H A Dtransupp.h71 * The "trim" option causes untransformable partial iMCUs to be dropped;
75 * (For example, -rot 270 -trim trims only the bottom edge, but -rot 90 -trim
76 * followed by -rot 180 -trim trims both edges.)
89 boolean trim; /* if TRUE, trim partial MCUs as needed */ member in struct:__anon6603
/external/qemu/distrib/jpeg-6b/
H A Dtransupp.h71 * The "trim" option causes untransformable partial iMCUs to be dropped;
75 * (For example, -rot 270 -trim trims only the bottom edge, but -rot 90 -trim
76 * followed by -rot 180 -trim trims both edges.)
89 boolean trim; /* if TRUE, trim partial MCUs as needed */ member in struct:__anon10457
/external/doclava/src/com/google/doclava/
H A DSampleTagInfo.java79 boolean trim = "@sample".equals(name);
82 mIncluded = readFile(position, filename, id, trim, true, false);
84 mIncluded = loadInclude(position, filename, id, trim);
109 static String loadInclude(SourcePositionInfo pos, String filename, String id, boolean trim) { argument
141 boolean empty = "".equals(line.trim());
142 if (trim) {
198 static String readFile(SourcePositionInfo pos, String filename, String id, boolean trim, argument
213 if (trim) {
217 if (!"".equals(line.trim())) {
/external/icu4c/tools/genrb/
H A Dprscmnts.cpp59 trim(UChar *src, int32_t srcLen, UErrorCode *status){ function
68 srcLen = trim(source, srcLen, status);
130 return trim(*dest, destLen, status);
219 return trim(*dest, destLen, status);
229 return trim(*dest, destLen, status);
H A Dwrtxml.cpp358 trim(char **src, int32_t *len){ function
366 /* trim from the end */
401 trim(&buf,&bufLen);
/external/oprofile/libutil++/
H A Dstring_manip.cpp100 string trim(string const & str, string const & totrim) function
/external/webkit/Source/WebCore/xml/
H A DXMLViewer.js221 function trim(value) function
228 return trim(value).length <= 50;
300 text.textContent = trim(value);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLString.java61 * Conditionally trim all leading and trailing whitespace in the specified String.
659 * This method may be used to trim
665 public abstract XMLString trim(); method in interface:XMLString
H A DXMLStringDefault.java73 * Conditionally trim all leading and trailing whitespace in the specified String.
90 return new XMLStringDefault(m_str.trim());
770 * This method may be used to trim
776 public XMLString trim() method in class:XMLStringDefault
778 return new XMLStringDefault(m_str.trim());
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXString.java119 * trim() methods by default also takes care of these white space characters
120 * So trim() method is used to remove leading and trailing white spaces.
122 XMLString s = trim();
994 public XMLString trim() method in class:XString
996 return new XString(str().trim());
1012 * Conditionally trim all leading and trailing whitespace in the specified String.
H A DXStringForFSB.java823 public XMLString trim() method in class:XStringForFSB
841 * Conditionally trim all leading and trailing whitespace in the specified String.
/external/arduino/hardware/arduino/cores/arduino/
H A DWString.cpp401 String String::trim() const function in class:String
/external/emma/core/java12/com/vladium/emma/rt/
H A DInstrClassLoader.java325 void trim (final int baosCapacity, final int baosMaxCapacity) method in class:InstrClassLoader.PoolEntry
437 buf.trim (BAOS_INIT_SIZE, BAOS_MAX_SIZE);
/external/icu4c/i18n/
H A Ddigitlst.cpp177 // trim - remove trailing fraction zero digits.
179 DigitList::trim() { function in class:DigitList
859 trim(); // Remove trailing zeros.
869 trim();
/external/kernel-headers/original/linux/
H A Delevator.h51 void (*trim)(struct io_context *); member in struct:elevator_ops
/external/chromium/base/
H A Dstring_util_unittest.cc257 const bool trim; member in struct:base::collapse_case
284 EXPECT_EQ(value.output, CollapseWhitespace(value.input, value.trim));
290 const bool trim; member in struct:base::collapse_case_ascii
315 EXPECT_EQ(value.output, CollapseWhitespaceASCII(value.input, value.trim));
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DProfiler.java692 protected int[] trim(int[] X, int n) { method in class:Profiler
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2071 void ExprEngine::ViewGraph(bool trim) { argument
2073 if (trim) {

Completed in 1044 milliseconds

12