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

/external/chromium_org/third_party/icu/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/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.cc971 DecompositionResult decomposition;
972 bool index_is_decomposable = index()->TryDecompose(&decomposition);
974 DCHECK(decomposition.base() == base());
975 if (decomposition.offset() == offset() &&
976 decomposition.scale() == scale()) return;
983 HValue* current_index = decomposition.base();
984 int actual_offset = decomposition.offset() + offset();
985 int actual_scale = decomposition.scale() + scale();
2133 BitwiseDecompositionResult decomposition; local
2134 InductionVariableData::DecomposeBitwise(check->index(), &decomposition);
[all...]
H A Dhydrogen-instructions.h810 virtual bool TryDecompose(DecompositionResult* decomposition) { argument
812 return RedefinedOperand()->TryDecompose(decomposition);
4044 DecompositionResult decomposition; local
4045 if (index()->TryDecompose(&decomposition)) {
4046 base_ = decomposition.base();
4047 offset_ = decomposition.offset();
4048 scale_ = decomposition.scale();
4115 DecompositionResult decomposition; local
4116 if (check->index()->TryDecompose(&decomposition)) {
4117 SetOperandAt(0, decomposition
5174 left()->TryDecompose(decomposition); variable
5213 left()->TryDecompose(decomposition); variable
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderingContext.cpp270 AffineTransform::DecomposedType decomposition; local
271 transform.decompose(decomposition);
272 decomposition.angle = 0;
273 transform.recompose(decomposition);
/external/chromium_org/third_party/icu/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/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/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 545 milliseconds