HomeSort by relevance Sort by last modified time
    Searched refs:normalized (Results 1 - 25 of 520) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
normalize_utf8.h 29 string normalized; local
40 normalized.append(utf8, len);
42 normalized.push_back('0' + digitValue);
45 return normalized;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 44 final Bitmap normalized = PhotoProcessor.getNormalizedBitmap(sourceBitmap, 50, false); local
47 assertEquals(10, normalized.getWidth());
48 assertEquals(10, normalized.getHeight());
51 assertEquals(Color.argb(255, 255, 255, 255), normalized.getPixel(0, 0));
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-icu.cc 189 UChar utf16[4], normalized[5]; local
202 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
205 if (u_countChar32 (normalized, len) == 1) {
206 U16_GET_UNSAFE (normalized, 0, *ab);
248 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
263 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
267 len = u_countChar32 (normalized, len);
270 U16_GET_UNSAFE (normalized, 0, *a)
318 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
    [all...]
hb-glib.cc 254 gchar *normalized; local
260 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFC);
261 len = g_utf8_strlen (normalized, -1);
266 *ab = g_utf8_get_char (normalized);
272 g_free (normalized);
291 gchar *normalized; local
296 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFD);
297 len = g_utf8_strlen (normalized, -1);
302 *a = g_utf8_get_char (normalized);
306 *a = g_utf8_get_char (normalized);
    [all...]
  /external/harfbuzz_ng/src/
hb-icu.cc 189 UChar utf16[4], normalized[5]; local
202 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
205 if (u_countChar32 (normalized, len) == 1) {
206 U16_GET_UNSAFE (normalized, 0, *ab);
248 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
263 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
267 len = u_countChar32 (normalized, len);
270 U16_GET_UNSAFE (normalized, 0, *a)
318 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
    [all...]
hb-glib.cc 254 gchar *normalized; local
260 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFC);
261 len = g_utf8_strlen (normalized, -1);
266 *ab = g_utf8_get_char (normalized);
272 g_free (normalized);
291 gchar *normalized; local
296 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFD);
297 len = g_utf8_strlen (normalized, -1);
302 *a = g_utf8_get_char (normalized);
306 *a = g_utf8_get_char (normalized);
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
copyvertex.h 25 template <typename T, size_t componentCount, bool normalized>
28 template <bool isSigned, bool normalized, bool toFloat>
  /external/eigen/test/
