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

1 2 3 4

  /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);
  /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;
  /external/deqp/framework/delibs/debase/
deInt32.c 132 deUint32 normalized = (deUint32)a << shift; /* Highest bit is always 1. */ local
133 int lookupNdx = (normalized >> (31 - RCP_LUT_BITS)) & ((1<<RCP_LUT_BITS)-1); /* Discard high bit, leave 8 next highest bits to lowest bits of normalized. */
145 tmp = deSafeMuluAsr32(result, normalized, 31);
149 tmp = deSafeMuluAsr32(result, normalized, 31);
  /external/icu/icu4c/source/i18n/
uitercollationiterator.h 29 * Handles normalized text inline, with length or NUL-terminated.
132 * The input text [start..limit[ failed the FCD check and was normalized.
133 * pos tracks the current index in the normalized string.
138 * The input text [start..limit[ failed the FCD check and was normalized.
139 * pos tracks the current index in the normalized string.
152 UnicodeString normalized; member in class:FCDUIterCollationIterator
utf16collationiterator.h 29 * Handles normalized UTF-16 text inline, with length or NUL-terminated.
166 // or the current segment had to be normalized so that
167 // [segmentStart..segmentLimit[ turned into the normalized string,
168 // corresponding to normalized.getBuffer()==start<=pos<=limit==start+normalized.length().
176 UnicodeString normalized; member in class:FCDUTF16CollationIterator
utf8collationiterator.h 28 * Handles normalized UTF-8 text inline, with length or NUL-terminated.
56 * Valid lead surrogates are returned from inside a normalized text segment,
153 * The input text [start..limit[ failed the FCD check and was normalized.
154 * pos tracks the current index in the normalized string.
165 UnicodeString normalized; member in class:FCDUTF8CollationIterator
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/third_party/angle/tests/angle_tests/
VertexAttributeTest.cpp 24 GLboolean normalized; member in struct:VertexAttributeTest::TestData
41 glVertexAttribPointer(mTestAttrib, i + 1, test.type, test.normalized, 0, test.inputData);
  /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/eigen/Eigen/src/Core/
Dot.h 139 MatrixBase<Derived>::normalized() const function in class:Eigen::MatrixBase
151 * \sa norm(), normalized()
  /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/WebKit/Source/platform/fonts/
Character.cpp 356 StringBuilder normalized; local
357 normalized.reserveCapacity(length);
360 normalized.append(Character::normalizeSpaces(characters[i]));
362 return normalized.toString();
  /external/chromium_org/third_party/angle/src/libGLESv2/
VertexAttribute.h 23 bool normalized; member in struct:gl::VertexAttribute
53 return static_cast<T>(attrib.normalized ? GL_TRUE : GL_FALSE);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
VertexBuffer.h 132 bool normalized; member in struct:rx::StaticVertexBufferInterface::VertexElement
  /external/chromium_org/third_party/harfbuzz-ng/src/
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...]
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...]
  /external/harfbuzz_ng/src/
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...]
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...]
  /external/chromium_org/cc/input/
page_scale_animation.cc 26 gfx::Vector2dF DenormalizeToViewport(const gfx::Vector2dF& normalized,
28 return gfx::ScaleVector2d(normalized,
119 gfx::Vector2dF normalized = NormalizeFromViewport( local
122 start_anchor_ - DenormalizeToViewport(normalized, TargetViewportSize());
126 // The anchor is the point which is at the same normalized relative position
128 // zoom-in double-tap to a perfectly centered rect will have normalized
130 // screen will have normalized anchor (1.0, 1.0). In other words, it obeys
132 // anchor = start_size * normalized + start_offset
133 // anchor = target_size * normalized + target_offset
134 // where both anchor and normalized begin as unknowns. Solvin
140 gfx::Vector2dF normalized = gfx::ScaleVector2d( local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLVertexArrayObjectOES.h 58 , normalized(false)
73 bool normalized; member in class:blink::FINAL::FINAL
  /external/chromium_org/third_party/mesa/src/src/glx/
indirect_vertex_array_priv.h 83 * "Normalized" data is on the range [0,1] (unsigned) or [-1,1] (signed).
86 GLboolean normalized; member in struct:array_state
  /external/jsoncpp/src/jsontestrunner/
main.cpp 30 std::string normalized = s.substr( 0, exponentStartIndex ); local
37 return normalized + exponent;
  /external/mesa3d/src/glx/
indirect_vertex_array_priv.h 83 * "Normalized" data is on the range [0,1] (unsigned) or [-1,1] (signed).
86 GLboolean normalized; member in struct:array_state
  /external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker.cc 143 bool normalized = base::NormalizeFilePath(temp_file, &normalized_temp_file); local
144 if (!normalized) {
154 return normalized;
301 LOG(ERROR) << "Could not get the normalized path of "
  /external/chromium_org/gpu/command_buffer/service/
vertex_attrib_manager.h 56 GLboolean normalized() const { function in class:gpu::gles2::VertexAttrib
112 GLboolean normalized,
197 GLboolean normalized,
210 buffer, size, type, normalized, gl_stride, real_stride, offset);

Completed in 1505 milliseconds

1 2 3 4