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

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicode_file.py 69 # Normalize the unicode strings, as round-tripping the name via the OS
71 base = unicodedata.normalize("NFD", base)
72 file_list = [unicodedata.normalize("NFD", f) for f in file_list]
131 cwd_result = unicodedata.normalize("NFD", cwd_result)
132 name_result = unicodedata.normalize("NFD", name_result)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicode_file.py 69 # Normalize the unicode strings, as round-tripping the name via the OS
71 base = unicodedata.normalize("NFD", base)
72 file_list = [unicodedata.normalize("NFD", f) for f in file_list]
131 cwd_result = unicodedata.normalize("NFD", cwd_result)
132 name_result = unicodedata.normalize("NFD", name_result)
  /external/chromium_org/third_party/icu/source/common/
normlzr.cpp 121 Normalizer::normalize(const UnicodeString& source, function in class:Normalizer
144 normalize(source, *dest, status);
146 n2->normalize(source, *dest, status);
160 normalize(source, compat ? UNORM_NFKC : UNORM_NFC, options, result, status);
168 normalize(source, compat ? UNORM_NFKD : UNORM_NFD, options, result, status);
493 fNorm2->normalize(segment, buffer, errorCode);
515 fNorm2->normalize(segment, buffer, errorCode);
  /external/icu4c/common/
normlzr.cpp 120 Normalizer::normalize(const UnicodeString& source, function in class:Normalizer
143 normalize(source, *dest, status);
145 n2->normalize(source, *dest, status);
159 normalize(source, compat ? UNORM_NFKC : UNORM_NFC, options, result, status);
167 normalize(source, compat ? UNORM_NFKD : UNORM_NFD, options, result, status);
492 fNorm2->normalize(segment, buffer, errorCode);
514 fNorm2->normalize(segment, buffer, errorCode);
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleDayPickerFragment.java 136 long millisToMidnight = midnight.normalize(true) - currentMillis;
171 mSelectedDay.normalize(true);
173 mFirstDayOfMonth.normalize(true);
175 mFirstVisibleDay.normalize(true);
387 mSelectedDay.normalize(true);
400 long millis = mTempTime.normalize(true);
445 millis = mFirstDayOfMonth.normalize(true);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FilenameUtils.java 200 * @param filename the filename to normalize, null returns null
203 public static String normalize(String filename) { method in class:FilenameUtils
246 * @param filename the filename to normalize, null returns null
361 * The returned path is always normalized via {@link #normalize(String)},
399 return normalize(fullFilenameToAdd);
406 return normalize(fullFilenameToAdd);
410 return normalize(basePath + fullFilenameToAdd);
412 return normalize(basePath + '/' + fullFilenameToAdd);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 33 t.normalize(false /* use isDst */);
99 // Use normalize(true) with these tests to change the date by 1 day.
131 // Use normalize(false) with these tests.
186 // call normalize() to make sure that isDst is set
187 local.normalize(false /* use isDst */);
189 local.normalize(true /* ignore isDst */);
198 "day test index " + index + ", normalize(): expected local " + expectedTime
203 // call normalize() to make sure that isDst is set
204 local.normalize(false /* use isDst */);
226 // call normalize() to make sure that isDst is se
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 46 long timeMilliseconds = time.normalize(false);
58 assertEquals(timeMilliseconds, time.normalize(true));
104 time.normalize(false);
175 time.normalize(false);
245 // Use normalize(true) with these tests to change the date by 1 day.
277 // Use normalize(false) with these tests.
331 // call normalize() to make sure that isDst is set
332 local.normalize(false /* use isDst */);
334 local.normalize(true /* ignore isDst */);
343 "day test index " + index + ", normalize(): expected local " + expectedTim
    [all...]
  /art/test/092-locale/src/
Main.java 126 res = Normalizer.normalize(composed, Normalizer.Form.NFD);
132 res = Normalizer.normalize(decomposed, Normalizer.Form.NFC);
  /dalvik/tests/092-locale/src/
Main.java 126 res = Normalizer.normalize(composed, Normalizer.Form.NFD);
132 res = Normalizer.normalize(decomposed, Normalizer.Form.NFC);
  /external/chromium_org/third_party/icu/source/i18n/
astro.cpp 213 inline static double normalize(double value, double range) { function
218 * Normalize an angle so that it's in the range 0 - 2pi.
223 return normalize(angle, CalendarAstronomer::PI * 2.0);
227 * Normalize an angle into the range -PI - PI
230 return normalize(angle + CalendarAstronomer::PI, CalendarAstronomer::PI * 2.0) - CalendarAstronomer::PI;
384 double UT = normalize(fTime/(double)HOUR_MS, 24.);
386 siderealTime = normalize(getSiderealOffset() + UT*1.002737909, 24.);
396 siderealT0 = normalize(6.697374558 + 2400.051336*T + 0.000025862*T*T, 24);
407 return normalize(getGreenwichSidereal() + (fGmtOffset/(double)HOUR_MS), 24.);
421 double lt = normalize((lst - getSiderealOffset()) * 0.9972695663, 24)
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkEmbossMaskFilter.cpp 50 static void normalize(SkScalar v[3]) { function
61 normalize(fLight.fDirection);
  /external/icu4c/i18n/
astro.cpp 212 inline static double normalize(double value, double range) { function
217 * Normalize an angle so that it's in the range 0 - 2pi.
222 return normalize(angle, CalendarAstronomer::PI * 2.0);
226 * Normalize an angle into the range -PI - PI
229 return normalize(angle + CalendarAstronomer::PI, CalendarAstronomer::PI * 2.0) - CalendarAstronomer::PI;
383 double UT = normalize(fTime/(double)HOUR_MS, 24.);
385 siderealTime = normalize(getSiderealOffset() + UT*1.002737909, 24.);
395 siderealT0 = normalize(6.697374558 + 2400.051336*T + 0.000025862*T*T, 24);
406 return normalize(getGreenwichSidereal() + (fGmtOffset/(double)HOUR_MS), 24.);
420 double lt = normalize((lst - getSiderealOffset()) * 0.9972695663, 24)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestOctree.java 95 dl.setDirection(new Vector3f(-1, -1, -1).normalize());
100 dl2.setDirection(new Vector3f(1, -1, 1).normalize());
  /external/skia/src/effects/
SkEmbossMaskFilter.cpp 50 static void normalize(SkScalar v[3]) { function
61 normalize(fLight.fDirection);
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
AlgNameMapper.java 226 return ObjectIdentifier.isOID(normalize(alias));
235 public static String normalize(String oid) { method in class:AlgNameMapper
  /packages/apps/Calendar/tests/src/com/android/calendar/
WeekNumberTest.java 42 date.normalize(true /* ignore isDst */);
45 allDayDate.normalize(true /* ignore isDst */);
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioBus.h 145 void normalize();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TextRange.js 107 normalize: function()
  /external/eigen/bench/
quat_slerp.cpp 171 a.normalize();
173 b.normalize();
222 a.normalize();
224 b.normalize();
  /external/replicaisland/src/com/replica/replicaisland/
BackgroundCollisionComponent.java 131 * 4. Add the normals of the surfaces that were hit up and normalize the result to produce
192 mHorizontalHitNormal.normalize();
196 mHorizontalHitNormal.normalize();
204 mVerticalHitNormal.normalize();
208 mVerticalHitNormal.normalize();
311 mMergedNormal.normalize();
Vector2.java 100 public final float normalize() { method in class:Vector2
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 84 public Point normalize() { method in class:Point
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 450 * be used. If the parameter "normalize-characters" of the
453 * will also fully normalize the characters of the <code>Text</code>
456 * <code>CDATASections</code>, the normalize operation alone may not be
461 public void normalize(); method in interface:Node
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameNormalizer.java 77 public static String normalize(String name) { method in class:NameNormalizer

Completed in 1950 milliseconds

1 2 34 5 6 7 8 91011>>