Searched refs:decomposition (Results 1 - 14 of 14) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Dnormalizer2.h254 * Gets the decomposition mapping of c.
258 * if c does not have a decomposition mapping in this instance's data.
261 * @param decomposition String object which will be set to c's
262 * decomposition mapping, if there is one.
263 * @return TRUE if c has a decomposition, otherwise FALSE
267 getDecomposition(UChar32 c, UnicodeString &decomposition) const = 0;
270 * Gets the raw decomposition mapping of c.
273 * raw decomposition mapping as specified in UnicodeData.txt or
288 * @param decomposition String object which will be set to c's
289 * raw decomposition mappin
[all...]
H A Dunorm2.h63 * If a string is in this form, then further decomposition <i>without reordering</i>
333 * Gets the decomposition mapping of c.
337 * if c does not have a decomposition mapping in this instance's data.
341 * @param decomposition String buffer which will be set to c's
342 * decomposition mapping, if there is one.
343 * @param capacity number of UChars that can be written to decomposition
348 * @return the non-negative length of c's decomposition, if there is one; otherwise a negative value
353 UChar32 c, UChar *decomposition, int32_t capacity,
357 * Gets the raw decomposition mapping of c.
360 * raw decomposition mappin
[all...]
/external/chromium_org/third_party/gtk+/gtk/
H A Dcompose-parse.py846 (name, decomposition, combiningclass) = unicodedatabase[codepoint]
847 if decomposition[0] == '' or decomposition[0] == '0':
849 if match('<\w+>', decomposition[0]):
850 numdecomposition = map(stringtohex, decomposition[1:])
852 numdecomposition = map(stringtohex, decomposition)
878 decomposition = uniproperties[5]
879 unicodedatabase[codepoint] = [name, split('\s+', decomposition), combiningclass]
887 (name, decomposition, combiningclass) = unicodedatabase[item]
888 if decomposition[
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-bch.cc300 InductionVariableData::BitwiseDecompositionResult decomposition; local
301 InductionVariableData::DecomposeBitwise(check->index(), &decomposition);
302 if (!decomposition.base->IsPhi()) continue;
303 HPhi* phi = HPhi::cast(decomposition.base);
322 int32_t limit = data->ComputeUpperLimit(decomposition.and_mask,
323 decomposition.or_mask);
H A Dhydrogen-instructions.cc980 DecompositionResult decomposition;
981 bool index_is_decomposable = index()->TryDecompose(&decomposition);
983 ASSERT(decomposition.base() == base());
984 if (decomposition.offset() == offset() &&
985 decomposition.scale() == scale()) return;
992 HValue* current_index = decomposition.base();
993 int actual_offset = decomposition.offset() + offset();
994 int actual_scale = decomposition.scale() + scale();
2160 BitwiseDecompositionResult decomposition; local
2161 InductionVariableData::DecomposeBitwise(check->index(), &decomposition);
[all...]
H A Dhydrogen-instructions.h805 virtual bool TryDecompose(DecompositionResult* decomposition) { argument
807 return RedefinedOperand()->TryDecompose(decomposition);
4004 DecompositionResult decomposition; local
4005 if (index()->TryDecompose(&decomposition)) {
4006 base_ = decomposition.base();
4007 offset_ = decomposition.offset();
4008 scale_ = decomposition.scale();
4075 DecompositionResult decomposition; local
4076 if (check->index()->TryDecompose(&decomposition)) {
4077 SetOperandAt(0, decomposition
5140 left()->TryDecompose(decomposition); variable
5179 left()->TryDecompose(decomposition); variable
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dnormalizer2.h178 * Gets the decomposition mapping of c. Equivalent to normalize(UnicodeString(c))
182 * @param decomposition String object which will be set to c's
183 * decomposition mapping, if there is one.
184 * @return TRUE if c has a decomposition, otherwise FALSE
188 getDecomposition(UChar32 c, UnicodeString &decomposition) const = 0;
382 * Gets the decomposition mapping of c. Equivalent to normalize(UnicodeString(c))
386 * @param decomposition String object which will be set to c's
387 * decomposition mapping, if there is one.
388 * @return TRUE if c has a decomposition, otherwise FALSE
392 getDecomposition(UChar32 c, UnicodeString &decomposition) cons
[all...]
H A Dunorm2.h63 * If a string is in this form, then further decomposition <i>without reordering</i>
263 * Gets the decomposition mapping of c. Equivalent to unorm2_normalize(string(c))
268 * @param decomposition String buffer which will be set to c's
269 * decomposition mapping, if there is one.
270 * @param capacity number of UChars that can be written to decomposition
275 * @return the non-negative length of c's decomposition, if there is one; otherwise a negative value
280 UChar32 c, UChar *decomposition, int32_t capacity,
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderingContext.cpp275 AffineTransform::DecomposedType decomposition; local
276 transform.decompose(decomposition);
277 decomposition.angle = 0;
278 transform.recompose(decomposition);
/external/icu/icu4c/source/common/
H A Dfilterednormalizer2.cpp154 FilteredNormalizer2::getDecomposition(UChar32 c, UnicodeString &decomposition) const {
155 return set.contains(c) && norm2.getDecomposition(c, decomposition);
159 FilteredNormalizer2::getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
160 return set.contains(c) && norm2.getRawDecomposition(c, decomposition);
H A Dnormalizer2.cpp201 getDecomposition(UChar32 c, UnicodeString &decomposition) const {
209 decomposition.setTo(buffer, length); // copy the string (Jamos from Hangul syllable c)
211 decomposition.setTo(FALSE, d, length); // read-only alias
216 getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
224 decomposition.setTo(buffer, length); // copy the string (algorithmic decomposition)
226 decomposition.setTo(FALSE, d, length); // read-only alias
854 UChar32 c, UChar *decomposition, int32_t capacity,
859 if(decomposition==NULL ? capacity!=0 : capacity<0) {
863 UnicodeString destString(decomposition,
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dfilterednormalizer2.cpp152 FilteredNormalizer2::getDecomposition(UChar32 c, UnicodeString &decomposition) const {
153 return set.contains(c) && norm2.getDecomposition(c, decomposition);
H A Dnormalizer2.cpp168 getDecomposition(UChar32 c, UnicodeString &decomposition) const {
176 decomposition.setTo(buffer, length); // copy the string (Jamos from Hangul syllable c)
178 decomposition.setTo(FALSE, d, length); // read-only alias
743 UChar32 c, UChar *decomposition, int32_t capacity,
748 if(decomposition==NULL ? capacity!=0 : capacity<0) {
752 UnicodeString destString(decomposition, 0, capacity);
754 return destString.extract(decomposition, capacity, *pErrorCode);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 400 milliseconds