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

1234

/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dads2gas_apple.pl42 # Perl trim function to remove whitespace from the start and end of the string
43 sub trim($) subroutine
132 $register_aliases{trim($1)} = trim($2);
148 $function = trim($1);
192 $trimmed = trim($_);
/external/libvpx/libvpx/build/make/
H A Dads2gas_apple.pl42 # Perl trim function to remove whitespace from the start and end of the string
43 sub trim($) subroutine
132 $register_aliases{trim($1)} = trim($2);
148 $function = trim($1);
192 $trimmed = trim($_);
/external/nist-pkits/
H A Dextract-pkits-tests.pl47 sub trim($) { subroutine
200 if (trim($_) =~ /^[0-9]+$/) {
213 $pathEntry = trim($1);
216 $pathEntry = trim($1);
218 $pathEntry .= trim($_);
/external/chromium_org/third_party/icu/source/common/
H A Dunistr_props.cpp27 UnicodeString::trim() function in class:UnicodeString
/external/icu/icu4c/source/common/
H A Dunistr_props.cpp27 UnicodeString::trim() function in class:UnicodeString
/external/chromium_org/v8/test/webkit/
H A Dstring-trim.js24 description("This test checks String.trim(), String.trimLeft() and String.trimRight() methods.");
26 //references to trim(), trimLeft() and trimRight() functions for testing Function's *.call() and *.apply() methods
27 var trim = String.prototype.trim; variable
63 shouldBe("whitespace["+i+"].s.trim()", "''");
73 shouldBe("wsString.trim()", "''");
77 shouldBe("trimString.trim()", "testString");
81 shouldBe("leftTrimString.trim()", "testString");
85 shouldBe("rightTrimString.trim()", "testString");
91 shouldBe("trim
[all...]
H A Ddfg-to-string-toString-becomes-bad-with-dictionary-string-prototype.js28 delete String.prototype.trim;
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DWNafUtil.java41 naf = trim(naf, length);
103 wnaf = trim(wnaf, length);
159 jsf = trim(jsf, j);
247 wnaf = trim(wnaf, length);
373 private static byte[] trim(byte[] a, int length) method in class:WNafUtil
380 private static int[] trim(int[] a, int length) method in class:WNafUtil
/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:__anon22737
/external/pdfium/core/src/fxcodec/libjpeg/
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:__anon28772
/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:__anon29335
/external/chromium_org/third_party/icu/source/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);
/external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/
H A Dlightsymbols.cc83 trimed = trim(szLine);
103 trimed = trim(szLine);
151 const char* LightSymbol::trim(char* sz) { function in class:LightSymbol
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlbitlib.c24 /* macro to trim extra bits */
25 #define trim(x) ((x) & ALLONES) macro
41 return trim(r);
64 lua_pushunsigned(L, trim(r));
74 lua_pushunsigned(L, trim(r));
81 lua_pushunsigned(L, trim(r));
89 r = trim(r);
96 r = trim(r);
121 r = trim((r >> i) | ~(~(b_uint)0 >> i)); /* add signal bit */
131 r = trim(
[all...]
/external/doclava/src/com/google/doclava/
H A DSampleTagInfo.java79 boolean trim = "@sample".equals(name);
82 mIncluded = readFile(position, filename, id, trim, true, false, false);
84 mIncluded = loadInclude(position, filename, id, trim);
116 static String loadInclude(SourcePositionInfo pos, String filename, String id, boolean trim) { argument
148 boolean empty = "".equals(line.trim());
149 if (trim) {
205 static String readFile(SourcePositionInfo pos, String filename, String id, boolean trim, argument
225 if (trim) {
229 if (!"".equals(line.trim())) {
/external/icu/icu4c/source/i18n/
H A Ddigitlst.cpp183 // trim - remove trailing fraction zero digits.
185 DigitList::trim() { function in class:DigitList
916 trim(); // Remove trailing zeros.
926 trim();
/external/icu/icu4c/source/tools/genrb/
H A Dprscmnts.cpp69 trim(UChar *src, int32_t srcLen, UErrorCode *status){ function
78 srcLen = trim(source, srcLen, status);
140 return trim(*dest, destLen, status);
231 return trim(*dest, destLen, status);
241 return trim(*dest, destLen, status);
/external/oprofile/libutil++/
H A Dstring_manip.cpp100 string trim(string const & str, string const & totrim) function
/external/skia/experimental/LightSymbolsUtil/lightsymbols/
H A Dlightsymbols.cc83 trimed = trim(szLine);
103 trimed = trim(szLine);
151 const char* LightSymbol::trim(char* sz) { function in class:LightSymbol
/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());

Completed in 568 milliseconds

1234