Searched defs:normalize (Results 26 - 50 of 213) sorted by relevance

123456789

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java56 public StringBuffer normalize(String source, StringBuffer target) { method in class:UnicodeNormalizer
75 public String normalize(String source) { method in class:UnicodeNormalizer
76 return normalize(source, new StringBuffer()).toString();
/external/python/cpython2/Lib/ctypes/test/
H A Dtest_pep3118.py12 def normalize(format): function
27 self.assertEqual(normalize(v.format), normalize(fmt))
/external/python/cpython2/Lib/test/
H A Dtest_pep277.py4 from unicodedata import normalize namespace
90 return normalize(self.normal_form, s)
125 # Skip the test on darwin, because darwin does normalize the filename to
127 # NFKD in Python is useless, because darwin will normalize it later and so
134 others |= set(normalize(nf, file) for file in files)
/external/python/cpython3/Lib/ctypes/test/
H A Dtest_pep3118.py12 def normalize(format): function
27 self.assertEqual(normalize(v.format), normalize(fmt))
/external/python/cpython3/Lib/test/
H A Dtest_unicode_file_functions.py7 from unicodedata import normalize namespace
81 return normalize(self.normal_form, s)
120 # Skip the test on darwin, because darwin does normalize the filename to
122 # NFKD in Python is useless, because darwin will normalize it later and so
129 others |= set(normalize(nf, file) for file in files)
/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java100 public final float normalize() { method in class:Vector2
/external/skia/src/core/
H A DSkGaussFilter.cpp22 static void normalize(int n, double* gauss) { function
102 normalize(n, gauss);
135 normalize(n, gauss);
/external/skia/src/gpu/
H A DGrCoordTransform.h60 void reset(const SkMatrix& m, GrTextureProxy* proxy, bool normalize) { argument
66 fNormalize = normalize;
114 bool normalize() const { return fNormalize; } function in class:GrCoordTransform
125 // The textures' effect is to optionally normalize the final matrix, so a blind
/external/skia/src/pathops/
H A DSkLineParameters.h25 // distance, it's necessary to either call normalize() after xxxEndPoints(), or
125 bool normalize() { function in class:SkLineParameters
/external/skqp/src/core/
H A DSkGaussFilter.cpp22 static void normalize(int n, double* gauss) { function
102 normalize(n, gauss);
135 normalize(n, gauss);
/external/skqp/src/effects/
H A DSkEmbossMaskFilter.cpp42 static void normalize(SkScalar v[3]) { function
53 normalize(fLight.fDirection);
/external/skqp/src/gpu/
H A DGrCoordTransform.h60 void reset(const SkMatrix& m, GrTextureProxy* proxy, bool normalize) { argument
66 fNormalize = normalize;
114 bool normalize() const { return fNormalize; } function in class:GrCoordTransform
125 // The textures' effect is to optionally normalize the final matrix, so a blind
/external/skqp/src/pathops/
H A DSkLineParameters.h25 // distance, it's necessary to either call normalize() after xxxEndPoints(), or
125 bool normalize() { function in class:SkLineParameters
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
H A DStatUtils.java637 * @param sample sample to normalize
641 public static double[] normalize(final double[] sample) { method in class:StatUtils
/external/deqp/framework/delibs/decpp/
H A DdeFilePath.cpp94 FilePath& FilePath::normalize (void) function in class:de::FilePath
120 throw std::runtime_error("Cannot normalize path: invalid path");
134 FilePath FilePath::normalize (const FilePath& path) function in class:de::FilePath
136 return FilePath(path).normalize();
173 FilePath normPath = FilePath::normalize(*this);
181 FilePath normPath = FilePath::normalize(*this);
226 DE_TEST_ASSERT(string(".") == FilePath(".//.").normalize().getPath());
227 DE_TEST_ASSERT(string(".") == FilePath(".").normalize().getPath());
228 DE_TEST_ASSERT((string("..") + FilePath::separator + "test") == FilePath("foo/../bar/../../test").normalize().getPath());
229 DE_TEST_ASSERT((FilePath::separator + "foo" + FilePath::separator + "foo.txt") == FilePath("/foo\\bar/..\\dir\\..\\foo.txt").normalize()
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DFCDIterCollationIterator.java282 // Fails FCD check. Find the next FCD boundary and normalize.
292 normalize(s);
372 // Fails FCD check. Find the previous FCD boundary and normalize.
384 normalize(s);
404 private void normalize(CharSequence s) { method in class:FCDIterCollationIterator
H A DFCDUTF16CollationIterator.java247 // we do not have to re-check and normalize when we turn around and go backwards.
256 * Extend the FCD text segment forward or normalize around pos.
278 // Fails FCD check. Find the next FCD boundary and normalize.
285 normalize(pos, q);
332 * Extend the FCD text segment backward or normalize around pos.
355 // Fails FCD check. Find the previous FCD boundary and normalize.
362 normalize(q, pos);
377 private void normalize(int from, int to) { method in class:FCDUTF16CollationIterator
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
H A DXMLRecordWriter.java131 public static String normalize(String str) { method in class:XMLRecordWriter
199 internalString(name, normalize(value));
207 String value = normalize(values[i]);
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DBaseLocale.java240 public static Key normalize(Key key) { method in class:BaseLocale.Key
262 return Key.normalize(key);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DFilteredNormalizer2.java46 public StringBuilder normalize(CharSequence src, StringBuilder dest) { method in class:FilteredNormalizer2
51 normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE);
58 public Appendable normalize(CharSequence src, Appendable dest) { method in class:FilteredNormalizer2
62 return normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE);
214 private Appendable normalize(CharSequence src, Appendable dest, method in class:FilteredNormalizer2
231 dest.append(norm2.normalize(src.subSequence(prevSpanLimit, spanLimit), tempDest));
250 return normalize(second, first);
280 normalize(rest, first, UnicodeSet.SpanCondition.NOT_CONTAINED);
H A DNormalizer2.java206 public String normalize(CharSequence src) { method in class:Normalizer2
219 return normalize(src, new StringBuilder(src.length())).toString();
230 public abstract StringBuilder normalize(CharSequence src, StringBuilder dest); method in class:Normalizer2
243 public abstract Appendable normalize(CharSequence src, Appendable dest); method in class:Normalizer2
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
H A DBaseLocale.java230 public static Key normalize(Key key) { method in class:BaseLocale.Key
251 return Key.normalize(key);
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DFCDIterCollationIterator.java280 // Fails FCD check. Find the next FCD boundary and normalize.
290 normalize(s);
370 // Fails FCD check. Find the previous FCD boundary and normalize.
382 normalize(s);
402 private void normalize(CharSequence s) { method in class:FCDIterCollationIterator
H A DFCDUTF16CollationIterator.java245 // we do not have to re-check and normalize when we turn around and go backwards.
254 * Extend the FCD text segment forward or normalize around pos.
276 // Fails FCD check. Find the next FCD boundary and normalize.
283 normalize(pos, q);
330 * Extend the FCD text segment backward or normalize around pos.
353 // Fails FCD check. Find the previous FCD boundary and normalize.
360 normalize(q, pos);
375 private void normalize(int from, int to) { method in class:FCDUTF16CollationIterator
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DXMLRecordWriter.java127 public static String normalize(String str) { method in class:XMLRecordWriter
195 internalString(name, normalize(value));
203 String value = normalize(values[i]);

Completed in 539 milliseconds

123456789