HomeSort by relevance Sort by last modified time
    Searched defs:normalize (Results 76 - 100 of 801) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrnormalize.java 78 ((Element) /*Node */testNode).normalize(); method
hc_elementnormalize.java 31 * Append a couple of text nodes to the first sup element, normalize the
75 root.normalize();
hc_elementnormalize2.java 31 * Add an empty text node to an existing attribute node, normalize the containing element
76 element.normalize();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
normalize01.java 34 * The "normalize()" method puts all the nodes in the full
45 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize</a>
79 root.normalize();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
NormalizerTest.java 131 * @tests java.text.Normalizer#normalize(CharSequence, Form)
135 assertEquals("\u00c1", Normalizer.normalize(src, Form.NFC));
136 assertEquals("\u0041\u0301", Normalizer.normalize(src, Form.NFD));
137 assertEquals("\u00c1", Normalizer.normalize(src, Form.NFKC));
138 assertEquals("\u0041\u0301", Normalizer.normalize(src, Form.NFKD));
141 assertEquals("\u00c1", Normalizer.normalize(src, Form.NFC));
142 assertEquals("\u0041\u0301", Normalizer.normalize(src, Form.NFD));
143 assertEquals("\u00c1", Normalizer.normalize(src, Form.NFKC));
144 assertEquals("\u0041\u0301", Normalizer.normalize(src, Form.NFKD));
147 assertEquals("\ufb03", Normalizer.normalize(src, Form.NFC))
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNodeDocumentFragmentNormalize.java 11 * Create a document fragment with two adjacent text nodes, normalize and see if
62 docFragment.normalize();
78 docFragment.normalize();
Normalize.java 34 * The "normalize()" method puts all the nodes in the full
45 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize</a>
48 public final class Normalize extends DOMTestCase {
84 root.normalize();
  /libcore/ojluni/src/main/java/java/nio/file/
Path.java 149 * #normalize normalize} method, to eliminate redundant names, for cases where
333 Path normalize(); method in interface:Path
434 * <p> For any two {@link #normalize normalized} paths <i>p</i> and
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameNormalizer.java 77 public static String normalize(String name) { method in class:NameNormalizer
  /external/icu/android_icu4j/src/main/java/android/icu/text/
FilteredNormalizer2.java 46 public StringBuilder normalize(CharSequence src, StringBuilder dest) { method in class:FilteredNormalizer2
51 normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE); method
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); method
Normalizer2.java 206 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/main/classes/core/src/com/ibm/icu/text/
FilteredNormalizer2.java 47 public StringBuilder normalize(CharSequence src, StringBuilder dest) { method in class:FilteredNormalizer2
52 normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE); method
60 public Appendable normalize(CharSequence src, Appendable dest) { method in class:FilteredNormalizer2
64 return normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE);
228 private Appendable normalize(CharSequence src, Appendable dest, method in class:FilteredNormalizer2
245 dest.append(norm2.normalize(src.subSequence(prevSpanLimit, spanLimit), tempDest));
264 return normalize(second, first);
294 normalize(rest, first, UnicodeSet.SpanCondition.NOT_CONTAINED); method
Normalizer2.java 218 public String normalize(CharSequence src) { method in class:Normalizer2
231 return normalize(src, new StringBuilder(src.length())).toString();
243 public abstract StringBuilder normalize(CharSequence src, StringBuilder dest); method in class:Normalizer2
257 public abstract Appendable normalize(CharSequence src, Appendable dest); method in class:Normalizer2
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 152 * Normalize the text nodes within this subtree. Although named similarly,
153 * this method is unrelated to Document.normalize.
156 public final void normalize() { method in class:InnerNodeImpl
160 node.normalize();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
StatUtils.java 635 * Normalize (standardize) the series, so in the end it is having a mean of 0 and a standard deviation of 1.
637 * @param sample sample to normalize
641 public static double[] normalize(final double[] sample) { method in class:StatUtils
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
matrixop.c 68 static float normalize(float *ax, float *ay, float *az) function
90 float norm = normalize(&ax, &ay, &az);
  /external/deqp/framework/delibs/decpp/
deFilePath.cpp 94 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().getPath())
    [all...]
  /external/eigen/Eigen/src/Geometry/
Hyperplane.h 135 EIGEN_DEVICE_FUNC void normalize(void) function in class:Eigen::Hyperplane
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 62 //test deprecated normalize method
63 Normalizer.normalize(s,Normalizer.NFC,0);
UnicodeNormalizer.java 59 public StringBuffer normalize(String source, StringBuffer target) { method in class:UnicodeNormalizer
78 public String normalize(String source) { method in class:UnicodeNormalizer
79 return normalize(source, new StringBuffer()).toString();
  /external/icu/icu4c/source/common/
filterednormalizer2.cpp 36 FilteredNormalizer2::normalize(const UnicodeString &src, function in class:FilteredNormalizer2
49 return normalize(src, dest, USET_SPAN_SIMPLE, errorCode);
60 FilteredNormalizer2::normalize(const UnicodeString &src, function in class:FilteredNormalizer2
77 dest.append(norm2.normalize(src.tempSubStringBetween(prevSpanLimit, spanLimit),
166 return normalize(second, first, errorCode);
195 normalize(rest, first, USET_SPAN_NOT_CONTAINED, errorCode);
norm2allmodes.h 37 // normalize
39 normalize(const UnicodeString &src, function in class:Normalizer2WithImpl
55 normalize(sArray, sArray+src.length(), buffer, errorCode);
60 normalize(const UChar *src, const UChar *limit,
63 // normalize and append
196 normalize(const UChar *src, const UChar *limit, function in class:DecomposeNormalizer2
200 using Normalizer2WithImpl::normalize; // Avoid warning about hiding base class function.
228 normalize(const UChar *src, const UChar *limit,
232 using Normalizer2WithImpl::normalize; // Avoid warning about hiding base class function.
323 normalize(const UChar *src, const UChar *limit function in class:FCDNormalizer2
    [all...]
normlzr.cpp 128 Normalizer::normalize(const UnicodeString& source, function in class:Normalizer
151 normalize(source, *dest, status);
153 n2->normalize(source, *dest, status);
167 normalize(source, compat ? UNORM_NFKC : UNORM_NFC, options, result, status);
175 normalize(source, compat ? UNORM_NFKD : UNORM_NFD, options, result, status);
500 fNorm2->normalize(segment, buffer, errorCode);
522 fNorm2->normalize(segment, buffer, errorCode);
  /external/icu/icu4c/source/i18n/
utf8collationiterator.cpp 407 // Fails FCD check. Find the next FCD boundary and normalize.
417 if(!normalize(s, errorCode)) { return FALSE; }
487 // Fails FCD check. Find the previous FCD boundary and normalize.
499 if(!normalize(s, errorCode)) { return FALSE; }
520 FCDUTF8CollationIterator::normalize(const UnicodeString &s, UErrorCode &errorCode) { function in class:FCDUTF8CollationIterator
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
NormalizationTransliterator.java 94 * Normalize as short chunks at a time as possible even in
122 norm2.normalize(segment, normalized);
149 return norm2.normalize(source);

Completed in 619 milliseconds

1 2 34 5 6 7 8 91011>>