geo_quaternion.cpp 80 q1 = AngleAxisx(a, v0.normalized());
81 q2 = AngleAxisx(a, v1.normalized());
112 && (aa.axis() - v1.normalized()).norm() < 1.99
113 && (aa.axis() + v1.normalized()).norm() < 1.99)
119 VERIFY_IS_APPROX( v2.normalized(),(q2.setFromTwoVectors(v1, v2)*v1).normalized());
120 VERIFY_IS_APPROX( v1.normalized(),(q2.setFromTwoVectors(v1, v1)*v1).normalized());
121 VERIFY_IS_APPROX(-v1.normalized(),(q2.setFromTwoVectors(v1,-v1)*v1).normalized());
    [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
cld_unicodetext.cc 20 icu::UnicodeString normalized; local
22 icu::Normalizer::normalize(source, UNORM_NFC, 0, normalized, status);
25 normalized.toLower();
32 normalized.toUTF8(sink);
  /frameworks/rs/driver/
rsdVertexArray.cpp 50 normalized = false;
55 bool normalized, size_t offset,
61 this->normalized = normalized;
78 mAttribs[idx].normalized,
113 mAttribs[ct].normalized,
rsdVertexArray.h 41 bool normalized; member in class:RsdVertexArray::Attrib
46 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, size_t offset, const char *name);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionUtils.java 101 String normalized; local
107 normalized = DEFAULT_SCHEME + SCHEME_SEPARATOR + url;
110 normalized = url;
113 int end = normalized.length();
114 if (normalized.indexOf('/', start) == end - 1) {
117 return normalized.substring(0, end);
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SurrogatePairAwareTextIterator.cpp 47 if (UChar32 normalized = normalizeVoicingMarks()) {
48 character = normalized;
  /external/chromium_org/third_party/icu/source/i18n/
nortrans.cpp 113 * must not be normalized.
118 UnicodeString input, normalized;
124 fNorm2.normalize(input, normalized, status);
126 text.handleReplaceBetween(start, limit, normalized);
128 int32_t delta = normalized.length() - length;
136 UnicodeString normalized; local
154 fNorm2.normalize(segment, normalized, errorCode);
158 if(segment != normalized) {
159 // replace the input chunk with its normalized form
160 text.handleReplaceBetween(prev, start, normalized);
    [all...]
  /external/icu/icu4c/source/i18n/
nortrans.cpp 113 * must not be normalized.
118 UnicodeString input, normalized;
124 fNorm2.normalize(input, normalized, status);
126 text.handleReplaceBetween(start, limit, normalized);
128 int32_t delta = normalized.length() - length;
136 UnicodeString normalized; local
154 fNorm2.normalize(segment, normalized, errorCode);
158 if(segment != normalized) {
159 // replace the input chunk with its normalized form
160 text.handleReplaceBetween(prev, start, normalized);
    [all...]
  /external/chromium_org/chromeos/network/onc/
onc_normalizer.cc 39 scoped_ptr<base::DictionaryValue> normalized = local
42 if (normalized.get() == NULL)
46 normalized->RemoveWithoutPathExpansion(::onc::kRecommended, NULL);
49 NormalizeCertificate(normalized.get());
51 NormalizeEAP(normalized.get());
53 NormalizeEthernet(normalized.get());
55 NormalizeIPsec(normalized.get());
57 NormalizeNetworkConfiguration(normalized.get());
59 NormalizeOpenVPN(normalized.get());
61 NormalizeProxySettings(normalized.get())
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLVertexArray.cpp 19 GrGLboolean normalized,
32 array->fNormalized != normalized ||
40 normalized,
46 array->fNormalized = normalized;
  /external/eigen/unsupported/test/
alignedvector3.cpp 45 VERIFY_IS_APPROX(f2.normalized(),r2.normalized());
47 VERIFY_IS_APPROX((f2+f1).normalized(),(r2+r1).normalized());
  /external/skia/src/gpu/gl/
GrGLVertexArray.cpp 19 GrGLboolean normalized,
32 array->fNormalized != normalized ||
40 normalized,
46 array->fNormalized = normalized;
  /frameworks/compile/slang/
slang_rs_export_element.h 45 bool normalized; member in struct:slang::RSExportElement::__anon18672
slang_rs_export_element.cpp 37 bool normalized; member in struct:slang::DataElementInfo
61 EI->normalized = DataElementInfoTable[i].normalized;
96 EI->normalized);
111 EI->normalized);
  /sdk/emulator/opengl/host/libs/GLESv2_dec/
GL2Decoder.h 43 GLboolean normalized, GLsizei stride, void * data, GLuint datalen);
45 GLboolean normalized, GLsizei stride, GLuint offset);
  /external/chromium_org/chrome/common/extensions/docs/server2/
path_canonicalizer.py 13 normalized = file_name
15 normalized = posixpath.splitext(file_name)[0]
16 normalized = normalized.replace('.', '').replace('-', '').replace('_', '')
17 return normalized.lower()
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 178 float normalized = (float) local
180 done = normalized >= 1.0f;
181 normalized = Math.min(normalized, 1.0f);
182 mAlpha = (int) (mFrom + (mTo - mFrom) * normalized);
  /external/chromium_org/third_party/angle/src/libGLESv2/
VertexArray.cpp 77 bool normalized, bool pureInteger, GLsizei stride, const void *pointer)
83 mVertexAttributes[attributeIndex].normalized = normalized;

Completed in 812 milliseconds

1 2 3 4 5 6 7 8 91011>>